Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ b7b29ade

History | View | Annotate | Download (32.9 kB)

1
html, body, div, span, applet, object, iframe,
2
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
3
a, abbr, acronym, address, big, cite, code,
4
del, dfn, em, font, img, ins, kbd, q, s, samp,
5
small, strike, strong, sub, sup, tt, var,
6
b, u, i, center,
7
dl, dt, dd, ol, ul, li,
8
fieldset, form, label, legend,
9
table, caption, tbody, tfoot, thead, tr, th, td {
10
        margin: 0;
11
        padding: 0;
12
        border: 0;
13
        font-size: 100%;
14
        vertical-align: baseline;
15
        background: transparent;
16
    font-family: Verdana, 'PT Sans', sans-serif;
17
}
18

    
19
body {
20
        line-height: 1;
21
    background: url(../static/degrade-background.png) repeat-x scroll 0 0 #C3C3C3;
22
    margin: 0;
23
}
24

    
25
ol, ul {
26
        list-style: none;
27
}
28

    
29
blockquote, q {
30
        quotes: none;
31
}
32

    
33
blockquote:before, blockquote:after,
34
q:before, q:after {
35
        content: '';
36
        content: none;
37
}
38

    
39
/* remember to define focus styles! */
40
:focus {
41
    outline: 1px dotted #87AADE;
42
}
43

    
44
/* remember to highlight inserts somehow! */
45
ins {
46
        text-decoration: none;
47
}
48

    
49
del {
50
        text-decoration: line-through;
51
}
52

    
53
/* tables still need 'cellspacing="0"' in the markup */
54
table {
55
        border-collapse: collapse;
56
        border-spacing: 0;
57
}
58

    
59
h5 {
60
    font-weight: normal;
61
    font-size: 9pt;
62
    margin-bottom:3px;
63
}
64

    
65
/* root element for tabs  */
66
ul.css-tabs {
67
        margin: 0 0 0 10px; 
68
    padding: 0;
69
        height:31px;
70
    font-size:32px;        
71
    overflow: hidden;         
72
}
73

    
74
ul.css-tabs .secondary {
75
    position:relative;
76
}
77

    
78
/* single tab */
79
ul.css-tabs li {  
80
        float:left;         
81
        padding:0; 
82
        margin: 0 10px 0 0;  
83
        list-style-type:none;        
84
}
85

    
86
/* link inside the tab. uses a background image */
87
ul.css-tabs a { 
88
        float:left;
89
        display:block;
90
        text-decoration:none;
91
        color:#d2d2d2;
92
        position:relative;
93
        outline:0;
94
    padding: 0 9px 0 13px;
95
    top: 9px;
96
}
97

    
98
ul.css-tabs a#machines {
99
    color: #a3bbc5;
100
}
101

    
102
ul.css-tabs a#machines.current {
103
  color: #87aade;
104
}
105

    
106
ul.css-tabs a#disks {
107
    color: #deb358;
108
}
109

    
110
ul.css-tabs a#disks.current {
111
    color: #dea842;
112
}
113

    
114
ul.css-tabs a#images {
115
    color: #9ba97b;
116
}
117

    
118
ul.css-tabs a#images.current {
119
    color: #87a06d;
120
}
121

    
122
ul.css-tabs a#networks {
123
    color: #bc9399;
124
}
125

    
126
ul.css-tabs a#networks.current {
127
  color: #9d6d6a;
128
}
129

    
130
ul.css-tabs a#files {
131
    color: #a3bbc5;
132
}
133

    
134
ul.css-tabs a#files.current {
135
  color: #87aade;
136
}
137

    
138
ul.css-tabs a#desktops {
139
    color: #deb358;
140
}
141

    
142
ul.css-tabs a#desktops.current {
143
    color: #dea842;
144
}
145

    
146
ul.css-tabs a#apps {
147
    color: #9ba97b;
148
}
149

    
150
ul.css-tabs a#apps.current {
151
    color: #87a06d;
152
}
153

    
154
.more-tabs {
155
    float: right;
156
    margin: -15px 50px 0px 0px;
157
}
158

    
159
.more-tabs:hover {
160
    cursor: pointer;
161
}
162
        
163
/* selected tab */
164
ul.css-tabs a.current {
165
        cursor:default;   
166
    top: 2px !important; 
167
}
168

    
169
/* tab pane */
170
div.css-panes {
171
/*    border-top: 10px solid #87aade;
172
    border-bottom: 10px solid #87aade;  */
173
    background: white;
174
}
175

    
176
.css-panes > div.pane {
177
        display:none;
178
        padding:0px 20px;
179
    margin: 0 1em;
180
}
181

    
182
/* CSS3 border radius for various elements. yea - CSS isn't perfect */
183
.rounded, #sheet input, .error {
184
        border-radius: 5px;
185
        -webkit-border-radius: 5px;
186
        -moz-border-radius: 5px;
187
        -o-border-radius: 5px;
188
        -khtml-border-radius: 5px;
189
}
190

    
191
/* validation error message */
192
.error {
193
        background-color:#E8FF6D;
194
        padding:4px;
195
        -webkit-box-shadow: #000 0 0 9pt;
196
        -moz-box-shadow: #000 0 0 9pt;
197
}
198

    
199
/* nested arrow inside error message. It's 100% CSS. No images. */
200
.error em {
201
        border: 10px solid;
202
        border-color: #E8FF6D transparent transparent;
203
        bottom: -17px;
204
        display: block;
205
        height: 0;
206
        left: 10px;
207
        position: absolute;
208
        width: 0;
209
}
210

    
211
/* input field that caused validation error */
212
.invalid {
213
        background-color: rgba(221, 233, 255, 0.898) !important;
214
}
215

    
216
#create {
217
    background-color: #87aade;
218
    color: #000;
219
    cursor: pointer;
220
    display: none;
221
    padding: 6px 24px;
222
    margin: -8px 0 20px -36px;
223
    width: 125px;
224
    text-decoration: none;
225
}
226

    
227
#create:hover {
228
    background-color: #a8c5f1;
229
}
230

    
231
#header .fatborder{
232
    height: 60px;
233
    background: #999;
234
}
235

    
236
div#wrapper {
237
    width: 700px;
238
    margin: 0em auto;
239
}
240

    
241
.modal {
242
    background-color:#fff;
243
    display:none;
244
    width:30em;
245
    height:20em;
246
    padding:1em;
247
    text-align:left;
248
}
249

    
250
/* scrollable root element */
251
#wizard {        
252
        font-size:9pt;
253
        height:405px;
254
        width:453px;
255
        margin:0px auto;        
256
        overflow:hidden;
