Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ e4f426f1

History | View | Annotate | Download (24.3 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:relative;
258
}  
259

    
260
/* scrollable items */
261
#wizard .items {
262
        width:20000em;
263
        clear:both;
264
        position:absolute;
265
}
266

    
267
/* validation error message bar. positioned on the top edge */
268
#drawer {
269
        overflow:visible;
270
        position:fixed;
271
        left:0;
272
        top:0;
273
}
274

    
275
/* scrollable items */
276
#wizard .items {
277
        width:20000em;        
278
        clear:both;        
279
        position:absolute;        
280
    display:block;
281
    padding: 0;
282
    margin: 0;
283
    border:none;
284
    background:none;
285
}
286

    
287
/* single item */
288
#wizard .page {        
289
    padding: 15px 40px 20px 15px;
290
        width:447px;
291
        float:left;        
292
    display:block;
293
    border:none;
294
    background-color: transparent;
295
}
296

    
297
/* title */
298
#wizard h2 {
299
    color: black;
300
    font-size: 100%;
301
    font-weight: normal;
302
    padding-left: 20px;
303
}
304

    
305
#wizard li {
306
        margin-bottom:1.2em;
307
}
308

    
309
#wizard .pane li {
310
    margin: 0;
311
}
312

    
313
#wizard label {
314
        font-size:16px;        
315
        display:block;
316
    clear: both;
317
}
318

    
319
#wizard label strong {
320
        position:relative;
321
        top:-1px;
322
    font-size: 80%;
323
    font-weight: normal;
324
}
325

    
326
#wizard label em {
327
        font-size:9pt;
328
        color:#666;        
329
        font-style:normal;
330
}
331

    
332
#wizard .text {
333
        width: 270px;
334
        padding: 5px;
335
    margin-top: 10px;
336
        border: 1px solid #ccc;
337
        color: #456;
338
        letter-spacing: 1px;
339
}
340

    
341
#wizard select {
342
        border:1px solid #ccc;
343
        width:94%;        
344
        padding:4px;
345
    display: none;
346
}
347

    
348
#wizard .double label { 
349
        width:50%;
350
        float:left;
351
}
352

    
353
#wizard .double .text {
354
        width:93%;        
355
}
356

    
357
#wizard .clearfix {
358
        clear:left;
359
        padding-top:10px;        
360
}
361

    
362
#wizard .right {
363
        float:right;                
364
}
365

    
366
#wizard .error {
367
        border:1px solid red;                
368
}
369

    
370
#wizard a div.image {
371

    
372
}
373

    
374
#wizard a:hover div.image {
375
    background-color: #999;
376
}
377

    
378
.selecteddiv {
379
    background-color: #999 !important;
380
}
381

    
382
#wizard label a:hover strong {
383
    color: white;
384
}
385

    
386
#wizard div.image span.size {
387
    font-size: 9pt;
388
    color: #666;
389
}
390

    
391
#wizard div.image .radio {
392
    float: left;
393
    margin-top: 10px;
394
}
395

    
396
#wizard div.image span.image-id, #wizard div.image span.description {
397
    font-size: 9pt;
398
    color: #666;
399
    font-weight: normal;
400
    display:inline;
401
}
402

    
403
#wizard a:hover div.image span.image-id, #wizard a:hover div.image span.description, #wizard a:hover div.image span.size {
404
    color: white;
405
}
406

    
407
#wizard .cost {
408
    color: #666;
409
    margin-top: 40px;
410
    clear:both;
411
    padding-left: 15px;
412
    font-size: 95%;
413
}
414

    
415
#wizard #status {
416
        height: 50px;
417
        background: #666;
418
    width: 450px;
419
}
420

    
421
#wizard .headernumber {
422
    font-size: 480%;
423
    font-weight: normal;
424
}
425

    
426
#wizard .headerbody {
427
    font-size: 110%;
428
    font-weight: normal;
429
    display: inline;
430
    margin-top: 20px;
431
    position: absolute;
432
}
433

    
434
#wizard .first {
435
    margin-left: -7px;
436
}
437

    
438
#wizard .third {
439
    margin-top: -2px !important;
440
}
441

    
442
#wizard .topruler {
443
    background-color: #CCCCCC;
