-
Notifications
You must be signed in to change notification settings - Fork 0
/
nestedDataExplorer.css
142 lines (119 loc) · 2.75 KB
/
nestedDataExplorer.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300);
#nde-controls div.groupControl{
border:1px solid #999;
background: #ccc;
border-radius:0.2em;
padding:0.5em;
margin-bottom:0.5em;
}
#nde-controls div.groupControl>ul>li{
border:1px solid black;
background:white;
color:#999;
border-radius:0.2em;
padding:0.2em 0.5em;
margin-left:0.2em;
cursor:pointer;
}
#nde-controls div.groupControl>ul>li.active{
background:#a6bddb;
color:black;
}
#nde-controls .groupControl *{
display:inline-block;
}
#nde-table ul{
list-style: none;
}
#nde-table li>ul{
border-top:1px solid #ccc;
border-bottom:1px solid #ccc
}
#nde-table li.header-row>div{
background:#999;
color:white;
}
li.value-row .group-cell {
}
li.value-row:hover .group-cell {
font-weight: bold;
color: #2b8cbe;
}
li.value-row .group-cell .group-name {
display: inline-block;
letter-spacing: 1px;
text-align: left;
white-space: nowrap;
width: 0;
transition: width .8s ease;
}
li.value-row:hover .group-cell .group-name {
width: 100%;
text-align: right;
}
#nde-table ul.overall-row ul>li{
background: #eee;
border-top:1px solid #999;
border-bottom:1px solid #999;
}
#nde-table .group-cell{
width:300px;
white-space:nowrap;
overflow-x:hidden;
text-overflow: ellipsis;
}
#nde-table li.has-children>div.group-cell span.group-name, #nde-table .listing-click{
color:blue;
text-decoration: underline;
cursor:pointer;
}
#nde-table div.list-cell{
display:inline-block;
vertical-align:top;
margin-right:2px;
padding-bottom:1px;
padding-left:2px;
}
#nde-table div.value-cell *{
display:inline-block;
vertical-align:top;
}
#nde-table div.value-cell div.value{
width:50px;
text-align: center;
}
#nde-table div.value-cell div.sparkline rect.bar.highlight{
fill:#2b8cbe;
stroke:#2b8cbe;
}
#nde-table div.value-cell div.hover{
height:23px;
width:50px;
text-align: center;
}
#nde-table div.value-cell div.hover div.hover-date{
width:100%;
height:9px;
font-size:9px;
color: #999;
}
#nde-table div.value-cell div.hover div.hover-value{
width:100%;
height:14px;
font-size:14px;
color: #2b8cbe;
}
#nde-table .hidden, #nde-table circle.hidden, #nde-table div.hidden, #nde-details .hidden, #nde-controls .hidden{
display:none;
}
#nde-details div.closeDetails span{
border:1px solid black;
background:white;
color:black;
border-radius:0.2em;
padding:0.2em 0.5em;
cursor:pointer;
}
#nde-details div.closeDetails {
margin-bottom:1em;
}