257
        position:absolute !important;
258
}  
259

    
260
/* scrollable items */
261
#wizard .items {
262
        width:20000em;        
263
        clear:both;        
264
        position:absolute;        
265
    display:block;
266
    padding: 0;
267
    margin: 0;
268
    border:none;
269
    background:none;
270
}
271

    
272
/* single item */
273
#wizard .page {        
274
    padding: 15px 40px 20px 15px;
275
        width:447px;
276
        float:left;        
277
    display:block;
278
    border:none;
279
    background-color: transparent;
280
}
281

    
282
/* title */
283
#wizard h2 {
284
    color: black;
285
    font-size: 100%;
286
    font-weight: normal;
287
    padding-left: 20px;
288
}
289

    
290
#wizard li {
291
        margin-bottom:1.2em;
292
}
293

    
294
#wizard .pane li {
295
    margin: 0;
296
}
297

    
298
#wizard label {
299
        font-size:16px;        
300
        display:block;
301
    clear: both;
302
}
303

    
304
#wizard label strong {
305
        position:relative;
306
        top:-1px;
307
    font-size: 80%;
308
    font-weight: normal;
309
}
310

    
311
#wizard label em {
312
        font-size:9pt;
313
        color:#666;        
314
        font-style:normal;
315
}
316

    
317
#wizard .text {
318
        width: 270px;
319
        padding: 5px;
320
    margin-top: 10px;
321
        border: 1px solid #ccc;
322
        color: #456;
323
        letter-spacing: 1px;
324
}
325

    
326
#wizard select {
327
        border:1px solid #ccc;
328
        width:94%;        
329
        padding:4px;
330
    display: none;
331
}
332

    
333
#wizard .double label { 
334
        width:50%;
335
        float:left;
336
}
337

    
338
#wizard .double .text {
339
        width:93%;        
340
}
341

    
342
#wizard .clearfix {
343
        clear:left;
344
        padding-top:10px;        
345
}
346

    
347
#wizard .right {
348
        float:right;                
349
}
350

    
351
#wizard .error {
352
        border:1px solid red;                
353
}
354

    
355
#wizard a div.image {
356

    
357
}
358

    
359
#wizard a:hover div.image {
360
    background-color: #999;
361
}
362

    
363
.selecteddiv {
364
    background-color: #999 !important;
365
}
366

    
367
#wizard label a:hover strong {
368
    color: white;
369
}
370

    
371
#wizard div.image span.size {
372
    font-size: 9pt;
373
    color: #666;
374
}
375

    
376
#wizard div.image .radio {
377
    float: left;
378
    margin-top: 10px;
379
}
380

    
381
#wizard div.image span.image-id, #wizard div.image span.description {
382
    font-size: 9pt;
383
    color: #666;
384
    font-weight: normal;
385
    display:inline;
386
}
387

    
388
#wizard a:hover div.image span.image-id, #wizard a:hover div.image span.description, #wizard a:hover div.image span.size {
389
    color: white;
390
}
391

    
392
#wizard .cost {
393
    color: #666;
394
    margin-top: 40px;
395
    clear:both;
396
    padding-left: 15px;
397
    font-size: 95%;
398
}
399

    
400
#wizard #status {
401
        height: 50px;
402
        background: #666;
403
    width: 450px;
404
}
405

    
406
#wizard .headernumber {
407
    font-size: 470%;
408
    font-weight: normal;
409
}
410

    
411
#wizard .headerbody {
412
    font-size: 110%;
413
    font-weight: normal;
414
    display: inline;
415
    margin-top: 20px;
416
    position: absolute;
417
}
418

    
419
#wizard .first {
420
    margin-left: -7px;
421
}
422

    
423
#wizard .third {
424
    margin-top: -2px !important;
425
}
426

    
427
#wizard .topruler {
428
    background-color: #CCCCCC;
429
    border: 0 none;
430
    height: 4px;
431
    margin-left: -1px;
432
    width: 447px;
433
    margin-bottom: 6px;
434
    margin-top: 6px;
435
}
436

    
437
#wizard .bottomruler {
438
    background-color: #CCCCCC;
439
    border: 0 none;
440
    height: 4px;
441
    margin-left: -1px;
442
    width: 447px;
443
    margin-bottom:6px;
444
    margin-top:6px;
445
}
446

    
447
#wizard #cancel {
448
    text-align: center;
449
}
450

    
451
#wizard #start {
452
    text-align: center;
453
    background-color: #FF6600;
454
    border-color: #FF6600;
455
}
456

    
457
#wizard #start:hover {
458
    background-color: #FF9651;
459
    border-color: #FF9651;
460
}
461

    
462
.page ul {
463
    height: 270px;
464
    overflow: auto;
465
}
466

    
467
.panes ul.pane {
468
    height: 220px;
469
}
470

    
471
.page ul.tabs {
472
    overflow: hidden;
473
    height: auto;
474
    margin-bottom: 2px;
475
    margin-top: -5px;
476
}
477

    
478
.page ul.tabs li {
479
    float: right;
480
    margin: 0 0.2em;
481
}
482

    
483
#status li {
484
        float: left;
485
        color: #7D7D7D;
486
    padding: 0px 72px 0 40px;
487
    margin-top: -1px;
488
}
489

    
490
#status li.active .headernumber {
491
    color: #FFFFFF;
492
}
493

    
494
#status li.active .headerbody {
495
    color: #5599FF;
496
}
497

    
498
div.image-container {
499
    border-bottom: 1px solid #CCCCCC;
500
    margin-left: 10px;
501
    margin-right: 10px;
502
}
503

    
504
#page2-container {
505
    background-color: #ECECEC;
506
    padding-top: 25px;
507
    height: 180px;
508
}
509

    
510
#page3-container {
511
    background-color: #ECECEC;
512
    padding-left: 50px;
513
    height: 244px;
514
    margin-bottom: 32px;
