UNPKG

4.24 kBCSSView Raw
1
2progress[value]::-webkit-progress-bar {
3 background-color: #eee;
4 border-radius: 2px;
5 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
6}
7
8.disabled {
9 opacity: 0.3;
10 user-select: none;
11 cursor: default;
12}
13
14.button-success,
15.button-error,
16.button-warning,
17.button-secondary {
18 color: white;
19 border-radius: 4px;
20 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
21}
22.button-success {
23 background: rgb(28, 184, 65); /* this is a green */
24}
25.button-error {
26 background: rgb(202, 60, 60); /* this is a maroon */
27}
28.button-warning {
29 background: rgb(223, 117, 20); /* this is an orange */
30}
31.button-secondary {
32 background: rgb(66, 184, 221); /* this is a light blue */
33}
34
35.dev-btn {
36 position: fixed;
37 position: absolute;
38 top: 0px;
39 right: 5px;
40 margin-right: 5px;
41 color: #aaa;
42 cursor: pointer;
43 font-size: 20px;
44}
45
46.dev-btn:hover {
47 color: #333;
48}
49
50.dev-menu-main {
51 position: fixed;
52 background-color: #fff;
53 color: #666;
54 font-size: 14px;
55 z-index: 9999;
56 padding-top: 30px;
57 box-sizing: border-box;
58}
59
60.dev-menu-position-right {
61 top: 0px;
62 right: 0px;
63 border-left: thin solid #000;
64 height: 100%;
65}
66
67.dev-menu-position-bottom {
68 border-top: thin solid #000;
69 width: 100%;
70 height: 200px;
71 bottom: 0px;
72}
73
74.dev-menu-hide {
75 display: none;
76}
77
78.dev-menu-main h2 {
79 font-size: 1.2em;
80 color: #333;
81 margin: .2em 0;
82}
83
84.dev-control {
85 position: absolute;
86 width: 100%;
87 font-size: 14px;
88 top: 0px;
89 border-bottom: thin solid #000;
90 background-color: #fff;
91}
92
93.dev-control .pure-menu-link {
94 padding: 0px .7em;
95}
96
97.dev-control .pure-menu-selected {
98 background-color: #eee;
99}
100
101.dev-control-action {
102 font-size: 18px;
103 position: absolute;
104 right: 10px;
105 top: -2px;
106}
107
108.dev-control-action a {
109 color: #aaa;
110}
111
112.dev-control-action a:hover {
113 color: #333;
114}
115
116.dev-close-btn:hover {
117 color: #333;
118}
119
120.dev-info-text {
121 width: 100%;
122 border: 1px solid #fff;
123}
124
125.dev-info-text:focus {
126 border: 1px solid #ccc;
127}
128
129.dev-menu-body {
130 height: 100%;
131 overflow-y: auto;
132}
133
134.dev-menu-view {
135 height: 100%;
136 padding: 0 1ex;
137}
138
139.dev-menu-contents {
140 padding: 3px;
141 box-sizing: border-box;
142}
143
144.dev-menu-scroll-contents {
145 padding: 3px;
146 overflow: scroll;
147 box-sizing: border-box;
148}
149
150/* error-dialog */
151
152.error-dialog-main {
153 position: fixed;
154 z-index: 10000;
155 width: 450px;
156 padding: 12px;
157 bottom: 0;
158 right: 0;
159 opacity: 1;
160 background-color: #fee;
161 color: #666;
162 font-size: 16px;
163 box-sizing: border-box;
164 box-shadow: 5px 5px;
165 transition: .3s ease-out;
166}
167
168.error-dialog-main-hide {
169 right: -450px;
170 opacity: 0;
171 transition: .3s ease-out;
172}
173
174.error-dialog-title {
175 font-weight: bold;
176 color: #222;
177 font-size: 20px;
178 margin: 3px 0;
179}
180
181.error-dialog-name {
182 margin: 4px 10px;
183 color: #f33;
184 font-weight: bold;
185 font-size: 18px;
186}
187
188.error-dialog-body {
189 margin: 4px 10px;
190 color: #333;
191}
192
193.error-dialog-close-btn {
194 position: absolute;
195 cursor: pointer;
196 top: 10px;
197 right: 10px;
198}
199
200/* e-view */
201
202.dev-entity-tree ul {
203 list-style-type: none;
204 padding-left: 10px;
205}
206
207.dev-entity-tree-horizontal {
208 height: 70%;
209 width: 100%;
210}
211
212.dev-entity-tree-vertical {
213 float: left;
214 height: 100%;
215 width: 70%;
216}
217
218.dev-entity-property p {
219 padding: 0px;
220 margin: 0px;
221}
222
223.dev-entity-property-horizontal {
224 height: 30%;
225 width: 100%;
226 border-top: 1px solid black;
227}
228
229.dev-entity-property-vertical {
230 float: left;
231 height: 100%;
232 width: 30%;
233}
234
235.dev-entity-tree-item:hover {
236 color: #5992aa;
237 background-color: #e1f2fa;
238}
239
240/* snapshot-view */
241.dev-snapshot-list {
242 width: 100%;
243 height: 200px;
244 box-sizing: border-box;
245 overflow-y: scroll;
246}
247
248.dev-snapshot-list li {
249 margin-left: -15px;
250 padding: 3px;
251 border-width: 0;
252}
253
254.dev-snapshot-list li span {
255 font-weight: bold;
256}
257
258.dev-snapshot-preview {
259 border: 1px #aaa dotted;
260 padding: 4px;
261 margin: 5px;
262 box-sizing: border-box;
263 width: 90%;
264 height: 80px;
265 font-size: small;
266 overflow-y: scroll;
267}
268
269/* playlog-view */
270.dev-playlog-list li {
271 list-style: none;
272}
273
274/* bottom preview */
275.dev-snapshot-preview-vertical {
276 height: 270px;
277}
278
279/* grid */
280#gridCanvas {
281 position: absolute;
282 display: none;
283 pointer-events: none;
284 z-index: 2;
285}
286
287#profilerCanvas {
288 cursor: pointer;
289 margin: 5px;
290}