Hide sort of tables without id

This commit is contained in:
Dennis Eichhorn 2018-09-30 10:42:23 +02:00
parent 704a120a00
commit c96151e11c
2 changed files with 7 additions and 0 deletions

View File

@ -4729,6 +4729,9 @@ section > h2 {
/* Content box */
/* Navigation */
/* Colors */
table:not([id]) .sort-asc, table:not([id]) .sort-desc {
display: none; }
table .sort-asc, table .sort-desc {
padding-left: 5px;
cursor: pointer; }

View File

@ -1,5 +1,9 @@
@import "_mixins", "_vars";
table:not([id]) .sort-asc, table:not([id]) .sort-desc {
display: none;
}
table .sort-asc, table .sort-desc {
padding-left: 5px;
cursor: pointer;