515
}
516

    
517
/* slider root element */
518
.slider {
519
    border: 1px solid #666;
520
    cursor: pointer;
521
    display: inline !important;
522
    float: left;
523
    margin: 5px 0 20px 10px;
524
    position: relative;
525
    width: 250px;
526
}
527

    
528
.sliders {
529
    float:left;
530
    width: 40px;
531
    margin-left: 10px;  
532
    margin-top: 3px;
533
}
534

    
535
.units {
536
    padding-left:10px;
537
}
538

    
539
.slider-container {
540
    padding-bottom: 15px;
541
    margin-left: 5px;
542
}
543

    
544
/* drag handle */
545
.handle {
546
    -moz-box-shadow: 0 0 2px #000000;
547
    background: url("../static/h30.png") repeat-x scroll 0 0 #FFFFFF;
548
    border: 1px solid #000000;
549
    cursor: move;
550
    display: block;
551
    height: 10px;
552
    margin-top: -8px;
553
    position: absolute;
554
    width: 8px;
555
}
556

    
557
/* progress bar (enabled with progress: true) */
558
.progress {
559
        height: 3px; 
560
        background-color: #676767;
561
}
562

    
563
/* the input field */
564
.range {
565
        float: left;
566
        font-size: 100%;
567
        margin: -3px 0 0 15px;
568
    padding: 2px 10px 2px 0;
569
        text-align: right;
570
        width: 40px;
571
    border: 1px solid #111111;
572
}
573

    
574
.selectedrange {
575
    border-color: #5599FF;
576
}
577

    
578
#credits-indicator {
579
    background-color: #ECECEC;
580
    float: none;
581
    margin: 0 0 0 10px;
582
    border: 1px solid #999;
583
    color: #222222;
584
}
585

    
586
div.machine {
587
    clear: both;
588
    margin: 9px 0 0 -32px;
589
    padding: 3px 4px 0;
590
    width: 523px;
591
    color: #666;
592
    min-height: 65px;
593
}
594

    
595
.machine a {
596
    color: #3d3d3d;
597
    font-weight: normal;
598
    text-decoration: none;
599
    font-size: 9pt;
600
}
601

    
602
.machine a:hover {
603
    color: #000;
604
    text-decoration: underline;
605
}
606

    
607
.machine .name, .machine .ip {
608
    text-decoration: none !important;
609
}
610

    
611
.oldValue {
612
    display:none;
613
}
614

    
615
.state {
616
    float: right;
617
}
618

    
619
.state div {
620
    text-align: right;
621
    margin-right: 3px;
622
}
623

    
624
div.machine div.actions {
625
    float: right;
626
    width: 70px;
627
    margin:0px -70px 0 0;
628
    font-weight: normal;
629
}
630

    
631
div.machine div.actions a {
632
    color: transparent;
633
    margin: 0 0 5px 8px;
634
    display: block;
635
}
636

    
637
div.machine div.actions a.action-shutdown {
638
    margin-bottom: 5px;
639
    display: block;
640
}
641

    
642
div.machine div.actions a.shutdown-padding {
643
    margin-bottom: 22px;
644
}
645

    
646
div.machine div.actions a.destroy-padding {
647
    margin-top: 52px;
648
}
649

    
650
div.actions a.enabled:hover{
651
    color: black !important;
652
    text-decoration: underline;
653
    display: block;
654
}
655

    
656
.machine:hover .actions a {
657
    color: #3d3d3d;
658
    display: block;
659
}
660

    
661
div.machine div.display a{
662
    color: #3d3d3d;
663
    display: block;
664
}
665

    
666
div.machine div.actions a.selected:hover {
667
    color: orange;
668
}
669

    
670
div.running div.machine a.action-start {
671
    display: none;
672
}
673

    
674
div.terminated div.machine a.action-reboot, div.terminated div.machine a.action-shutdown{
675
    display: none;
676
}
677

    
678
div.terminated div.machine div.actions a.action-destroy {
679
    margin-top: 38px;
680
}
681

    
682
.machine:hover {
683
    background-color:#dcdcdc;
684
}
685

    
686
.standard .machine img {
687
    float: left;
688
    margin: 7px 14px 0;
689
}
690

    
691
.list .machine img {
692
    margin: 0;
693
}
694

    
695
div.ip, div.state {
696
    font-size: 9pt;
697
    color: #3d3d3d;
698
}
699

    
700
div.indicator {
701
    width:10px;
702
    height:11px;
703
    margin: 3px -1px;
704
    clear: none;
705
    float:right;
706
}
707

    
708
.view-separator {
709
    color:#5F8DD3;    
710
}
711

    
712
.running .indicator {
713
    border-top: 2px solid white;
714
    border-bottom: 2px solid white;
715
    border-left: 2px solid white;
716
    border-right: 3px solid white;
717
    background-color: #87AADE;
718
}
719

    
720
.terminated {
721
    margin-bottom: 17px;
722
}
723

    
724
.terminated .machine .state .status {
725
    color: #666;
726
}
727

    
728
.machine:hover div.uptime, .machine:hover a.rename, .machine:hover a.configure {
729
    color: #3d3d3d;
730
}
731

    
732
div.uptime {
733
    clear: both;
734
    color: transparent;
735
    margin-left: 1px;
736
}
737

    
738
div.machine-tabs {
739
    margin-top: 1em;
740
}
741

    
742
span.rename, span.configure {
743
    background-repeat: no-repeat;
744
    color: transparent;
745
    font-size: 9pt;
746
    font-weight: normal;
747
    margin-left: 10px;
748
    padding-left: 10px;
749
    text-align: left;
750
}
751

    
752
span.rename {
753
    cursor: pointer;
754
}
755

    
756
div.name:hover span.rename {
757
    color: #3D3D3D;
758
    margin-top: 0.4em;
759
    background-image: url(/static/pencil.png);
760
    background-position: 0 3px;
761
}
762

    
763

    
764
a.settings:hover span.configure {
765
    color: #3D3D3D;
766
}
767

    
768
button {
769
    background-color: #87AADE;
770
    border: 1px solid #87AADE;
771
    color: #FFFFFF;
772
    cursor: pointer;
773
    height: 23px;
774
    width: 120px;
775
}
776

    
777
button.next:hover {
778
    background-color: #68A4FF;
779
    border-color: #68A4FF;
780
}
781

    
782
button.prev:hover {
783
    background-color: #888888;
784
    border-color: #888888;
785
}
786

    
787
button.next {
788
    background-color: #5599FF;
789
    border-color: #5599FF;
790
    text-align: right;
791
}
792

    
793
button.prev {
794
    background-color: #666;
795
    border:none;
796
    margin-left: -1px;
797
    text-align: left;
798
}
799

    
800
.image-logo {
801
    float: left;
802
    margin-right: 1em;
803
    margin-left: 1.5em;
804
    margin-top: 4px;
805
}
806

    
807
div.image {
808
    clear: both;
809
    display: block;
810
    margin-bottom: 3px;
811
    margin-top: 3px;
812
    padding: 5px;
813
}
814

    
815
div#view-select {
816
    float: right;
817
    clear: both;
818
    color: white;
819
    margin-top: -42px;
820
    margin-right: -36px;
821
    font-size: 9pt;
822
    background-color: #87aade;
823
    padding: 5px 10px;
824
    display:none;
825
}
826

    
827
a#standard, a#list, a#single {
828
    text-decoration: none;
