-
Notifications
You must be signed in to change notification settings - Fork 46
/
subtotal.css
83 lines (72 loc) · 1.91 KB
/
subtotal.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
body {
font-family: Verdana;
}
/* AxisLabel */
table.pvtTable .pvtAxisLabel {
white-space: nowrap;
}
table.pvtTable .pvtAxisLabel.expanded {
white-space: nowrap;
cursor: zoom-out !important;
}
table.pvtTable .pvtAxisLabel.collapsed {
white-space: nowrap;
cursor: zoom-in !important;
}
/* RowLabel */
table.pvtTable tbody tr th.pvtRowLabel {
vertical-align: top !important;
white-space: nowrap !important;
background-color: white !important;
border-width: 0px 0px thin 0px !important;
}
table.pvtTable tbody tr th.pvtRowLabel.rowexpanded {
cursor: zoom-out !important;
}
table.pvtTable tbody tr th.pvtRowLabel.rowcollapsed {
cursor: zoom-in !important;
}
/* RowLabelFiller */
table.pvtTable .pvtRowLabelFiller {
background-color: white;
border-width: 0px 0px thin 0px !important;
}
/* RowSubtotal */
table.pvtTable .pvtRowSubtotal {
font-weight:bold;
}
table.pvtTable tr td.pvtRowSubtotal.rowcollapsed {
background-color: #EFEFEF !important;
}
/* ColLabel */
table.pvtTable thead tr th.pvtColLabel {
white-space: nowrap;
}
table.pvtTable thead tr th.pvtColLabel.colexpanded {
cursor: zoom-out !important;
}
table.pvtTable thead tr th.pvtColLabel.colcollapsed {
cursor: zoom-in !important;
}
/* ColLabelFiller */
table.pvtTable .pvtColLabelFiller {
background-color: #EFEFEF !important;
}
/* ColSubtotal */
table.pvtTable .pvtColSubtotal {
font-weight:bold;
}
table.pvtTable tr td.pvtColSubtotal {
background-color: #EFEFEF !important;
}
/*
*
* IMPORTANT: Please do not remove the lines below this point
*
*/
table.pvtTable tr .rowhide {
display: none;
}
table.pvtTable tr .colhide {
display: none;
}