444
    border: 0 none;
445
    height: 4px;
446
    margin-left: -1px;
447
    width: 447px;
448
    margin-bottom: 6px;
449
    margin-top: 6px;
450
}
451

    
452
#wizard .bottomruler {
453
    background-color: #CCCCCC;
454
    border: 0 none;
455
    height: 4px;
456
    margin-left: -1px;
457
    width: 447px;
458
}
459

    
460
#wizard #cancel {
461
    text-align: center;
462
}
463

    
464
#wizard #start {
465
    text-align: center;
466
    background-color: #FF6600;
467
    border-color: #FF6600;
468
}
469

    
470
#wizard #start:hover {
471
    background-color: #FF9651;
472
    border-color: #FF9651;
473
}
474

    
475
.page ul {
476
    height: 270px;
477
    overflow: auto;
478
}
479

    
480
.panes ul.pane {
481
    height: 220px;
482
}
483

    
484
.page ul.tabs {
485
    overflow: hidden;
486
    height: auto;
487
    margin-bottom: 2px;
488
    margin-top: -5px;
489
}
490

    
491
.page ul.tabs li {
492
    float: right;
493
    margin: 0 0.2em;
494
}
495

    
496
#status li {
497
        float: left;
498
        color: #7D7D7D;
499
    padding: 0px 72px 0 40px;
500
    margin-top: -1px;
501
}
502

    
503
#status li.active .headernumber {
504
    color: #FFFFFF;
505
}
506

    
507
#status li.active .headerbody {
508
    color: #5599FF;
509
}
510

    
511
div.image-container {
512
    border-bottom: 1px solid #CCCCCC;
513
    margin-left: 10px;
514
    margin-right: 10px;
515
}
516

    
517
#page2-container {
518
    background-color: #ECECEC;
519
    padding-top: 25px;
520
    height: 180px;
521
}
522

    
523
#page3-container {
524
    background-color: #ECECEC;
525
    padding-left: 50px;
526
    height: 244px;
527
    margin-bottom: 32px;
528
}
529

    
530
/* slider root element */
531
.slider {
532
    border: 1px solid #666;
533
    cursor: pointer;
534
    display: inline !important;
535
    float: left;
536
    margin: 5px 0 20px 10px;
537
    position: relative;
538
    width: 250px;
539
}
540

    
541
.sliders {
542
    float:left;
543
    width: 40px;
544
    margin-left: 10px;  
545
    margin-top: 3px;
546
}
547

    
548
.units {
549
    padding-left:10px;
550
}
551

    
552
.slider-container {
553
    padding-bottom: 15px;
554
    margin-left: 5px;
555
}
556

    
557
/* drag handle */
558
.handle {
559
    -moz-box-shadow: 0 0 2px #000000;
560
    background: url("../static/h30.png") repeat-x scroll 0 0 #FFFFFF;
561
    border: 1px solid #000000;
562
    cursor: move;
563
    display: block;
564
    height: 10px;
565
    margin-top: -8px;
566
    position: absolute;
567
    width: 8px;
568
}
569

    
570
/* progress bar (enabled with progress: true) */
571
.progress {
572
        height: 3px; 
573
        background-color: #676767;
574
}
575

    
576
/* the input field */
577
.range {
578
        float: left;
579
        font-size: 100%;
580
        margin: -3px 0 0 15px;
581
    padding: 2px 10px 2px 0;
582
        text-align: right;
583
        width: 40px;
584
}
585

    
586
.selectedrange {
587
    border-color: #5599FF;
588
}
589

    
590
#credits-indicator {
591
    background-color: #ECECEC;
592
    float: none;
593
    margin: 0 0 0 10px;
594
    border: 1px solid #999;
