CSS fix for changes introduced in 1.10.24

Signed-off-by: darkexplosiveqwx <101737077+darkexplosiveqwx@users.noreply.github.com>
This commit is contained in:
darkexplosiveqwx 2025-11-22 10:24:30 +01:00
parent b52dca4507
commit fcf6432006
No known key found for this signature in database
GPG Key ID: FE3A99B5AEBFC276
3 changed files with 16 additions and 16 deletions

View File

@ -930,7 +930,7 @@ table.dataTable thead .sorting_desc_disabled::after {
text-align: center;
}
table.dataTable thead .sorting::after {
table.dataTable thead .sorting:not(.sorting_asc, .sorting_desc)::after {
opacity: 0.6;
}

View File

@ -397,18 +397,18 @@ td.highlight {
background-color: rgba(255, 204, 0, 0.333);
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::after,
table.dataTable thead .sorting_asc_disabled::after,
table.dataTable thead .sorting_desc_disabled::after {
opacity: 1;
width: 20px;
padding: 0 1px;
border-radius: 4px;
text-align: center;
}
table.dataTable thead .sorting:after {
table.dataTable thead .sorting:not(.sorting_asc, .sorting_desc)::after {
opacity: 0.6;
}
table.dataTable thead th:hover.sorting::after,

View File

@ -1361,7 +1361,7 @@ table.table-bordered.dataTable td {
border: 1px solid #111 !important;
}
table.dataTable thead .sorting::before {
table.dataTable thead .sorting:not(.sorting_asc, .sorting_desc)::before {
content: "\25B3";
position: absolute;
bottom: 16px;
@ -1372,15 +1372,15 @@ table.dataTable thead .sorting::before {
font-size: 0.6em;
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::after,
table.dataTable thead .sorting_asc_disabled::after,
table.dataTable thead .sorting_desc_disabled::after {
opacity: 0.6;
}
table.dataTable thead .sorting:after {
table.dataTable thead .sorting:not(.sorting_asc, .sorting_desc)::after {
opacity: 0.3;
content: "\25BD";
font-size: 0.6em;
@ -1394,8 +1394,8 @@ table.dataTable thead .sorting_desc::after {
content: "\25BC";
}
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
table.dataTable thead .sorting_asc_disabled::after,
table.dataTable thead .sorting_desc_disabled::after {
color: #eee;
}