misc/theme-advanced: Fix issues with tables and navigation subtitle (#4621)

o fix tables issue with action buttons
o change subtitle in navigation
This commit is contained in:
Jaka Prašnikar
2025-03-27 15:06:08 +01:00
committed by GitHub
parent d2619d5377
commit e1786e0771
2 changed files with 28 additions and 11 deletions
@@ -149,10 +149,6 @@ body {
touch-action: manipulation;
}
.widget-sort-handle {
touch-action: none;
}
.page-head {
position: fixed;
z-index: map-get($zindex, header);
@@ -198,7 +194,7 @@ body {
font-size: 12px;
font-weight: 400;
display: inline-block;
content: "AdvancedOPN Theme";
content: "Advanced Theme";
color: #fafafa;
}
@@ -1090,11 +1086,6 @@ select {
appearance: none;
}
#grid-log th[data-column-id="__timestamp__"],
#filter-log-entries th[data-column-id="__timestamp__"] {
min-width: 3.5em;
}
.table-responsive {
@media screen and (max-width: $screen-xs-max) {
margin-bottom: 0;
@@ -1268,3 +1259,29 @@ div[data-for*="help_for"] {
margin-bottom: -4px;
}
}
/**
* HACKS
*/
.widget-sort-handle {
touch-action: none;
}
.bootgrid-table {
table-layout: auto !important;
}
table#tunable.bootgrid-table td {
white-space: normal !important;
}
@media (min-width: $screen-lg-desktop) {
table#grid-leases tr td:nth-child(3) {
width: 15% !important;
}
}
#grid-log th[data-column-id="__timestamp__"],
#filter-log-entries th[data-column-id="__timestamp__"] {
min-width: 3.5em;
}
File diff suppressed because one or more lines are too long