]> git.proxmox.com Git - pve-manager.git/blob - www/css/ext6-pve.css
change pve-invalid-row class to proxmox-invalid-row
[pve-manager.git] / www / css / ext6-pve.css
1 /* overwrite to use full black for enabled buttons */
2 .x-btn-inner-default-toolbar-small {
3 font: 300 12px/16px helvetica, arial, verdana, sans-serif;
4 color: #000;
5 padding: 0 5px;
6 max-width: 100%;
7 }
8
9 /* add missing class for context menu header */
10 .x-menu-header {
11 font: 400 13px/20px 'Open Sans', 'Helvetica Neue', helvetica, arial, verdana, sans-serif;
12 color: #fff;
13 padding: 4px;
14 background-color: #3892d4;
15 }
16
17 /* make the upper window end visible */
18 .x-css-shadow {
19 box-shadow: rgb(136,136,136) 0px -1px 15px !important;
20 }
21
22 /* reduce tree space */
23 .x-grid-cell-inner-treecolumn { /* vertical padding */
24 padding: 4px 0px 3px 0px;
25 }
26
27 /* horizontal distance between parent and child leaf */
28 .x-tree-elbow-img {
29 width: 14px;
30 }
31
32 /* adjust horizontal position of menu icons */
33 .x-menu-item-icon-default {
34 top: 5px;
35 left: 3px;
36 font-size: 14px;
37 }
38
39 /* this gives a better placement for the font-awesome icons */
40 .x-btn-icon-el-default-toolbar-small {
41 height: 14px;
42 }
43
44 /* this icon looks weird in sizes not n*14px */
45 .x-btn-icon-el-default-toolbar-small.fa-ellipsis-v {
46 font-size: 14px;
47 }
48
49 .x-btn-icon-el-default-small {
50 height: 14px;
51 font-size: 14px;
52 }
53
54 /* icons for tree/snapshots/menus/etc.. */
55
56 /* overwrite folder icons of theme */
57 .x-tree-icon-parent,
58 .x-tree-icon-parent-expanded,
59 .x-tree-icon-leaf {
60 background: none;
61 display: inline-block;
62 font: normal normal normal 14px/1 FontAwesome;
63 font-size: inherit;
64 text-rendering: auto;
65 -webkit-font-smoothing: antialiased;
66 -moz-osx-font-smoothing: grayscale;
67 font-size: 1.25em;
68 line-height: 1.6em;
69 color: #555;
70 margin-right: 5px;
71 }
72
73 .x-tree-icon-parent:not(.x-tree-icon-custom):before {
74 content: "\f114";
75 }
76
77 .x-tree-icon-parent-expanded:not(.x-tree-icon-custom):before {
78 content: "\f115";
79 }
80
81 /* loading in task list */
82 .x-grid-row-loading {
83 background: no-repeat center center;
84 background-image:url(../ext6/theme-crisp/resources/images/loadmask/loading.gif);
85 }
86
87 /* console icon in task list */
88 .x-grid-row-console {
89 background: no-repeat center center;
90 background-image:url(../images/icon-display.png);
91 }
92
93 /* for font-awesome colors */
94 /* tree icons */
95
96 /* big symbols */
97 .x-tree-icon-custom {
98 font-size: 1.25em;
99 line-height: 1.6em;
100 color: #555;
101 margin-right: 5px;
102 }
103
104 /* grid icons (resources, etc) */
105 .x-grid-icon-custom {
106 font-size: 1.25em;
107 color: #555;
108 margin-right: 5px;
109 }
110
111 /* the running vms are darker */
112 .x-tree-icon-custom.running,
113 .x-grid-icon-custom.running {
114 color: #000;
115 }
116
117 /* stopped and offline items are greyed out */
118 .x-tree-icon-custom.stopped,
119 .x-grid-icon-custom.stopped,
120 .x-tree-icon-custom.offline,
121 .x-grid-icon-custom.offline {
122 color: #cfcfcf;
123 }
124
125 /* the small icons */
126 .x-tree-icon-custom:after,
127 .x-grid-icon-custom:after {
128 position: relative;
129 left: -5px;
130 top: 1px;
131 font-size: 0.75em;
132 text-shadow: -1px 0px 2px #fff;
133 content: "\ ";
134 }
135
136 /* the green check */
137 .x-tree-icon-custom.online:after,
138 .x-grid-icon-custom.online:after {
139 content: "\f058";
140 color: #21BF4B;
141 }
142
143 /* the red x */
144 .x-tree-icon-custom.offline:after,
145 .x-grid-icon-custom.offline:after,
146 .x-tree-icon-custom.ha-error:after,
147 .x-grid-icon-custom.ha-error:after {
148 content: "\f057";
149 color: #CC1800;
150 }
151
152 /* the grey '?' */
153 .x-tree-icon-custom.unknown:after,
154 .x-grid-icon-custom.unknown:after {
155 content: "\f059";
156 color: #888;
157 }
158
159 /* the play symbol */
160 .x-tree-icon-custom.running:after,
161 .x-grid-icon-custom.running:after {
162 content: "\f04b";
163 color: #21BF4B;
164 }
165
166 /* the pause symbol */
167 .x-tree-icon-custom.paused:after,
168 .x-grid-icon-custom.paused:after {
169 content: "\f04c";
170 color: #CC8E00;
171 font-size: 0.6em;
172 }
173
174 /* the lxc template */
175 .x-tree-icon-custom.lxc:after,
176 .x-grid-icon-custom.lxc:after {
177 content: "\f1b2";
178 background: #fff;
179 }
180
181 /* the qemu template */
182 .x-tree-icon-custom.qemu:after,
183 .x-grid-icon-custom.qemu:after {
184 content : "\f108";
185 background: #fff;
186 }
187
188 /* fixes background on mouseover and selected items */
189 .x-grid-item-over .qemu:after,
190 .x-grid-item-over .lxc:after {
191 background-color: #e2eff9;
192 text-shadow: -1px 0px 2px #e2eff9;
193 }
194
195 .x-grid-item-selected .qemu:after,
196 .x-grid-item-selected .lxc:after {
197 background-color: #c2ddf2;
198 text-shadow: -1px 0px 2px #c2ddf2;
199 }
200
201 .pve-itype-icon-virt-viewer,
202 .pve-itype-icon-tigervnc,
203 .pve-itype-icon-novnc,
204 .pve-itype-icon-xtermjs,
205 .pve-itype-icon-display,
206 .pve-itype-icon-memory,
207 .pve-itype-icon-processor,
208 .pve-itype-icon-network,
209 .pve-itype-icon-network-server,
210 .pve-itype-icon-keyboard,
211 .pve-itype-icon-cdrom,
212 .pve-itype-icon-qemu,
213 .pve-itype-icon-qemu-template,
214 .pve-itype-icon-qemu-running,
215 .pve-itype-icon-lxc,
216 .pve-itype-icon-lxc-template,
217 .pve-itype-icon-lxc-running,
218 .pve-itype-icon-swap,
219 .pve-itype-icon-node,
220 .pve-itype-icon-node-running,
221 .pve-itype-icon-storage,
222 .pve-itype-icon-pool,
223 .pve-itype-icon-itype,
224 .pve-itype-icon-usb,
225 .pve-itype-icon-pci
226 {
227 background-repeat: no-repeat;
228 background-position:3px center;
229 padding-left: 20px;
230 }
231
232 .pve-itype-icon-qemu,
233 .x-tree-node-computer,
234 .x-grid-tree-node-expanded .x-tree-node-computer
235 {
236 background-image:url(../images/icon-display.png);
237 }
238
239 .pve-itype-icon-lxc,
240 .x-tree-node-lxc,
241 .x-grid-tree-node-expanded .x-tree-node-lxc
242 {
243 background-image:url(../images/lxc-off.png);
244 }
245
246 .pve-itype-icon-swap,
247 .x-tree-node-lxc-swap,
248 .x-grid-tree-node-expanded .x-tree-lxc-swap
249 {
250 background-image:url(../images/icon-swap.png);
251 }
252
253 .pve-itype-icon-lxc-running,
254 .x-tree-node-lxc-running,
255 .x-grid-tree-node-expanded .x-tree-node-lxc-running
256 {
257 background-image:url(../images/lxc-on.png);
258 }
259
260 .pve-itype-icon-storage,
261 .x-tree-node-harddisk,
262 .x-grid-tree-node-expanded .x-tree-node-harddisk
263 {
264 background-image:url(../images/icon-harddisk.png);
265 }
266
267 .x-tree-node-snapshot,
268 .x-grid-tree-node-expanded .x-tree-node-snapshot
269 {
270 background-image:url(../images/snapshot.png);
271 }
272
273 .pve-itype-icon-itype
274 {
275 background-image:url(../ext6/theme-classic/resources/images/tree/folder.gif);
276 }
277
278 .pve-itype-icon-network-server
279 {
280 background-image:url(../images/network-server.png);
281 }
282
283 .pve-itype-icon-network
284 {
285 background-image:url(../images/icon-network.png);
286 }
287
288 .pve-itype-icon-keyboard
289 {
290 background-image:url(../images/icon-keyboard.png);
291 }
292
293 .pve-itype-icon-cdrom
294 {
295 background-image:url(../images/icon-cd.png);
296 }
297
298 .pve-itype-icon-memory
299 {
300 background-image:url(../images/icon-ram.png);
301 }
302
303 .pve-itype-icon-processor
304 {
305 background-image:url(../images/icon-cpu.png);
306 }
307
308 .pve-itype-icon-display
309 {
310 background-image:url(../images/icon-display.png);
311 }
312
313 .pve-itype-icon-tigervnc
314 {
315 background-image:url(../images/tigervnc.png);
316 }
317
318 .pve-itype-icon-novnc
319 {
320 background-image:url(../images/novnc.png);
321 }
322
323 .pve-itype-icon-virt-viewer
324 {
325 background-image:url(../images/virt-viewer.png);
326 }
327
328 .pve-itype-icon-xtermjs
329 {
330 background-image:url(../images/xtermjs.png);
331 }
332
333 .pve-itype-icon-usb
334 {
335 background-image:url(../images/icon-usb.png);
336 }
337
338 .pve-itype-icon-pci
339 {
340 background-image:url(../images/icon-pci.png);
341 }
342
343 /* displayfield minheight is wrong */
344 .x-form-display-field-default {
345 min-height: 20px;
346 }
347
348 .x-button-reset:before {
349 font-size: 16px;
350 }
351
352 /* for resetcolumnsbutton */
353 .x-button-reset:after{
354 content: "\f0e7 ";
355 position: relative;
356 text-shadow: 0 0 2px #fff;
357 left: -3px;
358 top: 2px;
359 }
360
361 .pve-inline-button .x-btn-inner {
362 color: black;
363 }
364
365 .pve-hint {
366 background-color: LightYellow;
367 }
368
369 /* for info widget */
370 div.left-aligned {
371 float: left;
372 }
373
374 div.right-aligned {
375 float: right;
376 }
377
378 .x-progress.critical .x-progress-bar{
379 background-color: #FF8888;
380 }
381
382 .x-progress.warning .x-progress-bar{
383 background-color: #FFCC00;
384 }
385
386 .x-treelist-nav {
387 background-color: #f5f5f5;
388 }
389
390 .x-treelist-row {
391 margin-top: 5px;
392 }
393
394 .x-treelist-item-icon {
395 color: #000;
396 margin-left: 2px;
397 }
398
399 .x-treelist-item-text {
400 color: #000;
401 padding-left: 5px;
402 padding-right: 5px;
403 }
404
405 .fa-ceph:before {
406 width: 14px;
407 height: 14px;
408 position: absolute;
409 left: 1px;
410 top: 4px;
411 background-image:url(../images/logo-ceph.png);
412 background-size: 14px 14px;
413 content: ' ';
414 }
415
416 .x-treelist-row-over > * > .x-treelist-item-icon,
417 .x-treelist-row-over > * > .x-treelist-item-text{
418 color: #000;
419 }
420
421 /* some icons have to be color manually */
422 .black {
423 color: #000;
424 }
425
426 .normal {
427 color: #c2ddf2;
428 }
429
430 .faded {
431 color: #cfcfcf;
432 }
433
434 .good {
435 color: #21BF4B;
436 }
437
438 .warning {
439 color: #fc0;
440 }
441
442 .critical {
443 color: #FF6C59;
444 }
445
446 /* for the ceph monitor widgets */
447 div.monitor {
448 text-align:left;
449 border:#cfcfcf solid 1px;
450 border-radius:2px;
451 margin: 2px;
452 padding: 5px 8px;
453 }
454
455 /* for auto layout */
456 div.inline-block {
457 display: inline-block;
458 vertical-align: top;
459 }
460
461 /* ceph dashboard osd table styling */
462 table.osds {
463 border-collapse: collapse;
464 margin: auto;
465 }
466
467 table.osds td {
468 padding: 4px;
469 text-align: right;
470 border-right: 1px solid #cfcfcf;
471 }
472
473 table.osds td:last-of-type {
474 border-right: 0;
475 }
476
477 table.osds tr {
478 border-bottom: 1px solid #cfcfcf;
479 }
480
481 table.osds tr:last-of-type {
482 border-bottom: 0;
483 }
484
485 table.osds td:first-of-type {
486 text-align: left;
487 }
488
489 .pointer {
490 cursor: pointer;
491 }
492
493 .x-grid-filters-filtered-column{
494 font-style: italic;
495 font-weight: bold;
496 }
497
498 /* chrome 56 fix */
499 .x-webkit .x-form-text {
500 height: 100% !important;
501 }
502
503 .x-webkit :not(.x-form-textarea-body) > .x-form-trigger-wrap {
504 height: initial;
505 }
506
507 .proxmox-invalid-row {
508 background-color: #f3d6d7;
509 }
510
511 .pve-static-mask div.x-mask-msg-text {
512 padding: 10px;
513 background-image: none;
514 }
515
516 .x-fa {
517 diplay: inline-block;
518 font: normal normal normal 14px/1 FontAwesome;
519 text-rendering: auto;
520 -webkit-font-smoothing: antialiased;
521 -moz-osx-font-smoothing: grayscale;
522 }
523
524 .usage-wrapper {
525 margin-left: -7px;
526 vertical-align: text-bottom;
527 display: inline-block;
528 width: 8px;
529 height: 1.2em;
530 border: 1px solid #555;
531 border-radius: 1px;
532 padding: 1px;
533 }
534
535 .usage-negative {
536 left: 0px;
537 right:0px;
538 }
539
540 .usage {
541 left: 0px;
542 right: 0px;
543 background-color: #555;
544 }