Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ aa1e0cab

History | View | Annotate | Download (22.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: 1px inset #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
}
643

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
756

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

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

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

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

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

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

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

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

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

    
820
a#standard, a#list, a#single {
821
    text-decoration: none;
822
    height: 27px;
823
    width: 33px;
824
    padding: 0px 9px;
825
    font-size: 11px;
826
}
827

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1091
#error-success, #yes-no {
1092
    height: 150px;
1093
    border: 5px solid #87AADE;
1094
    z-index: 9999;
1095
}
1096

    
1097
#error-success p, #yes-no p, #yes-no button {
1098
    margin-top: 15px;
1099
}
1100

    
1101
#error-success strong {
1102
    color: #F49C1A;
1103
}
1104

    
1105
#error-success div {
1106
    height: 142px;
1107
    overflow-y: auto;
1108
    overflow-x: hidden;
1109
}
1110

    
1111
#error-success .close {
1112
        background-image: url(/static/close.png);
1113
        position: absolute;
1114
        right: -19px;
1115
        top: -20px;
1116
        cursor: pointer;
1117
        height: 35px;
1118
        width: 35px;
1119
}
1120

    
1121
/* Confirmation boxes */
1122
div.confirm_single, div.confirm_multiple {
1123
    display: none;
1124
    background-color: #DCDCDC;
1125
    color: orange;
1126
    font-size: 9pt;
1127
}
1128

    
1129
div.action_error {
1130
    float: right;
1131
    width: 80px;
1132
    height: 60px;
1133
    padding: 5px;
1134
    margin: -65px -165px 0 0;
1135
    display: none;
1136
    background-color: #DCDCDC;
1137
    font-size: 9pt;
1138
    color: black;
1139
    line-height: 1.5;
1140
}
1141

    
1142
div.action_error button.details {
1143
    margin: 5px 0 0 0px;
1144
    padding: 0 15px;
1145
}
1146

    
1147
.orange {
1148
    color: orange;
1149
}
1150

    
1151
div.confirm_single button, div.confirm_multiple button, div.action_error button{
1152
    font-size: 9pt;
1153
    background-color: #DCDCDC;
1154
    border: 1px solid #a5a5a5;
1155
    color: #3D3D3D;
1156
    cursor: pointer;
1157
    padding: 0px;
1158
    height: 20px !important;
1159
}
1160

    
1161
div.confirm_single button, .action_error button {
1162
    width: 80px !important;
1163
}
1164
div.confirm_single button.yes, div.confirm_multiple button.yes {
1165
    border-color: orange;
1166
    padding: 0 12px;
1167
}
1168

    
1169
div.confirm_single button.yes:hover, div.confirm_multiple button.yes:hover {
1170
    background-color: orange;
1171
}
1172

    
1173
div.confirm_single button.no, div.confirm_multiple button.no {
1174
    padding: 0px 16px;
1175
}
1176

    
1177
div.confirm_single button.no:hover, div.confirm_multiple button.no:hover, div.action_error button.details:hover {
1178
    background-color: #a5a5a5;
1179
}
1180

    
1181
div.confirm_single{
1182
    float: right;
1183
    width: 90px;
1184
    height: 70px;
1185
    margin: -65px -165px 0 0;
1186
}
1187

    
1188
div.confirm_single button.yes {
1189
    margin: 5px 0 0 5px;
1190
}
1191

    
1192
div.confirm_single button.no {
1193
    margin: 20px 0 0 5px;
1194
}
1195

    
1196
div.action_error {
1197
    display: none;
1198
}
1199

    
1200
div.confirm_multiple {
1201
    width: 692px;
1202
    height: 28px;
1203
    margin: 0 0 10px -32px;
1204
}
1205

    
1206
div.confirm_multiple p {
1207
    float: left;
1208
    margin: 7px 0 0 200px;
1209
}
1210

    
1211
div.confirm_multiple button {
1212
    float: right;
1213
    margin: 4px 5px 0 0;
1214
}
1215

    
1216
div.confirm_multiple button.no {
1217
    margin-right: 15px;
1218
}
1219

    
1220
div#user{
1221
    float:right;
1222
    clear: both;
1223
    color: #a0a0a0;
1224
    font-size: 9pt;
1225
    margin-top: 16px;
1226
}
1227

    
1228
div#user a{
1229
    color: #a0a0a0;
1230
    text-decoration: none;
1231
}
1232

    
1233
div#user a.current_lang {
1234
    color: #d3d3d3;
1235
}
1236

    
1237
.separator {
1238
    background-color: #87AADE;
1239
    height: 10px;
1240
    width: 700px;
1241
    margin: 0 0 0 -36px;
1242
}
1243

    
1244
#mini.separator {
1245
    width: 535px;
1246
    height: 5px;
1247
    margin: 17px 0 17px -36px;
1248
    display: none;
