forked from davidguttman/react-pivot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (106 loc) · 2.09 KB
/
style.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.reactPivot {
margin-top: 40px;
padding: 10px 20px 20px;
background: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.reactPivot-soloDisplay {
padding: 5px;
}
.reactPivot-clearSolo {
opacity: 0.5;
cursor: pointer;
font-size: 120%;
margin-right: 2px;
}
.reactPivot-clearSolo:hover {
font-weight: bold;
}
.reactPivot select {
color: #555;
height: 28px;
border: none;
margin-right: 5px;
margin-top: 5px;
background-color: #FFF;
border: 1px solid #CCC;
}
.reactPivot-results table {
width: 100%;
clear: both;
text-align: left;
border-spacing: 0;
}
.reactPivot-results th.asc:after,
.reactPivot-results th.desc:after {
font-size: 50%;
opacity: 0.5;
}
.reactPivot-results th.asc:after { content: ' ▲' }
.reactPivot-results th.desc:after { content: ' ▼' }
.reactPivot-results td {
border-top: 1px solid #ddd;
padding: 8px;
}
.reactPivot-results td.reactPivot-indent {
border: none;
}
.reactPivot-results tr:hover td {
background: #f5f5f5
}
.reactPivot-results tr:hover td.reactPivot-indent {
background: none;
}
.reactPivot-solo {opacity: 0}
.reactPivot-solo:hover {font-weight: bold}
td:hover .reactPivot-solo {opacity: 0.5}
.reactPivot-csvExport,
.reactPivot-columnControl {
float: right;
margin-left: 5px;
}
.reactPivot-csvExport button {
background-color: #FFF;
border: 1px solid #CCC;
height: 28px;
color: #555;
cursor: pointer;
padding: 0 10px;
border-radius: 4px;
margin-top: 5px;
}
.reactPivot-dimensions {
float: left;
padding: 10px 0;
text-align: left;
}
.reactPivot-hideColumn { opacity: 0 }
th:hover .reactPivot-hideColumn {
opacity: 0.5;
margin-right: 4px;
margin-bottom: 2px;
}
.reactPivot-hideColumn:hover {
font-weight: bold;
cursor: pointer;
}
.reactPivot-pageNumber {
padding: 2px;
margin: 4px;
cursor: pointer;
color: gray;
font-size: 14px;
}
.reactPivot-pageNumber:hover {
font-weight: bold;
border-bottom: black solid 1px;
color: black;
}
.reactPivot-pageNumber.is-selected {
font-weight: bold;
border-bottom: black solid 1px;
color: black;
}
.reactPivot-paginate {
margin-top: 24px;
}