595
}
596

    
597
div.machine {
598
    clear: both;
599
    margin: 5px 0 0 -32px;
600
    padding: 3px 4px 0;
601
    width: 523px;
602
    color: #666;
603
    height: 65px;
604
}
605

    
606
.machine a {
607
    color: #3d3d3d;
608
    font-weight: normal;
609
    text-decoration: none;
610
    font-size: 9pt;
611
}
612

    
613
.machine a:hover {
614
    color: #000;
615
    text-decoration: underline;
616
}
617

    
618
.state {
619
    float: right;
620
}
621

    
622
.state div {
623
    text-align: right;
624
    margin-right: 3px;
625
}
626

    
627
div.machine div.actions {
628
    float: right;
629
    width: 70px;
630
    margin:0px -70px 0 0;
631
    font-weight: normal;
632
}
633

    
634
div.machine div.actions a {
635
    color: transparent;
636
    margin: 0 0 5px 8px;
637
    display: block;
638
}
639

    
640
div.machine div.actions a.action-shutdown {
641
    margin-bottom: 18px;
642
    display: block;
643
}
644

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
751
a.name:hover span.rename {
752
    color: #3D3D3D;
753
    margin-top: 0.4em;
754
    background-image: url(/static/pencil.png);
755
}
756

    
757

    
758
a.settings:hover span.configure {
759
    color: #3D3D3D;
760
}
761

    
762
button {
763
    background-color: #87AADE;
764
    border: 1px solid #87AADE;
765
    color: #FFFFFF;
766
    cursor: pointer;
767
    height: 23px;
768
    width: 120px;
769
}
770

    
771
button.next:hover {
772
    background-color: #68A4FF;
773
    border-color: #68A4FF;
774
}
775

    
776
button.prev:hover {
777
    background-color: #888888;
778
    border-color: #888888;
779
}
780

    
781
button.next {
782
    background-color: #5599FF;
783
    border-color: #5599FF;
784
    text-align: right;
785
}
786

    
787
button.prev {
788
    background-color: #666;
789
    border:none;
790
    margin-left: -1px;
791
    text-align: left;
792
}
793

    
794
.image-logo {
795
    float: left;
796
    margin-right: 1em;
797
    margin-left: 1.5em;
798
    margin-top: 4px;
799
}
800

    
801
div.image {
802
    clear: both;
803
    display: block;
804
    margin-bottom: 3px;
805
    margin-top: 3px;
806
    padding: 5px;
807
}
808

    
809
div#view-select {
810
    float: right;
811
    clear: both;
812
    color: white;
813
    margin-top: -42px;
814
    margin-right: -36px;
815
    font-size: 9pt;
816
    background-color: #87aade;
817
    padding: 5px 10px;
818
    display:none;
819
}
820

    
821
a#standard, a#list, a#single {
822
    text-decoration: none;
823
    height: 15px;
824
    width: 17px;
825
    padding: 0px 8px 1px 9px;
826
    font-size: 11px;
827
}
828

    
829
div#view-select a {
830
    color:#5f8dd3;
831
}
832

    
833
a#list:hover {
834
    background: #5f8dd3;
835
}
836

    
837
a#standard:active, a#list:active {
838
    color:white;
839
}
840

    
841
a#standard {
842
    background: url(/static/icon-view.png) no-repeat -36px 0;
843
}
844

    
845
a#list {
846
    background: url(/static/list-view.png) no-repeat -36px 0;
847
}
848

    
849
a#single {
850
    background: url(/static/single-view.png) no-repeat -36px 0;
851
}
852

    
853
a#standard:hover {
854
    background: url(/static/icon-view.png) no-repeat -18px 0;
855
}
856

    
857
a#list:hover {
858
    background: url(/static/list-view.png) no-repeat -18px 0;
859
}
860

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

    
865
a#standard.activelink {
866
    background: url(/static/icon-view.png) no-repeat 0px 0;
867
}
868

    
869
a#list.activelink {
870
    background: url(/static/list-view.png) no-repeat 0px 0;
871
}
872

    
873
a#single.activelink {
874
    background: url(/static/single-view.png) no-repeat 0px 0;
875
}
876

    
877
#machinetype {
878
    background-color: #CCCCCC;
879
    height: 25px;
880
    margin-bottom: 4px !important;
881
}
882

    
883
div.machine-type {
884
    float: left;
885
    margin: 4px 18px 20px;
886
}
887

    
888
.machine-type .active {
889
    color: #FFFFFF
890
}
891

    
892
#machinesview {
893
    min-height: 270px;
894
    margin-top: 30px;
895
}
896

    
897
.list#machinesview {
898
    margin-left: -20px;
899
    display:none;
900
}
901

    
902
#machinesview_wrapper.list {
903
    margin-left: -20px;
