summaryrefslogtreecommitdiff
path: root/cimonitor-configs/sorting-table-css/sortable-base.css
diff options
context:
space:
mode:
Diffstat (limited to 'cimonitor-configs/sorting-table-css/sortable-base.css')
-rw-r--r--cimonitor-configs/sorting-table-css/sortable-base.css45
1 files changed, 45 insertions, 0 deletions
diff --git a/cimonitor-configs/sorting-table-css/sortable-base.css b/cimonitor-configs/sorting-table-css/sortable-base.css
new file mode 100644
index 00000000..39d50784
--- /dev/null
+++ b/cimonitor-configs/sorting-table-css/sortable-base.css
@@ -0,0 +1,45 @@
+@charset "UTF-8";
+.sortable th {
+ cursor: pointer;
+}
+.sortable th.no-sort {
+ pointer-events: none;
+}
+.sortable th::after, .sortable th::before {
+ transition: color 0.1s ease-in-out;
+ font-size: 1.2em;
+ color: transparent;
+}
+.sortable th::after {
+ margin-left: 3px;
+ content: "▸";
+}
+.sortable th:hover::after {
+ color: inherit;
+}
+.sortable th.dir-d::after {
+ color: inherit;
+ content: "▾";
+}
+.sortable th.dir-u::after {
+ color: inherit;
+ content: "▴";
+}
+.sortable th.indicator-left::after {
+ content: "";
+}
+.sortable th.indicator-left::before {
+ margin-right: 3px;
+ content: "▸";
+}
+.sortable th.indicator-left:hover::before {
+ color: inherit;
+}
+.sortable th.indicator-left.dir-d::before {
+ color: inherit;
+ content: "▾";
+}
+.sortable th.indicator-left.dir-u::before {
+ color: inherit;
+ content: "▴";
+}/*# sourceMappingURL=sortable-base.css.map */ \ No newline at end of file