Files
kimai2/assets/sass/forms.scss
Kevin Papst b831532323 Release 2.0.29 (#4178)
- show button title if delete is used in page actions
- fix invoice due date depends on invoice date, replace DateTime with DateTimeI… 
- lowercase all font names in PDFs, otherwise they fail loading
- hide empty fieldset (work-contract page)
- activate contract_other_profile by default for admin and super-admin
- deactivate rule to check "maximum duration of entries" by default
- allow to deactivate presets in DateRange Picker (for Devs)
2023-07-26 15:16:59 +02:00

42 lines
798 B
SCSS

/* bootstrap thead.sticky-top has z-index 1020 and the reporting form dropdowns hide behind that */
.checkbox-menu.show {
z-index: 1021;
}
/* make sure that at least xx:yy fits into the widget */
.duration-widget {
.input-group {
min-width: 110px;
}
input.duration-input {
min-width: 55px;
}
}
#report-form {
div.btn-list {
width: 100%;
div.selectpicker {
min-width: 200px;
max-width: 400px;
}
li.dropdown-item {
.form-check {
margin-bottom: 0;
}
}
}
}
.color-choice-item {
width: 20px;
height: 20px;
display: inline-block;
margin-right: 10px;
border-radius: var(--tblr-border-radius);
}
fieldset:empty {
display: none;
}