mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
22 lines
506 B
SCSS
22 lines
506 B
SCSS
|
|
/* bootstrap thead.sticky-top has z-index 1020 and tomselect dropdowns often hide behind that */
|
|
.ts-dropdown {
|
|
z-index: 1021;
|
|
}
|
|
|
|
/* Tabler defines a min-width of 7rem, what makes many input fields become a two-line field
|
|
e.g. a 7 rem input does not fit behind a word like "Germany" in a 3 column form inside a modal */
|
|
.ts-control {
|
|
> input {
|
|
min-width: unset;
|
|
}
|
|
}
|
|
|
|
.ts-dropdown {
|
|
.optgroup {
|
|
[data-selectable].option {
|
|
padding-left: 20px;
|
|
}
|
|
}
|
|
}
|