Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ 99721d83

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
    color: #222222;
596
}
597

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

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

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

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

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

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

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

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

    
646
div.machine div.actions a.destroy-padding {
647
    margin-top: 46px;
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: 34px;
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
a.name:hover span.rename {
753
    color: #3D3D3D;
754
    margin-top: 0.4em;
755
    background-image: url(/static/pencil.png);
756
}
757

    
758

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1221

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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