Files
2026-04-28 17:06:08 +02:00

43 lines
994 B
CSS
Executable File

/* Verringert den Abstand in der Filter-Zelle */
.rt-filter-group {
padding: 2px 4px !important;
}
/* Macht die Eingabefelder selbst flacher */
.rt-filter-input {
height: 28px !important;
font-size: 14px !important;
}
/* 1. Den Abstand des Containers verringern */
.details-row .form-group {
margin-bottom: 2px !important;
}
/* 2. Die Geister-Labels (shiny-label-null) komplett ausblenden */
.details-row .shiny-label-null {
display: none !important;
}
/* 3. Den Abstand der Zeile selbst minimieren */
.details-row {
margin-top: 0px !important;
margin-bottom: 0px !important;
}
/* 4. Speziell für die Selectize-Felder (die sind oft höher) */
.details-row .selectize-control {
margin-bottom: 0px !important;
}
/* Positioniert das Dropdown-Menü über dem Eingabefeld statt darunter */
.details-row .selectize-dropdown {
top: auto !important;
bottom: 100% !important;
margin-bottom: 2px !important;
}