829
    height: 15px;
830
    width: 17px;
831
    padding: 1px 8px 2px 9px;
832
    font-size: 11px;
833
}
834

    
835
div#view-select a {
836
    color:#5f8dd3;
837
}
838

    
839
a#list:hover {
840
    background: #5f8dd3;
841
}
842

    
843
a#standard:active, a#list:active {
844
    color:white;
845
}
846

    
847
a#standard {
848
    background: url(/static/icon-view.png) no-repeat -36px 0;
849
}
850

    
851
a#list {
852
    background: url(/static/list-view.png) no-repeat -36px 0;
853
}
854

    
855
a#single {
856
    background: url(/static/single-view.png) no-repeat -36px 0;
857
}
858

    
859
a#standard:hover {
860
    background: url(/static/icon-view.png) no-repeat -18px 0;
861
}
862

    
863
a#list:hover {
864
    background: url(/static/list-view.png) no-repeat -18px 0;
865
}
866

    
867
a#single:hover {
868
    background: url(/static/single-view.png) no-repeat -18px 0;
869
}
870

    
871
a#standard.activelink {
872
    background: url(/static/icon-view.png) no-repeat 0px 0;
873
}
874

    
875
a#list.activelink {
876
    background: url(/static/list-view.png) no-repeat 0px 0;
877
}
878

    
879
a#single.activelink {
880
    background: url(/static/single-view.png) no-repeat 0px 0;
881
}
882

    
883
#machinetype {
884
    background-color: #CCCCCC;
885
    height: 25px;
886
    margin-bottom: 4px !important;
887
}
888

    
889
div.machine-type {
890
    float: left;
891
    margin: 4px 18px 20px;
892
}
893

    
894
.machine-type .active {
895
    color: #FFFFFF
896
}
897

    
898
#machinesview {
899
    min-height: 270px;
900
    margin-top: 30px;
901
}
902

    
903
.list#machinesview {
904
    margin-left: -20px;
905
    display:none;
906
}
907

    
908
#machinesview_wrapper.list {
909
    margin-left: -20px;
910
}
911

    
912
#machinesview_wrapper {
913
    min-height: 270px;
914
}
915

    
916
#machinesview_content {
917
    display:none;
918
}
919

    
920
.list-machines {
921
    min-width: 515px;
922
}
923

    
924
#emptymachineslist {
925
    display:none; 
926
    color: #A0A0A0;
927
    background-image: url(/static/emptydegradebg.png);
928
    width: 400px;
929
    margin-top: 40px;
930
    padding: 5px;
931
    padding-left: 10px;
932
    margin-left: -10px;
933
}
934

    
935
#welcomeheader {
936
    color:white;
937
}
938

    
939
.welcomebody {
940
    color:black;
941
    font-size:80%;
942
}
943

    
944
.welcomebody a {
945
    color:black;
946
}
947

    
948
.welcomefooter {
949
    color:black;
950
    font-size:60%;
951
}
952

    
953
.welcomefooter a {
954
    color:black;
955
}
956

    
957
.emptycreatecontainer {
958
    margin-left: 430px !important;
959
    position: absolute;
960
    margin-top: 40px;
961
    width: 180px;
962
    background-color: #CCCCCC;
963
    padding: 5px;
964
    padding-left: 10px;
965
}
966

    
967
.emptycreate {
968
    margin: 20px 10px 5px 0 !important;
969
}
970

    
971
#createbody {
972
    display:none;
973
    font-size: 80%;
974
}
975

    
976
div.list label img {
977
    margin: 5px 5px -3px 0;
978
}
979

    
980
div.list label {
981
    color: #3D3D3D;
982
    font-size: 9pt;
983
}
984

    
985
div.list .state {
986
    margin-top: 7px;
987
    margin-right: 10px;
988
}
989

    
990
div.list table tbody {
991
    margin-top: 8px;
992
}
993

    
994
div.list .stopped {
995
    margin-top: 8px;
996
}
997

    
998
/* root element for tabs  */
999
#wizard ul.tabs { 
1000
    margin-right: -1px;
1001
    float: right;                         
1002
}
1003

    
1004
#wizard div.panes {
1005
    height: 252px;
1006
    margin-bottom: 6px;
1007
    clear:both;
1008
}
1009

    
1010
.typebody {
1011
    font-size: 80%;
1012
    font-weight: normal;
1013
    position: relative;
1014
    top: -3px;
1015
}
1016

    
1017
.typehover {
1018
    color: #FFFFFF;
1019
}
1020

    
1021
#label-name {
1022
    margin-top: 15px;
1023
}
1024

    
1025
/* single tab */
1026
#wizard ul.tabs li {  
1027
    margin-bottom: 0; 
1028
        list-style-type:none;
1029
    float: left;        
1030
}
1031

    
1032
/* link inside the tab. uses a background image */
1033
#wizard ul.tabs a { 
1034
        display:block;
1035
    padding: 0.3em 0.5em 0.5em 0.4em;
1036
        text-decoration:none;
1037
        color: #FFFFFF;
1038
        position:relative;
1039
        top:1px;
1040
        outline:0;
1041
    background-color: #CCCCCC;
1042
    text-align: center;
1043
    width: 100px;
1044
    white-space: nowrap;
1045
}
1046

    
1047
#wizard ul.tabs a:hover {
1048
        color: #FFFFFF;
1049
    background-color:#AAAAAA;
1050
}
1051
        
1052
/* selected tab */
1053
#wizard ul.tabs a.current {
1054
        color: white;
1055
    background-color: #666;        
1056
        cursor: default;
1057
}
1058

    
1059
#wizard #standard-images {
1060
    background-color: #ECECEC;
1061
}
1062

    
1063
div.list div.actions {
1064
    display: none;
1065
    clear: left;
1066
    float: right;
1067
    margin-right: -20px;
1068
    margin-top: 37px;
1069
    text-align: right;
1070
    width: 150px;
1071
}
1072

    
1073
div.list div.actions a {
1074
    clear: left;
1075
    color: #D3D3D3;
1076
    display: block;
1077
    font-size:9pt;
1078
    margin-bottom: 2px;
1079
}
1080

    
1081
div.list div.actions a.enabled {
1082
    color: #3D3D3D;
1083
}
1084

    
1085
div.list div.actions a.enabled:hover{
1086
    cursor: pointer;
1087
    color: black;
1088
    text-decoration: underline;
1089
}
1090

    
1091
input.machine {
1092
    width: 13px;
1093
    height: 13px;
1094
    top: -1px;
1095
    overflow: hidden;
1096
}
1097

    
1098
/* metadata editing scrollable */
1099
#metadata-wizard {
1100
        position:relative;
