* prevent empty title for select options * removed css for unused sweetalert * fix isWeekend() check with DateTimeInterface * reset timesheet rates on "create copy" * wrap long names in multi-selects - fix #4001 * rename profile menus * show all possible links in user profile dropdown * check if plugin is compatible before displaying the buy link
24 lines
442 B
SCSS
24 lines
442 B
SCSS
@import "tom-select/dist/scss/tom-select.bootstrap5";
|
|
|
|
/* bootstrap thead.sticky-top has z-index 1020 and tomselect dropdowns often hide behind that */
|
|
.ts-dropdown {
|
|
z-index: 1021;
|
|
}
|
|
|
|
.ts-control {
|
|
> input {
|
|
min-width: unset;
|
|
}
|
|
}
|
|
|
|
.ts-dropdown {
|
|
.optgroup-header {
|
|
background-color: #eee;
|
|
color: #000;
|
|
font-weight: 600;
|
|
}
|
|
[data-selectable].option {
|
|
padding-left: 20px;
|
|
}
|
|
}
|