1249
}
1250

    
1251
#disks.separator {
1252
    background-color: #dea842;
1253
}
1254

    
1255
#images.separator {
1256
    background-color: #87a06d;
1257
}
1258

    
1259
#networks.separator {
1260
    background-color: #9d6d6a;
1261
}
1262

    
1263
#desktops.separator {
1264
    background-color: #dea842;
1265
}
1266

    
1267
#apps.separator {
1268
    background-color: #87a06d;
1269
}
1270

    
1271
.machine .separator {
1272
    width: 508px;
1273
    height: 1px;
1274
    margin: 8px 0 0 15px;
1275
    background-color: #DCDCDC;
1276
}
1277

    
1278
.machine h5 {
1279
    margin: 0px 60px 1px 84px;
1280
}
1281

    
1282
.machine .settings {
1283
    margin-top: 22px;
1284
}
1285

    
1286
#spinner {
1287
    background: url("../static/progress.gif");
1288
    height: 31px;
1289
    width: 31px;
1290
    margin-left: 298px;
1291
    margin-top: 160px; 
1292
}
1293

    
1294
/* tables in list view */
1295
div.list div.dataTables_filter,  div.list div.dataTables_filter input{
1296
    font-size: 9pt;
1297
    display: none;
1298
}
1299

    
1300
div.list div.dataTables_filter input{
1301
    height: 12px;
1302
    margin-bottom: 12px;
1303
}
1304

    
1305
div.list table {
1306
    width: 515px;
1307
    font-size: 9pt;
1308
}
1309

    
1310
div.list table tbody td {
1311
        color: #3D3D3D;
1312
        padding:6px;
1313
        background-color: #FFF;
1314
        vertical-align: middle;
1315
}
1316

    
1317
div.list table thead tr th {
1318
        background-color: #E6EEEE;
1319
        background-image: url(bg.gif);
1320
        background-repeat: no-repeat;
1321
        background-position: center right;
1322
    font-weight: normal; 
1323
        border: 1px solid #FFF;
1324
        padding: 4px;
1325
    text-align: left;
1326
    vertical-align: middle;
1327
        cursor: pointer;
1328
}
1329

    
1330
div.list table thead .sorting_asc, div.list table thead .sorting_desc {
1331
    background-color: #87AADE;
1332
}
1333

    
1334
div.list table thead .sorting_asc {
1335
        background-image: url(asc.gif);
1336
}
1337

    
1338
div.list table thead .sorting_desc {
1339
        background-image: url(desc.gif);
1340
}
1341

    
1342
div.list table #selection div.expand-icon {
1343
        background-image: url(asc.gif);
1344
        background-repeat: no-repeat;
1345
    position: relative;
1346
        cursor: pointer;
1347
    width: 15px;
1348
    height: 4px;
1349
    left: 19px;
1350
    top: -11px;
1351
}
1352

    
1353
ul.dropdown-selector {
1354
    background-color: #E6EEEE;
1355
    position: absolute;
1356
    margin-left: 1px;
1357
    display: block;
1358
    top: 255px;
1359
    font-size:9pt;
1360
    width:40px;
1361
}
1362

    
1363
ul.dropdown-selector li {
1364
    padding: 4px;
1365
}
1366

    
1367
ul.dropdown-selector li:hover {
1368
    background-color: #87AADE;
1369
}
1370

    
1371
ul.dropdown-selector li a{
1372
    color: black;
1373
    text-decoration: none;
1374
}
1375

    
1376
div.list table thead #os {
1377
    width: 20px !important;
1378
    vertical-align:middle;
1379
}
1380

    
1381
div.list table span.imagetag { 
1382
    display: none;
1383
}
1384

    
1385
div.list table #selection {
1386
        width: 20px !important;
1387
        text-align: left;
1388
    background-image: none;
1389
}
1390

    
1391
div.list table thead #flavor {
1392
    width: 100px !important;
1393
}
1394

    
1395
div.list table thead #group {
1396
    width: 40px !important;
1397
}
1398

    
1399
div.list table thead #status {
1400
    width: 50px !important;
1401
}
1402

    
1403
div.list table thead #name {
1404
    width: 50px !important;
1405
}
1406

    
1407
.spinner, .wave {
1408
    clear: right;
1409
    height: 20px;
1410
    float:right !important;
1411
    width: 20px;
1412
    margin: 5px 16px 0 15px !important;   
1413
}
1414

    
1415
.hidden {
1416
    display:none;
1417
}
1418

    
1419
div.actions a.selected, div.actions a.selected:hover {
1420
    display:block !important;
1421
    color: orange !important;
1422
}
1423

    
1424
.action_error .message, .action_error .code {
1425
    display: none;
1426
}
1427

    
1428
.fixed {
1429
    margin: 0 0 0 -32px !important;
1430
    bottom: 0;
1431
    position: fixed;
1432
}