1101
        overflow:hidden;
1102
    width:380px;
1103
    height:360px;
1104
    display:none;
1105
    background-color:#fff;
1106
    text-align:left;
1107
    font-size: 80%;
1108
}
1109

    
1110
#metadata-wizard .items {
1111
        width:20000em;
1112
        position:absolute;
1113
        clear:both;
1114
    padding: 0;
1115
    margin: 0;
1116
}
1117

    
1118
#metadata-wizard .page {        
1119
        width:360px;
1120
    padding: 15px 10px 15px 10px;
1121
        float:left;        
1122
    display:block;
1123
    border:none;
1124
}
1125

    
1126
#metadata-wizard div.container {
1127
    height:308px;
1128
}
1129

    
1130
#metadata-wizard h3 {
1131
    font-weight:normal;
1132
}
1133

    
1134
#metadata-wizard hr {
1135
    background-color: #666;
1136
    border: 0 none;
1137
    height: 5px;
1138
    margin: 0; 
1139
}
1140

    
1141
#metadata-wizard hr.topruler {
1142
    margin-top: 5px; 
1143
}
1144

    
1145
#metadata-wizard hr.fatruler {
1146
    height: 20px;
1147
    margin-top: 2px;
1148
    margin-bottom: 20px;
1149
}
1150

    
1151
#metadata-wizard hr.meta-separator {
1152
    width: 320px;
1153
    margin: 5px 0 2px 0;
1154
}
1155

    
1156
#metadata-wizard div.content {
1157
    height: 248px;
1158
    width: 345px;
1159
    margin-left: 15px;
1160
    overflow: auto;
1161
}
1162

    
1163
#metadata-wizard div.content ul {
1164
    height: 230px;
1165
}
1166

    
1167
#metadata-wizard div.content li {
1168
    margin-bottom: 20px;
1169
}
1170

    
1171
#metadata-wizard p {
1172
    margin-left: 7px;
1173
}
1174

    
1175
#metadata-wizard div.bottomruler {
1176
    background-color: #666;
1177
    height: 20px;
1178
    margin-top: 17px;
1179
}
1180

    
1181
#metadata-wizard button {
1182
    font-size: 80%;
1183
    width: 87px;
1184
    float: right;
1185
    background-color: #5599FF;
1186
    border: 0px solid #5599FF;
1187
    padding: 0;
1188
    margin-right: 25px;
1189
    text-align: center;
1190
}
1191

    
1192
#metadata-wizard button.remove {
1193
    height: 15px;
1194
    width: 70px;
1195
    background-color: #d35f5f;
1196
    border-color: #d35f5f;
1197
    margin-top: 2px;
1198
}
1199

    
1200
#metadata-wizard button.edit {
1201
    height: 15px;
1202
    width: 70px;
1203
    background-color: #666;
1204
    border-color: #666;
1205
    margin-top: -14px;
1206
}
1207

    
1208
#metadata-wizard button.create {
1209
    height: 23px;
1210
    margin: 4px 44px 0 0;
1211
}
1212

    
1213
#metadata-wizard input, #metadata-wizard textarea {
1214
    font-style: italic;
1215
    text-align: right;
1216
    color: #ccc;
1217
}
1218

    
1219
#metadata-wizard input {
1220
    font-size: 80%;
1221
}
1222

    
1223
#metadata-wizard input.key {
1224
    width: 279px;
1225
    margin-bottom: -3px;
1226
}
1227

    
1228
#metadata-wizard textarea.value {
1229
    width: 267px;
1230
    height: 170px;
1231
    overflow: auto;
1232
}
1233

    
1234
#metadata-wizard .input-enabled {
1235
    color: black;
1236
    text-align: left;
1237
    font-style: normal;
1238
}
1239

    
1240
#metadata-wizard label.meta-value {
1241
    vertical-align: top;
1242
}
1243

    
1244
#metadata-wizard button.save {
1245
    margin-top: 4px;
1246
}
1247

    
1248
#metadata-wizard button.cancel {
1249
    float: left;
1250
    margin: 4px 0 0 25px;
1251
    background-color: #d35f5f;
1252
    border-color: #d35f5f;
1253
}
1254

    
1255

    
1256
/* notification box */
1257
#error-success, #yes-no {
1258
    height: 150px;
1259
    border: 5px solid #87AADE;
1260
    z-index: 9999;
1261
}
1262

    
1263
#error-success p, #yes-no p, #yes-no button {
1264
    margin-top: 15px;
1265
}
1266

    
1267
#error-success strong {
1268
    color: #F49C1A;
1269
}
1270

    
1271
#error-success div {
1272
    height: 142px;
1273
    overflow-y: auto;
1274
    overflow-x: hidden;
1275
}
1276

    
1277
#error-success .close {
1278
        background-image: url(/static/close.png);
1279
        position: absolute;
1280
        right: -19px;
1281
        top: -20px;
1282
        cursor: pointer;
1283
        height: 35px;
1284
        width: 35px;
1285
}
1286

    
1287
/* Confirmation boxes */
1288
div.confirm_single, div.confirm_multiple {
1289
    display: none;
1290
    background-color: #DCDCDC;
1291
    color: orange;
1292
    font-size: 9pt;
1293
}
1294

    
1295
div.action_error {
1296
    float: right;
1297
    width: 80px;
1298
    height: 60px;
1299
    padding: 5px;
1300
    margin: -65px -165px 0 0;
1301
    display: none;
1302
    background-color: #DCDCDC;
1303
    font-size: 9pt;
1304
    color: black;
1305
    line-height: 1.5;
1306
}
1307

    
1308
div.action_error button.details {
1309
    margin: 5px 0 0 0px;
1310
    padding: 0 15px;
1311
}
1312

    
1313
.orange {
1314
    color: orange;
1315
}
1316

    
1317
div.confirm_single button, div.confirm_multiple button, div.action_error button{
1318
    font-size: 9pt;
1319
    background-color: #DCDCDC;
1320
    border: 1px solid #a5a5a5;
1321
    color: #3D3D3D;
1322
    cursor: pointer;
1323
    padding: 0px;
1324
    height: 20px !important;
1325
}
1326

    
1327
div.confirm_single button, .action_error button {
1328
    width: 80px !important;
1329
}
1330
div.confirm_single button.yes, div.confirm_multiple button.yes {
1331
    border-color: orange;
1332
    padding: 0 12px;
1333
}
1334

    
1335
div.confirm_single button.yes:hover, div.confirm_multiple button.yes:hover {
1336
    background-color: orange;
1337
}
1338

    
1339
div.confirm_single button.no, div.confirm_multiple button.no {
1340
    padding: 0px 16px;
1341
}
1342

    
1343
div.confirm_single button.no:hover, div.confirm_multiple button.no:hover, div.action_error button.details:hover {
1344
    background-color: #a5a5a5;
1345
}
1346

    
1347
div.confirm_single{
1348
    float: right;
1349
    width: 90px;
1350
    height: 70px;
1351
    margin: -65px -165px 0 0;
1352
}
1353

    
1354
div.confirm_single button.yes {
1355
    margin: 5px 0 0 5px;
1356
}
1357

    
1358
div.confirm_single button.no {
1359
    margin: 20px 0 0 5px;
1360
}
1361

    
1362
div.action_error {
1363
    display: none;
1364
}
1365

    
1366
div.confirm_multiple {
1367
    width: 692px;
1368
    height: 28px;
1369
    margin: 0 0 10px -32px;
1370
}
1371

    
1372
div.confirm_multiple p {
1373
    float: left;
1374
    margin: 7px 0 0 200px;
1375
}
1376

    
1377
div.confirm_multiple button {
1378
    float: right;
1379
    margin: 4px 5px 0 0;
1380
}
1381

    
1382
div.confirm_multiple button.no {
1383
    margin-right: 15px;
1384
}
1385

    
1386
div#user{
1387
    float:right;
