forked from MoonStorm/trNgGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrNgGrid.css
61 lines (53 loc) · 1.31 KB
/
trNgGrid.css
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
.tr-ng-grid .tr-ng-grid-footer .pagination {
margin: 0;
}
.tr-ng-grid > thead > tr > th {
text-align:center;
vertical-align:top;
}
.tr-ng-grid > thead > tr > th,
.tr-ng-grid > tbody > tr > td,
.tr-ng-grid > thead > tr > th > .tr-ng-cell,
.tr-ng-grid > tbody > tr > td > .tr-ng-cell
{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tr-ng-grid > tbody > tr > td > .tr-ng-cell {
overflow: visible;
}
.tr-ng-grid .tr-ng-sort {
cursor: pointer;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
.tr-ng-grid .tr-ng-sort .tr-ng-sort-active, .tr-ng-grid .tr-ng-sort .tr-ng-sort-inactive {
position: absolute;
top: 1px;
right: 1px;
width: 0.8em;
height: 0.8em;
}
.tr-ng-grid .tr-ng-column-header .tr-ng-title {
padding-top: 0.8em;
position: relative;
}
.tr-ng-grid .tr-ng-column-header .tr-ng-column-filter {
margin-top: 0.5em;
margin-bottom: 0.1em;
}
/*Additional media blocks for IE*/
/* http://keithclark.co.uk/articles/moving-ie-specific-css-into-media-blocks/media-tests/ */
@media screen\0 {
.tr-ng-grid .tr-ng-sort {
background: transparent;
background: rgba(255, 255, 255, 0);
}
}