blob: 2955f7ecd33c6e71b71d5235504c49f8af7c1fc5 (
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
|
@mixin base-grid($primaryStyleName : v-grid) {
@include base-escalator($primaryStyleName);
.#{$primaryStyleName} {
th {
position: relative;
}
th.sort-asc:after {
content: "\25B2" attr(sort-order);
position: absolute;
right: 5px;
}
th.sort-desc:after {
content: "\25BC" attr(sort-order);
position: absolute;
right: 5px;
}
}
.#{$primaryStyleName}-row-selected > td {
background: lightblue;
}
}
|