1388
    clear: both;
1389
    color: #a0a0a0;
1390
    font-size: 9pt;
1391
    margin-top: 16px;
1392
}
1393

    
1394
div#user a{
1395
    color: #a0a0a0;
1396
    text-decoration: none;
1397
}
1398

    
1399
div#user a.current_lang {
1400
    color: #d3d3d3;
1401
}
1402

    
1403
.separator {
1404
    background-color: #87AADE;
1405
    height: 10px;
1406
    width: 700px;
1407
    margin: 0 0 0 -36px;
1408
}
1409

    
1410
#mini.separator {
1411
    width: 535px;
1412
    height: 5px;
1413
    margin: 17px 0 17px -36px;
1414
    display: none;
1415
}
1416

    
1417
#disks.separator {
1418
    background-color: #dea842;
1419
}
1420

    
1421
#images.separator {
1422
    background-color: #87a06d;
1423
}
1424

    
1425
#networks.separator {
1426
    background-color: #6c535d;
1427
}
1428

    
1429
#desktops.separator {
1430
    background-color: #dea842;
1431
}
1432

    
1433
#apps.separator {
1434
    background-color: #87a06d;
1435
}
1436

    
1437
.machine .separator {
1438
    width: 508px;
1439
    height: 1px;
1440
    margin: 8px 0 0 15px;
1441
    background-color: #DCDCDC;
1442
}
1443

    
1444
.machine h5 {
1445
    margin: 0px 60px 1px 84px;
1446
}
1447

    
1448
.machine .settings {
1449
    margin-top: 13px;
1450
}
1451

    
1452
.editbuttons {
1453
    display: block;
1454
    clear: none;
1455
    width: 40px;
1456
    margin-right:33%;
1457
    margin-top:1px;
1458
    float:right;
1459
    cursor: pointer;
1460
}
1461

    
1462
.editbuttons .save:hover, .editbuttons .cancel:hover {
1463
    background-color: #CCCCCC;
1464
}
1465

    
1466
.editbuttons .cancel:hover {
1467
    background-image: url("../static/cancel-onhover.png");
1468
}
1469

    
1470
.editbuttons .cancel, .editbuttons .save {
1471
    padding-left: 16px;
1472
    padding-top: 2px;
1473
    background-repeat: no-repeat;
1474
    color: transparent;
1475
    font-size: 9pt;
1476
}
1477
.editbuttons .cancel {
1478
    background-image: url("../static/cancel.png");
1479
    margin-left: 3px;
1480

    
1481
}
1482

    
1483
.editbuttons .save {
1484
    background-image: url("../static/save.png");
1485
    margin-left: 1px;
1486
}
1487

    
1488
.editbuttons img {
1489
    float:none !important;
1490
    margin: 0px !important;
1491
}
1492

    
1493
.namecontainer {
1494
    line-height: 13px;
1495
}
1496

    
1497
.nametextbox {
1498
    height: 13px;
1499
    font-size: 95%;
1500
}
1501

    
1502
#spinner {
1503
    background: url("../static/progress.gif");
1504
    height: 31px;
1505
    width: 31px;
1506
    margin-left: 298px;
1507
    margin-top: 160px; 
1508
}
1509

    
1510
/* tables in list view */
1511
div.list div.dataTables_filter,  div.list div.dataTables_filter input{
1512
    font-size: 9pt;
1513
    display: none;
1514
}
1515

    
1516
div.list div.dataTables_filter input{
1517
    height: 12px;
1518
    margin-bottom: 12px;
1519
}
1520

    
1521
div.list table {
1522
    width: 515px;
1523
    font-size: 9pt;
1524
}
1525

    
1526
div.list table tbody td {
1527
        color: #3D3D3D;
1528
        padding:6px;
1529
        background-color: #FFF;
1530
        vertical-align: middle;
1531
}
1532

    
1533
div.list table thead tr th {
1534
        background-color: #E6EEEE;
1535
        background-image: url(bg.gif);
1536
        background-repeat: no-repeat;
1537
        background-position: right 11px;
1538
    font-weight: normal; 
1539
        border: 1px solid #FFF;
1540
    border-bottom: none;
1541
        padding: 4px;
1542
    text-align: left;
1543
    vertical-align: middle;
1544
        cursor: pointer;
1545
}
1546

    
1547
div.list table thead .sorting_asc, div.list table thead .sorting_desc {
1548
    background-color: #87AADE;
1549
}
1550

    
1551
div.list table thead .sorting_asc {
1552
        background-image: url(asc.gif);
1553
}
1554

    
1555
div.list table thead .sorting_desc {
1556
        background-image: url(desc.gif);
1557
}
1558

    
1559
div.list table .selection div.expand-icon {
1560
        background-image: url(asc.gif);
1561
        background-repeat: no-repeat;
1562
    position: relative;
1563
        cursor: pointer;
1564
    width: 15px;
1565
    height: 4px;
1566
    left: 19px;
1567
    top: -11px;
1568
}
1569

    
1570
ul.dropdown-selector {
1571
    background-color: #E6EEEE;
1572
    position: absolute;
1573
    margin-left: 1px;
1574
    display: block;
1575
    top: 255px;
1576
    font-size:9pt;
1577
    width:40px;
1578
}
1579

    
1580
ul.dropdown-selector li {
1581
    padding: 4px;
1582
}
1583

    
1584
ul.dropdown-selector li:hover {
1585
    background-color: #87AADE;
1586
}
1587

    
1588
ul.dropdown-selector li a{
1589
    color: black;
1590
    text-decoration: none;
1591
}
1592

    
1593
div.list table span.imagetag { 
1594
    display: none;
1595
}
1596

    
1597
div.list table thead .vmos {
1598
    width: 20px !important;
1599
    vertical-align:middle;
1600
}
1601

    
1602
div.list table .selection {
1603
        width: 20px !important;
1604
        text-align: left;
1605
    background-image: none;
1606
}
1607

    
1608
div.list table thead .vmflavor {
1609
    width: 100px !important;
1610
}
1611

    
1612
div.list table thead .vmgroup {
1613
    width: 40px !important;
1614
}
1615

    
1616
div.list table thead .vmstatus {
1617
    width: 50px !important;
1618
}
1619

    
1620
div.list table thead .vmname {
1621
    width: 70px !important;
1622
}
1623

    
1624
.spinner, .wave {
1625
    clear: right;
1626
    height: 20px;
1627
    float:right !important;
1628
    width: 20px;
1629
    margin: 5px 16px 0 15px !important;   
1630
}
1631

    
1632
.hidden {
1633
    display:none;
1634
}
1635

    
1636
div.actions a.selected, div.actions a.selected:hover {
1637
    display:block !important;
1638
    color: orange !important;
1639
}
1640

    
1641
.action_error .message, .action_error .code {
1642
    display: none;
1643
}
1644

    
1645
.fixed {
1646
    margin: 0 0 0 -32px !important;
1647
    bottom: 0;
1648
    position: fixed;
1649
}
1650

    
1651
/* Networks */
1652
#networkscreate {
1653
    background-color: #6C535D;