904
}
905

    
906
#machinesview_wrapper {
907
    min-height: 270px;
908
}
909

    
910
#machinesview_content {
911
    display:none;
912
}
913

    
914
.list-machines {
915
    min-width: 515px;
916
}
917

    
918
#emptymachineslist {
919
    display:none; 
920
    color: #A0A0A0;
921
    background-image: url(/static/emptydegradebg.png);
922
    width: 400px;
923
    margin-top: 40px;
924
    padding: 5px;
925
    padding-left: 10px;
926
    margin-left: -10px;
927
}
928

    
929
#welcomeheader {
930
    color:white;
931
}
932

    
933
.welcomebody {
934
    color:black;
935
    font-size:80%;
936
}
937

    
938
.welcomebody a {
939
    color:black;
940
}
941

    
942
.welcomefooter {
943
    color:black;
944
    font-size:60%;
945
}
946

    
947
.welcomefooter a {
948
    color:black;
949
}
950

    
951
.emptycreatecontainer {
952
    margin-left: 430px !important;
953
    position: absolute;
954
    margin-top: 40px;
955
    width: 180px;
956
    background-color: #CCCCCC;
957
    padding: 5px;
958
    padding-left: 10px;
959
}
960

    
961
.emptycreate {
962
    margin: 20px 10px 5px 0 !important;
963
}
964

    
965
#createbody {
966
    display:none;
967
    font-size: 80%;
968
}
969

    
970
div.list label img {
971
    margin: 5px 5px -3px 0;
972
}
973

    
974
div.list label {
975
    color: #3D3D3D;
976
    font-size: 9pt;
977
}
978

    
979
div.list .state {
980
    margin-top: 7px;
981
    margin-right: 10px;
982
}
983

    
984
div.list table tbody {
985
    margin-top: 8px;
986
}
987

    
988
div.list .stopped {
989
    margin-top: 8px;
990
}
991

    
992
/* root element for tabs  */
993
#wizard ul.tabs { 
994
    margin-right: -1px;
995
    float: right;                         
996
}
997

    
998
#wizard div.panes {
999
    height: 252px;
1000
    margin-bottom: 6px;
1001
    clear:both;
1002
}
1003

    
1004
.typebody {
1005
    font-size: 80%;
1006
    font-weight: normal;
1007
    position: relative;
1008
    top: -3px;
1009
}
1010

    
1011
.typehover {
1012
    color: #FFFFFF;
1013
}
1014

    
1015
#label-name {
1016
    margin-top: 15px;
1017
}
1018

    
1019
/* single tab */
1020
#wizard ul.tabs li {  
1021
    margin-bottom: 0; 
1022
        list-style-type:none;
1023
    float: left;        
1024
}
1025

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

    
1041
#wizard ul.tabs a:hover {
1042
        color: #FFFFFF;
1043
    background-color:#AAAAAA;
1044
}
1045
        
1046
/* selected tab */
1047
#wizard ul.tabs a.current {
1048
        color: white;
1049
    background-color: #666;        
1050
        cursor: default;
1051
}
1052

    
1053
#wizard #standard-images {
1054
    background-color: #ECECEC;
