]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/sortable/sortable-theme-minimal.css
LP#1516867 Make HTML report tables sortable
[working/Evergreen.git] / Open-ILS / web / js / sortable / sortable-theme-minimal.css
1 /* line 2, ../sass/_sortable.sass */
2 table[data-sortable] {
3   border-collapse: collapse;
4   border-spacing: 0;
5 }
6 /* line 6, ../sass/_sortable.sass */
7 table[data-sortable] th {
8   vertical-align: bottom;
9   font-weight: bold;
10 }
11 /* line 10, ../sass/_sortable.sass */
12 table[data-sortable] th, table[data-sortable] td {
13   text-align: left;
14   padding: 10px;
15 }
16 /* line 14, ../sass/_sortable.sass */
17 table[data-sortable] th:not([data-sortable="false"]) {
18   -webkit-user-select: none;
19   -moz-user-select: none;
20   -ms-user-select: none;
21   -o-user-select: none;
22   user-select: none;
23   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
24   -webkit-touch-callout: none;
25   cursor: pointer;
26 }
27 /* line 26, ../sass/_sortable.sass */
28 table[data-sortable] th:after {
29   content: "";
30   visibility: hidden;
31   display: inline-block;
32   vertical-align: inherit;
33   height: 0;
34   width: 0;
35   border-width: 5px;
36   border-style: solid;
37   border-color: transparent;
38   margin-right: 1px;
39   margin-left: 10px;
40   float: right;
41 }
42 /* line 40, ../sass/_sortable.sass */
43 table[data-sortable] th[data-sorted="true"]:after {
44   visibility: visible;
45 }
46 /* line 43, ../sass/_sortable.sass */
47 table[data-sortable] th[data-sorted-direction="descending"]:after {
48   border-top-color: inherit;
49   margin-top: 8px;
50 }
51 /* line 47, ../sass/_sortable.sass */
52 table[data-sortable] th[data-sorted-direction="ascending"]:after {
53   border-bottom-color: inherit;
54   margin-top: 3px;
55 }