1654
    color: #FFFFFF;
1655
    cursor: pointer;
1656
    padding: 6px 24px;
1657
    text-decoration: none;
1658
    width: 125px;
1659
}
1660

    
1661
#networks-container {
1662
    min-height: 500px;
1663
}
1664

    
1665
#networks-createcontainer {
1666
    margin-left: -36px;
1667
    margin-top: 17px;  
1668
}
1669

    
1670
div.network a.action-network-add {
1671
    display: none;
1672
}
1673

    
1674
div.network a.action-netowrk-edit {
1675
    display: none;
1676
}
1677

    
1678
div.network a.action-network-destroy {
1679
    display: none;
1680
}
1681

    
1682
div.network {
1683
    clear: both;
1684
    color: #666666;
1685
    min-height: 65px;
1686
    margin: 30px 0 0 -30px;
1687
    padding: 3px 20px 0 4px;
1688
    width: 500px;
1689
}
1690

    
1691
#network-template {
1692
    margin: 2px 0 0 -30px;
1693
}
1694

    
1695
.network a {
1696
    color: #3d3d3d;
1697
    font-weight: normal;
1698
    text-decoration: none;
1699
    font-size: 9pt;
1700
}
1701

    
1702
.network a:hover {
1703
    color: #000;
1704
    text-decoration: underline;
1705
}
1706

    
1707
#networks-container .name {
1708
    text-decoration: none !important;
1709
    margin-bottom: 25px;
1710
    color: #000000;
1711
    margin-top: -4px;
1712
}
1713

    
1714
.state {
1715
    float: right;
1716
}
1717

    
1718
.state div {
1719
    text-align: right;
1720
    margin-right: 3px;
1721
}
1722

    
1723
div.network div.actions {
1724
    float: right;
1725
    width: 100px;
1726
    margin:0px -120px 0 0;
1727
    font-weight: normal;
1728
}
1729

    
1730
div.network div.actions a {
1731
    color: transparent;
1732
    margin: 0 0 5px 8px;
1733
    display: block;
1734
}
1735

    
1736
div.actions a.enabled:hover{
1737
    color: black !important;
1738
    text-decoration: underline;
1739
    display: block;
1740
}
1741

    
1742
.network:hover .actions a {
1743
    color: #3d3d3d;
1744
    display: block;
1745
}
1746

    
1747
div.network div.display a{
1748
    color: #3d3d3d;
1749
    display: block;
1750
}
1751

    
1752
div.network div.actions a.selected:hover {
1753
    color: orange;
1754
}
1755

    
1756
.network:hover {
1757
    background-color:#dcdcdc;
1758
}
1759

    
1760
#internet-separator {
1761
    width: 510px;
1762
    height: 5px;
1763
    background-color: #6C535D;
1764
    margin-left: -36px;
1765
    margin-top: 20px;
1766
}
1767

    
1768
.network-logos {
1769
    float:left;
1770
    padding-right: 10px;
1771
}
1772

    
1773
#networks-container .settings {
1774
    color: #000000;
1775
}
1776

    
1777
#networks-container .network-type {
1778
    float: right;
1779
    margin-top: -4px;
1780
    margin-right: 15px;
1781
}
1782

    
1783
#networks-container .indicator {
1784
    background-color: #87AADE;
1785
    border-color: white;
1786
    border-style: solid;
1787
    border-width: 2px 3px 2px 2px;
1788
}
1789

    
1790
.state div {
1791
    margin-right: 3px;
1792
    text-align: right;
1793
}
1794

    
1795
div.indicator {
1796
    clear: none;
1797
    float: right;
1798
    height: 11px;
1799
    margin: 3px -1px;
1800
    width: 10px;
1801
}
1802

    
1803
#private-networks {
1804
    margin-top: 20px;
1805
}
1806

    
1807
span.rename-network, span.configure {
1808
    background-repeat: no-repeat;
1809
    color: transparent;
1810
    font-size: 9pt;
1811
    font-weight: normal;
1812
    margin-left: 10px;
1813
    padding-left: 10px;
1814
    text-align: left;
1815
}
1816

    
1817
span.rename-network {
1818
    cursor: pointer;
1819
}
1820

    
1821
div.name:hover span.rename-network {
1822
    color: #3D3D3D;
1823
    margin-top: 0.4em;
1824
    background-image: url(/static/pencil.png);
1825
    background-position: 0 3px;
1826
}
1827

    
1828
.network:hover a.rename {
1829
    color: #3d3d3d;
1830
}
1831

    
1832
.action-network-destroy {
1833
    margin-top: 17px !important;
1834
}
1835

    
1836
.network-separator {
1837
    background-color: #DCDCDC;
1838
    height: 1px;
1839
    margin: 2px 0 0 -5px;
1840
    width: 480px;
1841
}
1842

    
1843
.network-contents {
1844
    margin-left: -4px;
1845
    width: 524px;
1846
    clear: both;
1847
    padding-bottom: 7px;
1848
}
1849

    
1850
.network-machine .state div {
1851
    text-align: left;
1852
}
1853

    
1854
.network-machine {
1855
    margin-left: 73px;
1856
    padding-bottom: 5px;
1857
    padding-left: 5px;
1858
    padding-top: 10px;
1859
    margin-top: 2px;
1860
}
1861

    
1862
.network-machine .logo {
1863
    float:left;
1864
    padding-right: 10px;
1865
}
1866

    
1867
#networks-container .machine-name {
1868
    text-decoration: none !important;
