Skip to content

Commit 52c3254

Browse files
author
Marius Burkard
committed
Merge branch 'task/arrows' into 'develop'
Redo sorting arrows See merge request ispconfig/ispconfig3!1556
2 parents c6a19de + d5510c3 commit 52c3254

File tree

1 file changed

+15
-19
lines changed

1 file changed

+15
-19
lines changed

interface/web/themes/default/assets/stylesheets/ispconfig.css

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -340,34 +340,30 @@ thead.dark th.tiny-col {
340340
text-overflow: ellipsis; }
341341

342342
thead.dark th[data-column] {
343-
cursor: pointer;
343+
cursor: pointer;
344+
position: relative;
345+
}
346+
347+
thead.dark th[data-column]:before {
348+
content: "⇅";
349+
position: absolute;
350+
right: 15px;
351+
vertical-align: middle;
352+
line-height: inherit;
353+
color: #aaa;
344354
}
345355

346356
thead.dark th[data-column][data-ordered] {
347-
font-weight: bold;
348-
position: relative;
357+
background: linear-gradient(to top, #57646d, #3e474e);
349358
}
350359

351360
thead.dark th[data-column][data-ordered]:before {
352-
content: "";
353-
display: block;
354-
position: absolute;
355-
right: 5px;
356-
top: 16px;
357-
width: 0;
358-
height: 0;
359-
vertical-align: middle;
360-
border-bottom: 5px solid #fff;
361-
border-top: 5px solid transparent;
362-
border-right: 5px solid transparent;
363-
border-left: 6px solid transparent;
364-
line-height: inherit;
361+
color: #fff;
362+
content: "🡫";
365363
}
366364

367365
thead.dark th[data-column][data-ordered="desc"]:before {
368-
top: 21px;
369-
border-bottom: 5px solid transparent;
370-
border-top: 5px solid #fff;
366+
content: "🡩";
371367
}
372368

373369
thead.dark td input,

0 commit comments

Comments
 (0)