From d77b7d0d97a4d698f801b92ce3b7ae5135908fdf Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 2 Feb 2023 16:19:36 +0100 Subject: Adding upstream version 1.6.0+20221231. Signed-off-by: Daniel Baumann --- sortable-base.css | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 sortable-base.css (limited to 'sortable-base.css') diff --git a/sortable-base.css b/sortable-base.css new file mode 100644 index 0000000..39d5078 --- /dev/null +++ b/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 -- cgit v1.2.3