mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 20:59:28 +00:00
c353e854e8
- bugfix handle overflow in textfield of Notiz - bugfix delete: remove anrechnung_id also from lehre.tbl_anrechnung_anrechnungstatus - redesign Notizen of Anrechnungen: header with title Lehrveranstaltungen - add reload functionality to update count of notizen in action buttons
27 lines
445 B
CSS
27 lines
445 B
CSS
.notizTitle {
|
|
color: darkred;
|
|
}
|
|
.notizText {
|
|
color: darkblue;
|
|
}
|
|
|
|
/* Enforce content clipping in the scrollable section */
|
|
.tabulator .tabulator-tableHolder {
|
|
overflow-x: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.tabulator .tabulator-table {
|
|
overflow-x: hidden;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
.tabulator .tabulator-cell {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 100%;
|
|
}
|
|
|