1055
}
1056

    
1057
div.list div.actions {
1058
    display: none;
1059
    clear: left;
1060
    float: right;
1061
    margin-right: -20px;
1062
    margin-top: 37px;
1063
    text-align: right;
1064
    width: 150px;
1065
}
1066

    
1067
div.list div.actions a {
1068
    clear: left;
1069
    color: #D3D3D3;
1070
    display: block;
1071
    font-size:9pt;
1072
    margin-bottom: 2px;
1073
}
1074

    
1075
div.list div.actions a.enabled {
1076
    color: #3D3D3D;
1077
}
1078

    
1079
div.list div.actions a.enabled:hover{
1080
    cursor: pointer;
1081
    color: black;
1082
    text-decoration: underline;
1083
}
1084

    
1085
input.machine {
1086
    width: 13px;
1087
    height: 13px;
1088
    top: -1px;
1089
    overflow: hidden;
1090
}
1091

    
1092
/* metadata editing boxes */
1093
.meta-modal {
1094
    background-color:#fff;
1095
    display:none;
1096
    padding:1em;
1097
    text-align:left;
1098
    width:380px;
1099
    height:360px;
1100
    font-size: 80%;
1101
}
1102

    
1103
.meta-modal .close {
1104
        background-image: url(/static/close-grey.png);
1105
        position: absolute;
1106
        right: -15px;
1107
        top: -17px;
1108
        cursor: pointer;
1109
        height: 32px;
1110
        width: 32px;
1111
}
1112

    
1113
.meta-modal h3 {
1114
    font-weight: normal;
1115
}
1116

    
1117
.meta-modal hr {
1118
    background-color: #666;
1119
    border: 0 none;
1120
    height: 5px;
1121
    margin: 0; 
1122
}
1123

    
1124
.meta-modal hr.topruler {
1125
    margin-top: 5px; 
1126
}
1127

    
1128
.meta-modal hr.fatruler {
1129
    height: 20px;
1130
    margin-top: 2px;
1131
    margin-bottom: 20px;
1132
}
1133

    
1134
.meta-modal hr.meta-separator {
1135
    width: 320px;
1136
    margin: 5px 0 2px 0;
1137
}
1138

    
1139
.meta-modal div.bottomruler {
1140
    background-color: #666;
1141
    height: 20px;
1142
    margin-top: 40px;
1143
}
1144

    
1145
.meta-modal div.content {
1146
    height: 248px;
1147
    width: 345px;
1148
    margin-left: 15px;
1149
}
1150

    
1151
.meta-modal p {
1152
    margin-left: 7px;
1153
}
1154

    
1155
.meta-modal button {
1156
    font-size: 80%;
1157
    width: 87px;
1158

    
1159
    float: right;
1160
    background-color: #5599FF;
1161
    border: 0px solid #5599FF;
1162
    padding: 0;
1163
    margin-right: 25px;
1164
}
1165

    
1166
.meta-modal button.remove {
1167
    height: 15px;
1168
    width: 70px;
1169
    background-color: #d35f5f;
1170
    border-color: #d35f5f;
1171
    margin-top: 2px;
1172
}
1173

    
1174
.meta-modal button.edit {
1175
    height: 15px;
1176
    width: 70px;
1177
    background-color: #666;
1178
    border-color: #666;
1179
    margin-top: -14px;
1180
}
1181

    
1182
.meta-modal button.create {
1183
    height: 23px;
1184
    margin: 28px 44px 0 0;
1185
}
1186

    
1187
.meta-modal input {
1188
    font-size: 80%;
1189
    font-style: italic;
1190
    text-align: right;
1191
    color: #ccc;
1192
}
1193

    
1194
.meta-modal input.key {
1195
    width: 279px;
1196
    margin-bottom: -3px;
1197
}
1198

    
1199
.meta-modal input.value {
1200
    width: 267px;
1201
    height: 170px;
1202
    overflow: auto;
1203
}
1204

    
1205
.meta-modal label.meta-value {
1206
    vertical-align: top;
1207
}
1208

    
1209
.meta-modal button.save {
1210
    margin-top: 29px;
1211
}
1212

    
1213
.meta-modal button.cancel {
1214
    float: left;
1215
    margin: 29px 0 0 25px;
1216
    background-color: #d35f5f;
1217
    border-color: #d35f5f;
1218
}
1219

    
1220

    
1221
/* notification box */
1222
#error-success, #yes-no {
1223
    height: 150px;
1224
    border: 5px solid #87AADE;
1225
    z-index: 9999;
1226
}
1227

    
1228
#error-success p, #yes-no p, #yes-no button {
1229
    margin-top: 15px;
1230
}
1231

    
1232
#error-success strong {
1233
    color: #F49C1A;
1234
}
1235

    
1236
#error-success div {
1237
    height: 142px;
1238
    overflow-y: auto;
1239
    overflow-x: hidden;
1240
}
1241

    
1242
#error-success .close {
1243
        background-image: url(/static/close.png);
1244
        position: absolute;
1245
        right: -19px;
1246
        top: -20px;
1247
        cursor: pointer;
1248
        height: 35px;
1249
        width: 35px;
