-
Notifications
You must be signed in to change notification settings - Fork 6
/
datgui.css
107 lines (84 loc) · 1.79 KB
/
datgui.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
/*
* A custom white theme for dat.gui by @liabru
* http://brm.io/
* License: MIT
*/
body .dg .c,
body .dg .cr.function,
body .dg .c select,
body .dg .property-name,
body .dg .title {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body .dg.main.taller-than-window .close-button {
border-top: 1px solid #ddd;
}
body .dg.main .close-button {
background-color: #fff;
}
body .dg.main .close-button:hover {
background-color: #eee;
}
body .dg {
color: #555;
text-shadow: none !important;
}
body .dg.main::-webkit-scrollbar {
background: #fafafa;
}
body .dg.main::-webkit-scrollbar-thumb {
background: #bbb;
}
body .dg li:not(.folder) {
background: #fafafa;
border-bottom: 1px solid #ddd;
}
body .dg li.save-row .button {
text-shadow: none !important;
}
body .dg li.title {
background: #e8e8e8 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 10px no-repeat;
}
body .dg li.folder {
border-left: 0;
}
body .dg .cr.function:hover,
body .dg .cr.boolean:hover {
background: #fff;
}
body .dg .c input[type=text] {
background: #e9e9e9;
}
body .dg .c input[type=text]:hover {
background: #eee;
}
body .dg .c input[type=text]:focus {
background: #eee;
color: #555;
}
body .dg .c .slider {
background: #e9e9e9;
}
body .dg .c .slider:hover {
background: #eee;
}
body .dg.a {
margin-right: 9px;
margin-top: 9px;
}
body .dg .cr.function {
background: #eee;
}
body .dg .cr.function:hover {
background: #dadada;
border-bottom: 1px solid #2fa1d6;
}
body .dg .cr.function:active {
background: #ddd;
border-bottom: 1px solid #2fa1d6;
}