forked from NorthwoodsSoftware/GoJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataInspector.css
More file actions
53 lines (45 loc) · 1.05 KB
/
Copy pathDataInspector.css
File metadata and controls
53 lines (45 loc) · 1.05 KB
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
/*
Default CSS for the Data inspector
see also: DataInspector.js, DataInspector.html
*/
/*
Grey color palette
https://www.google.com/design/spec/style/color.html
/* #FAFAFA; /* Grey 50 */
/* #F5F5F5; /* Grey 100 */
/* #EEEEEE; /* Grey 200 */
/* #E0E0E0; /* Grey 300 */
/* #BDBDBD; /* Grey 400 */
/* #9E9E9E; /* Grey 500 */
/* #757575; /* Grey 600 */
/* #616161; /* Grey 700 */
/* #424242; /* Grey 800 */
/* #212121; /* Grey 900 */
.inspector {
display: inline-block;
font: bold 14px helvetica, sans-serif;
background-color: #212121; /* Grey 900 */
color: #F5F5F5; /* Grey 100 */
cursor: default;
}
.inspector table {
border-collapse: separate;
border-spacing: 2px;
}
.inspector td, th {
padding: 2px;
}
.inspector input {
background-color: #424242; /* Grey 800 */
color: #F5F5F5; /* Grey 100 */
font: bold 12px helvetica, sans-serif;
border: 0px;
padding: 2px;
}
.inspector input:disabled {
background-color: #BDBDBD; /* Grey 400 */
color: #616161; /* Grey 700 */
}
.inspector select {
background-color: #424242;
}