mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
* 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
38 lines
645 B
SCSS
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;
|
|
}
|