1250
}
1251

    
1252
/* Confirmation boxes */
1253
div.confirm_single, div.confirm_multiple {
1254
    display: none;
1255
    background-color: #DCDCDC;
1256
    color: orange;
1257
    font-size: 9pt;
1258
}
1259

    
1260
div.action_error {
1261
    float: right;
1262
    width: 80px;
1263
    height: 60px;
1264
    padding: 5px;
1265
    margin: -65px -165px 0 0;
1266
    display: none;
1267
    background-color: #DCDCDC;
1268
    font-size: 9pt;
1269
    color: black;
1270
    line-height: 1.5;
1271
}
1272

    
1273
div.action_error button.details {
1274
    margin: 5px 0 0 0px;
1275
    padding: 0 15px;
1276
}
1277

    
1278
.orange {
1279
    color: orange;
1280
}
1281

    
1282
div.confirm_single button, div.confirm_multiple button, div.action_error button{
1283
    font-size: 9pt;
1284
    background-color: #DCDCDC;
1285
    border: 1px solid #a5a5a5;
1286
    color: #3D3D3D;
1287
    cursor: pointer;
1288
    padding: 0px;
1289
    height: 20px !important;
1290
}
1291

    
1292
div.confirm_single button, .action_error button {
1293
    width: 80px !important;
1294
}
1295
div.confirm_single button.yes, div.confirm_multiple button.yes {
1296
    border-color: orange;
1297
    padding: 0 12px;
1298
}
1299

    
1300
div.confirm_single button.yes:hover, div.confirm_multiple button.yes:hover {
1301
    background-color: orange;
1302
}
1303

    
1304
div.confirm_single button.no, div.confirm_multiple button.no {
1305
    padding: 0px 16px;
1306
}
1307

    
1308
div.confirm_single button.no:hover, div.confirm_multiple button.no:hover, div.action_error button.details:hover {
1309
    background-color: #a5a5a5;
1310
}
1311

    
1312
div.confirm_single{
1313
    float: right;
1314
    width: 90px;
1315
    height: 70px;
1316
    margin: -65px -165px 0 0;
1317
}
1318

    
1319
div.confirm_single button.yes {
1320
    margin: 5px 0 0 5px;
1321
}
1322

    
1323
div.confirm_single button.no {
1324
    margin: 20px 0 0 5px;
1325
}
1326

    
1327
div.action_error {
1328
    display: none;
1329
}
1330

    
1331
div.confirm_multiple {
1332
    width: 692px;
1333
    height: 28px;
1334
    margin: 0 0 10px -32px;
1335
}
1336

    
1337
div.confirm_multiple p {
1338
    float: left;
1339
    margin: 7px 0 0 200px;
1340
}
1341

    
1342
div.confirm_multiple button {
1343
    float: right;
1344
    margin: 4px 5px 0 0;
1345
}
1346

    
1347
div.confirm_multiple button.no {
1348
    margin-right: 15px;
1349
}
1350

    
1351
div#user{
1352
    float:right;
1353
    clear: both;
1354
    color: #a0a0a0;
1355
    font-size: 9pt;
1356
    margin-top: 16px;
1357
}
1358

    
1359
div#user a{
1360
    color: #a0a0a0;
1361
    text-decoration: none;
1362
}
1363

    
1364
div#user a.current_lang {
1365
    color: #d3d3d3;
1366
}
1367

    
1368
.separator {
1369
    background-color: #87AADE;
1370
    height: 10px;
1371
    width: 700px;
1372
    margin: 0 0 0 -36px;
1373
}
1374

    
1375
#mini.separator {
1376
    width: 535px;
1377
    height: 5px;
1378
    margin: 17px 0 17px -36px;
1379
    display: none;
1380
}
1381

    
1382
#disks.separator {
1383
    background-color: #dea842;
1384
}
1385

    
1386
#images.separator {
1387
    background-color: #87a06d;
1388
}
1389

    
1390
#networks.separator {
1391
    background-color: #9d6d6a;
1392
}
1393

    
1394
#desktops.separator {
1395
    background-color: #dea842;
1396
}
1397

    
1398
#apps.separator {
1399
    background-color: #87a06d;
