summaryrefslogtreecommitdiff
path: root/http/res/tablesort.css
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-09-07 12:12:16 +0200
committeremkael <emkael@tlen.pl>2017-09-07 12:12:16 +0200
commit157d38e305f2144e546ec1e964292477cae9516d (patch)
tree8ccea8e785918952235ed4d4ced8df12af34fc8f /http/res/tablesort.css
parentb011fb2daa0f6b8591cbc495ec069b50ff337204 (diff)
Renaming HTTP resource directories to prefixed names
Diffstat (limited to 'http/res/tablesort.css')
-rw-r--r--http/res/tablesort.css33
1 files changed, 0 insertions, 33 deletions
diff --git a/http/res/tablesort.css b/http/res/tablesort.css
deleted file mode 100644
index 632d28d..0000000
--- a/http/res/tablesort.css
+++ /dev/null
@@ -1,33 +0,0 @@
-th[role=columnheader]:not(.no-sort) {
- cursor: pointer;
-}
-
-th[role=columnheader]:not(.no-sort):after {
- content: '';
- float: right;
- margin-top: 7px;
- border-width: 0 4px 4px;
- border-style: solid;
- border-color: #404040 transparent;
- visibility: hidden;
- opacity: 0;
- -ms-user-select: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- user-select: none;
-}
-
-th[aria-sort=ascending]:not(.no-sort):after {
- border-bottom: none;
- border-width: 4px 4px 0;
-}
-
-th[aria-sort]:not(.no-sort):after {
- visibility: visible;
- opacity: 0.4;
-}
-
-th[role=columnheader]:not(.no-sort):hover:after {
- visibility: visible;
- opacity: 1;
-}