summaryrefslogtreecommitdiffstats
path: root/sortable-base.scss
blob: ee059b58267f813831f41d8748b66a05e6ebe0b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
.sortable {
  th {
    cursor: pointer;

    &.no-sort {
      pointer-events: none;
    }
    &::after,
    &::before {
      transition: color 0.1s ease-in-out;
      font-size: 1.2em;
      color: transparent;
    }

    &::after {
      margin-left: 3px;
      content: '\025B8';
    }
    &:hover {
      &::after {
        color: inherit;
      }
    }

    &.dir-d {
      &::after {
        color: inherit;
        content: '\025BE';
      }
    }

    &.dir-u {
      &::after {
        color: inherit;
        content: '\025B4';
      }
    }
    &.indicator-left {
      &::after {
        content: '';
      }
      &::before {
        margin-right: 3px;
        content: '\025B8';
      }

      &:hover {
        &::before {
          color: inherit;
        }
      }

      &.dir-d {
        &::before {
          color: inherit;
          content: '\025BE';
        }
      }

      &.dir-u {
        &::before {
          color: inherit;
          content: '\025B4';
        }
      }
    }
  }
}