1400
}
1401

    
1402
.machine .separator {
1403
    width: 508px;
1404
    height: 1px;
1405
    margin: 8px 0 0 15px;
1406
    background-color: #DCDCDC;
1407
}
1408

    
1409
.machine h5 {
1410
    margin: 0px 60px 1px 84px;
1411
}
1412

    
1413
.machine .settings {
1414
    margin-top: 22px;
1415
}
1416

    
1417
#spinner {
1418
    background: url("../static/progress.gif");
1419
    height: 31px;
1420
    width: 31px;
1421
    margin-left: 298px;
1422
    margin-top: 160px; 
1423
}
1424

    
1425
/* tables in list view */
1426
div.list div.dataTables_filter,  div.list div.dataTables_filter input{
1427
    font-size: 9pt;
1428
    display: none;
1429
}
1430

    
1431
div.list div.dataTables_filter input{
1432
    height: 12px;
1433
    margin-bottom: 12px;
1434
}
1435

    
1436
div.list table {
1437
    width: 515px;
1438
    font-size: 9pt;
1439
}
1440

    
1441
div.list table tbody td {
1442
        color: #3D3D3D;
1443
        padding:6px;
1444
        background-color: #FFF;
1445
        vertical-align: middle;
1446
}
1447

    
1448
div.list table thead tr th {
1449
        background-color: #E6EEEE;
1450
        background-image: url(bg.gif);
1451
        background-repeat: no-repeat;
1452
        background-position: center right;
1453
    font-weight: normal; 
1454
        border: 1px solid #FFF;
1455
        padding: 4px;
1456
    text-align: left;
1457
    vertical-align: middle;
1458
        cursor: pointer;
1459
}
1460

    
1461
div.list table thead .sorting_asc, div.list table thead .sorting_desc {
1462
    background-color: #87AADE;
1463
}
1464

    
1465
div.list table thead .sorting_asc {
1466
        background-image: url(asc.gif);
1467
}
1468

    
1469
div.list table thead .sorting_desc {
1470
        background-image: url(desc.gif);
1471
}
1472

    
1473
div.list table #selection div.expand-icon {
1474
        background-image: url(asc.gif);
1475
        background-repeat: no-repeat;
1476
    position: relative;
1477
        cursor: pointer;
1478
    width: 15px;
1479
    height: 4px;
1480
    left: 19px;
1481
    top: -11px;
1482
}
1483

    
1484
ul.dropdown-selector {
1485
    background-color: #E6EEEE;
1486
    position: absolute;
1487
    margin-left: 1px;
1488
    display: block;
1489
    top: 255px;
1490
    font-size:9pt;
1491
    width:40px;
1492
}
1493

    
1494
ul.dropdown-selector li {
1495
    padding: 4px;
1496
}
1497

    
1498
ul.dropdown-selector li:hover {
1499
    background-color: #87AADE;
1500
}
1501

    
1502
ul.dropdown-selector li a{
1503
    color: black;
1504
    text-decoration: none;
1505
}
1506

    
1507
div.list table thead #os {
1508
    width: 20px !important;
1509
    vertical-align:middle;
1510
}
1511

    
1512
div.list table span.imagetag { 
1513
    display: none;
1514
}
1515

    
1516
div.list table #selection {
1517
        width: 20px !important;
1518
        text-align: left;
1519
    background-image: none;
1520
}
1521

    
1522
div.list table thead #flavor {
1523
    width: 100px !important;
1524
}
1525

    
1526
div.list table thead #group {
1527
    width: 40px !important;
1528
}
1529

    
1530
div.list table thead #status {
1531
    width: 50px !important;
1532
}
1533

    
1534
div.list table thead #name {
1535
    width: 50px !important;
1536
}
1537

    
1538
.spinner, .wave {
1539
    clear: right;
1540
    height: 20px;
1541
    float:right !important;
1542
    width: 20px;
1543
    margin: 5px 16px 0 15px !important;   
1544
}
1545

    
1546
.hidden {
1547
    display:none;
1548
}
1549

    
1550
div.actions a.selected, div.actions a.selected:hover {
1551
    display:block !important;
1552
    color: orange !important;
1553
}
1554

    
1555
.action_error .message, .action_error .code {
1556
    display: none;
1557
}
1558

    
1559
.fixed {
1560
    margin: 0 0 0 -32px !important;
1561
    bottom: 0;
1562
    position: fixed;
1563
}