n8n/packages/design-system/src/css/time-select.scss
कारतोफ्फेलस्क्रिप्ट™ 13659d036f
ci: Ensure that eslint runs on all frontend code (no-changelog) (#4602)
* ensure that eslint runs on all frontend code

* remove tslint from `design-system`

* enable prettier and eslint-prettier for `design-system`

* Delete tslint.json

* use a single editorconfig for the repo

* enable prettier for all code in `design-system`

* more linting fixes on design-system

* ignore coverage for git and prettier

* lintfix on editor-ui
2022-11-15 18:20:54 +01:00

38 lines
645 B
SCSS

@use './common/var';
@use './date-picker/picker.scss';
@use './date-picker/date-picker.scss';
@use './scrollbar.scss';
@use './popper';
.time-select {
margin: 5px 0;
min-width: 0;
}
.time-select .el-picker-panel__content {
max-height: 200px;
margin: 0;
}
.time-select-item {
padding: 8px 10px;
font-size: 14px;
line-height: 20px;
}
.time-select-item.selected:not(.disabled) {
color: var(--color-primary);
font-weight: bold;
}
.time-select-item.disabled {
color: var.$datepicker-border-color;
cursor: not-allowed;
}
.time-select-item:hover {
background-color: var.$background-color-base;
font-weight: bold;
cursor: pointer;
}