UNPKG

915 BCSSView Raw
1
2.vis-itemset {
3 position: relative;
4 padding: 0;
5 margin: 0;
6
7 box-sizing: border-box;
8}
9
10.vis-itemset .vis-background,
11.vis-itemset .vis-foreground {
12 position: absolute;
13 width: 100%;
14 height: 100%;
15 overflow: visible;
16}
17
18.vis-axis {
19 position: absolute;
20 width: 100%;
21 height: 0;
22 left: 0;
23 z-index: 1;
24}
25
26.vis-foreground .vis-group {
27 position: relative;
28 box-sizing: border-box;
29 border-bottom: 1px solid #bfbfbf;
30}
31
32.vis-foreground .vis-group:last-child {
33 border-bottom: none;
34}
35
36.vis-nesting-group {
37 cursor: pointer;
38}
39
40.vis-nested-group {
41 background: #f5f5f5;
42}
43
44.vis-label.vis-nesting-group.expanded:before {
45 content: "\25BC";
46}
47
48.vis-label.vis-nesting-group.collapsed-rtl:before {
49 content: "\25C0";
50}
51
52.vis-label.vis-nesting-group.collapsed:before {
53 content: "\25B6";
54}
55
56.vis-overlay {
57 position: absolute;
58 top: 0;
59 left: 0;
60 width: 100%;
61 height: 100%;
62 z-index: 10;
63}
\No newline at end of file