1869
    margin-bottom: 10px;
1870
    color: #000000;
1871
    margin-top: -4px;
1872
}
1873

    
1874
div.network div.machine-actions {
1875
    float: right;
1876
    width: 100px;
1877
    margin:0px -100px 0 0;
1878
    font-weight: normal;
1879
}
1880

    
1881
.discreet {
1882
    color: #969696;
1883
}
1884

    
1885
.network-contents-start-separator {
1886
    height: 3px;
1887
    background-color: #87AADE;
1888
    margin-bottom: 15px;
1889
    margin-left: 78px;
1890
    width: 425px;
1891
}
1892

    
1893
.network-contents-end-separator {
1894
    height: 3px;
1895
    background-color: #87AADE;
1896
    margin-top: 7px;
1897
    margin-left: 15px;
1898
    width: 488px;
1899
}
1900

    
1901
.network-machine .state {
1902
    margin-right: 18px;
1903
}
1904

    
1905
.network-machine .state .status {
1906
    margin-bottom: 4px;
1907
}
1908

    
1909
.machine-name .name {
1910
    margin-top: -10px !important;
1911
}
1912

    
1913
.machine-name .namecontainer {
1914
    line-height: 18px;
1915
    margin-bottom: 20px;
1916
}
1917

    
1918
.network-machine:hover {
1919
    background-color: #B3B3B3;
1920
}
1921

    
1922
.machines {
1923
    margin: 2px 0 0 73px;
1924
    width: 430px;
1925
    background-color: #B3B3B3;
1926
}
1927

    
1928
.firewall-on {
1929
    color: #42E342;
1930
}
1931

    
1932
.firewall-off {
1933
    color: #F82E2E;
1934
}
1935

    
1936
div.network-machine div.machine-actions a {
1937
    color: transparent;
1938
    margin: 0 0 5px 8px;
1939
    display: block;
1940
}
1941

    
1942
div.network-machine div.machine-actions a:hover {
1943
    color: black !important;
1944
    text-decoration: underline;
1945
    display: block;
1946
}
1947

    
1948
.network-machine:hover .machine-actions a {
1949
    color: #3d3d3d;
1950
    display: block;
1951
}
1952

    
1953
.firewall-content {
1954
    color: black;
1955
    font-size: 60%;
1956
    margin-left: 60px;
1957
}
1958

    
1959
.firewall-content .checkbox-legends {
1960
    vertical-align: text-top;
1961
}
1962

    
1963
.checkbox-legends a {
1964
    color: black;
1965
    text-decoration: underline;
1966
    font-size: 100%;
1967
}
1968

    
1969
.machine-connect {
1970
    color:black !important;
1971
    text-decoration: underline !important;
1972
}
1973

    
1974
.firewall-contents-start-separator {
1975
    background-color: #808080;
1976
    height: 2px;
1977
    margin-bottom: 5px;
1978
    width: 365px;
1979
}
1980

    
1981
.firewall-contents-end-separator {
1982
    background-color: #808080;
1983
    height: 2px;
1984
    margin-left: -60px;
1985
    margin-top: 5px;
1986
    width: 425px;
1987
}
1988

    
1989
.firewall-apply {
1990
    background-color: #666666;
1991
    border: medium none;
1992
    float: right;
1993
    font-size: 105%;
1994
    height: 18px;
1995
    margin-right: 20px;
1996
    margin-top: 3px;
1997
    width: 75px;
1998
}
1999

    
2000
.name-div {
2001
    margin-left: 70px;
2002
    margin-bottom: 20px;
2003
}
2004

    
2005
.machine-name-div {
2006
    margin-bottom: 22px;
2007
    margin-left: 60px;
2008
}
2009

    
2010
/* Metadata */
2011

    
2012
.info-content {
2013
    height: 90px;
2014
    width: 540px;
2015
}
2016

    
2017
.metadata-separator {
2018
    background-color: #808080;
2019
    height: 3px;
2020
    margin: 5px 0 0 14px;
2021
    width: 509px;
2022
}
2023

    
2024
.metadata-container {
2025
    line-height: 12px;
2026
    margin-left: 14px;
2027
    margin-top: 2px;
2028
    height: 80px;
2029
}
2030

    
2031
.metadata-column {
2032
    border-right: 1px solid #CECECE;
2033
    color: black;
2034
    float: left;
2035
    font-size: 60%;
2036
    margin-top: 3px;
2037
    height: 70px;
2038
    padding-bottom: 5px;
2039
}
2040

    
2041
.vm-stats, .vm-labels {
2042
    width: 109px;
2043
    padding-left: 10px;
2044
}
2045

    
2046
.vm-details {
2047
    width: 129px;
2048
}
2049

    
2050
.vm-metadata {
2051
    padding-left: 10px;
2052
    width: 129px;
2053
    border: none;
2054
}
2055

    
2056
.metadata-left {
2057
    float:left;
2058
    width: 50px;
2059
    height: 65px;
2060
}
2061

    
2062
.metadata-right {
2063
    width: 73px;
2064
    float:left;
2065
    height: 35px;
2066
    padding-left: 5px;
2067
        position:relative;
2068
        overflow:hidden;
2069
}
2070

    
2071
.metadata-right .items {
2072
        position:absolute;
2073
        height:20000em;
2074
}
2075

    
2076
.metadata-keys-container {
2077
    height: 65px;
2078
    float: left;
2079
}
2080

    
2081
.metadata-actions, .scrollable {
2082
    padding-left: 5px;
2083
}
2084

    
2085
/* root element for scrollable */
2086
.scrollable {
2087

    
2088
        /* required settings */
2089
        position:relative;
2090
        overflow:hidden;
2091

    
2092
        /* vertical scrollables have typically larger height than width but not now */
2093
        height: 35px;
2094
        width: 73px;
2095
}
2096

    
2097
/* root element for scrollable items */
2098
.scrollable .items {
2099
        position:absolute;
2100

    
2101
        /* this time we have very large space for the height */
2102
        height:20000em;
2103
}
2104

    
2105

    
2106