Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ 33282d93

History | View | Annotate | Download (21.6 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 {
821
    text-decoration: none;
822
    font-size: 11pt;
823
}
824

    
825
div#view-select a {
826
    color:#5f8dd3;
827
}
828

    
829
a#list:hover {
830
    background: #5f8dd3;
831
}
832

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

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

    
841
.activelink {
842
    color:white !important;
843
}
844

    
845
#machinetype {
846
    background-color: #CCCCCC;
847
    height: 25px;
848
    margin-bottom: 4px !important;
849
}
850

    
851
div.machine-type {
852
    float: left;
853
    margin: 4px 18px 20px;
854
}
855

    
856
.machine-type .active {
857
    color: #FFFFFF
858
}
859

    
860
#machinesview {
861
    min-height: 270px;
862
    margin-top: 30px;
863
}
864

    
865
.list#machinesview {
866
    margin-left: -20px;
867
    display:none;
868
}
869

    
870
#machinesview_wrapper.list {
871
    margin-left: -20px;
872
}
873

    
874
#machinesview_wrapper {
875
    min-height: 270px;
876
}
877

    
878
#machinesview_content {
879
    display:none;
880
}
881

    
882
.list-machines {
883
    min-width: 515px;
884
}
885

    
886
#emptymachineslist {
887
    display:none; 
888
    color: #A0A0A0;
889
    background-image: url(/static/emptydegradebg.png);
890
    width: 400px;
891
    margin-top: 40px;
892
    padding: 5px;
893
    padding-left: 10px;
894
    margin-left: -10px;
895
}
896

    
897
#welcomeheader {
898
    color:white;
899
}
900

    
901
.welcomebody {
902
    color:black;
903
    font-size:80%;
904
}
905

    
906
.welcomebody a {
907
    color:black;
908
}
909

    
910
.welcomefooter {
911
    color:black;
912
    font-size:60%;
913
}
914

    
915
.welcomefooter a {
916
    color:black;
917
}
918

    
919
.emptycreatecontainer {
920
    margin-left: 430px !important;
921
    position: absolute;
922
    margin-top: 40px;
923
    width: 180px;
924
    background-color: #CCCCCC;
925
    padding: 5px;
926
    padding-left: 10px;
927
}
928

    
929
.emptycreate {
930
    margin: 20px 10px 5px 0 !important;
931
}
932

    
933
#createbody {
934
    display:none;
935
    font-size: 80%;
936
}
937

    
938
div.list label img {
939
    margin: 5px 5px -3px 0;
940
}
941

    
942
div.list label {
943
    color: #3D3D3D;
944
    font-size: 9pt;
945
}
946

    
947
div.list .state {
948
    margin-top: 7px;
949
    margin-right: 10px;
950
}
951

    
952
div.list table tbody {
953
    margin-top: 8px;
954
}
955

    
956
div.list .stopped {
957
    margin-top: 8px;
958
}
959

    
960
/* root element for tabs  */
961
#wizard ul.tabs { 
962
    margin-right: -1px;
963
    float: right;                         
964
}
965

    
966
#wizard div.panes {
967
    height: 252px;
968
    margin-bottom: 6px;
969
    clear:both;
970
}
971

    
972
.typebody {
973
    font-size: 80%;
974
    font-weight: normal;
975
    position: relative;
976
    top: -3px;
977
}
978

    
979
.typehover {
980
    color: #FFFFFF;
981
}
982

    
983
#label-name {
984
    margin-top: 15px;
985
}
986

    
987
/* single tab */
988
#wizard ul.tabs li {  
989
    margin-bottom: 0; 
990
        list-style-type:none;
991
    float: left;        
992
}
993

    
994
/* link inside the tab. uses a background image */
995
#wizard ul.tabs a { 
996
        display:block;
997
    padding: 0.3em 0.5em 0.5em 0.4em;
998
        text-decoration:none;
999
        color: #FFFFFF;
1000
        position:relative;
1001
        top:1px;
1002
        outline:0;
1003
    background-color: #CCCCCC;
1004
    text-align: center;
1005
    width: 100px;
1006
    white-space: nowrap;
1007
}
1008

    
1009
#wizard ul.tabs a:hover {
1010
        color: #FFFFFF;
1011
    background-color:#AAAAAA;
1012
}
1013
        
1014
/* selected tab */
1015
#wizard ul.tabs a.current {
1016
        color: white;
1017
    background-color: #666666;        
1018
        cursor: default;
1019
}
1020

    
1021
#wizard #standard-images {
1022
    background-color: #ECECEC;
1023
}
1024

    
1025
div.list div.actions {
1026
    display: none;
1027
    clear: left;
1028
    float: right;
1029
    margin-right: -20px;
1030
    margin-top: 37px;
1031
    text-align: right;
1032
    width: 150px;
1033
}
1034

    
1035
div.list div.actions a {
1036
    clear: left;
1037
    color: #D3D3D3;
1038
    display: block;
1039
    font-size:9pt;
1040
    margin-bottom: 2px;
1041
}
1042

    
1043
div.list div.actions a.enabled {
1044
    color: #3D3D3D;
1045
}
1046

    
1047
div.list div.actions a.enabled:hover{
1048
    cursor: pointer;
1049
    color: black;
1050
    text-decoration: underline;
1051
}
1052

    
1053
input.machine {
1054
    width: 13px;
1055
    height: 13px;
1056
    top: -1px;
1057
    overflow: hidden;
1058
}
1059

    
1060
#error-success, #yes-no {
1061
    height: 150px;
1062
    border: 5px solid #87AADE;
1063
    z-index: 9999;
1064
}
1065

    
1066
#error-success p, #yes-no p, #yes-no button {
1067
    margin-top: 15px;
1068
}
1069

    
1070
#error-success strong {
1071
    color: #F49C1A;
1072
}
1073

    
1074
#error-success div {
1075
    height: 142px;
1076
    overflow-y: auto;
1077
    overflow-x: hidden;
1078
}
1079

    
1080
#error-success .close {
1081
        background-image: url(/static/close.png);
1082
        position: absolute;
1083
        right: -19px;
1084
        top: -20px;
1085
        cursor: pointer;
1086
        height: 35px;
1087
        width: 35px;
1088
}
1089

    
1090
/* Confirmation boxes */
1091
div.confirm_single, div.confirm_multiple {
1092
    display: none;
1093
    background-color: #DCDCDC;
1094
    color: orange;
1095
    font-size: 9pt;
1096
}
1097

    
1098
div.action_error {
1099
    float: right;
1100
    width: 80px;
1101
    height: 60px;
1102
    padding: 5px;
1103
    margin: -65px -165px 0 0;
1104
    display: none;
1105
    background-color: #DCDCDC;
1106
    font-size: 9pt;
1107
    color: black;
1108
    line-height: 1.5;
1109
}
1110

    
1111
div.action_error button.details {
1112
    margin: 5px 0 0 0px;
1113
    padding: 0 15px;
1114
}
1115

    
1116
.orange {
1117
    color: orange;
1118
}
1119

    
1120
div.confirm_single button, div.confirm_multiple button, div.action_error button{
1121
    font-size: 9pt;
1122
    background-color: #DCDCDC;
1123
    border: 1px solid #a5a5a5;
1124
    color: #3D3D3D;
1125
    cursor: pointer;
1126
    padding: 0px;
1127
    height: 20px !important;
1128
}
1129

    
1130
div.confirm_single button, .action_error button {
1131
    width: 80px !important;
1132
}
1133
div.confirm_single button.yes, div.confirm_multiple button.yes {
1134
    border-color: orange;
1135
    padding: 0 12px;
1136
}
1137

    
1138
div.confirm_single button.yes:hover, div.confirm_multiple button.yes:hover {
1139
    background-color: orange;
1140
}
1141

    
1142
div.confirm_single button.no, div.confirm_multiple button.no {
1143
    padding: 0px 16px;
1144
}
1145

    
1146
div.confirm_single button.no:hover, div.confirm_multiple button.no:hover, div.action_error button.details:hover {
1147
    background-color: #a5a5a5;
1148
}
1149

    
1150
div.confirm_single{
1151
    float: right;
1152
    width: 90px;
1153
    height: 70px;
1154
    margin: -65px -165px 0 0;
1155
}
1156

    
1157
div.confirm_single button.yes {
1158
    margin: 5px 0 0 5px;
1159
}
1160

    
1161
div.confirm_single button.no {
1162
    margin: 20px 0 0 5px;
1163
}
1164

    
1165
div.action_error {
1166
    display: none;
1167
}
1168

    
1169
div.confirm_multiple {
1170
    width: 692px;
1171
    height: 28px;
1172
    margin: 0 0 10px -32px;
1173
}
1174

    
1175
div.confirm_multiple p {
1176
    float: left;
1177
    margin: 7px 0 0 200px;
1178
}
1179

    
1180
div.confirm_multiple button {
1181
    float: right;
1182
    margin: 4px 5px 0 0;
1183
}
1184

    
1185
div.confirm_multiple button.no {
1186
    margin-right: 15px;
1187
}
1188

    
1189
div#user{
1190
    float:right;
1191
    clear: both;
1192
    color: #a0a0a0;
1193
    font-size: 9pt;
1194
    margin-top: 16px;
1195
}
1196

    
1197
div#user a{
1198
    color: #a0a0a0;
1199
    text-decoration: none;
1200
}
1201

    
1202
div#user a.current_lang {
1203
    color: #d3d3d3;
1204
}
1205

    
1206
.separator {
1207
    background-color: #87AADE;
1208
    height: 10px;
1209
    width: 700px;
1210
    margin: 0 0 0 -36px;
1211
}
1212

    
1213
#mini.separator {
1214
    width: 535px;
1215
    height: 5px;
1216
    margin: 17px 0 17px -36px;
1217
    display: none;
1218
}
1219

    
1220
#disks.separator {
1221
    background-color: #dea842;
1222
}
1223

    
1224
#images.separator {
1225
    background-color: #87a06d;
1226
}
1227

    
1228
#networks.separator {
1229
    background-color: #9d6d6a;
1230
}
1231

    
1232
#desktops.separator {
1233
    background-color: #dea842;
1234
}
1235

    
1236
#apps.separator {
1237
    background-color: #87a06d;
1238
}
1239

    
1240
.machine .separator {
1241
    width: 508px;
1242
    height: 1px;
1243
    margin: 8px 0 0 15px;
1244
    background-color: #DCDCDC;
1245
}
1246

    
1247
.machine h5 {
1248
    margin: 0px 60px 1px 84px;
1249
}
1250

    
1251
.machine .settings {
1252
    margin-top: 22px;
1253
}
1254

    
1255
#spinner {
1256
    background: url("../static/progress.gif");
1257
    height: 31px;
1258
    width: 31px;
1259
    margin-left: 298px;
1260
    margin-top: 160px; 
1261
}
1262

    
1263
/* tables in list view */
1264
div.list div.dataTables_filter,  div.list div.dataTables_filter input{
1265
    font-size: 9pt;
1266
    display: none;
1267
}
1268

    
1269
div.list div.dataTables_filter input{
1270
    height: 12px;
1271
    margin-bottom: 12px;
1272
}
1273

    
1274
div.list table {
1275
    width: 515px;
1276
    font-size: 9pt;
1277
}
1278

    
1279
div.list table tbody td {
1280
        color: #3D3D3D;
1281
        padding:6px;
1282
        background-color: #FFF;
1283
        vertical-align: middle;
1284
}
1285

    
1286
div.list table thead tr th {
1287
        background-color: #E6EEEE;
1288
        background-image: url(bg.gif);
1289
        background-repeat: no-repeat;
1290
        background-position: center right;
1291
    font-weight: normal; 
1292
        border: 1px solid #FFF;
1293
        padding: 4px;
1294
    text-align: left;
1295
    vertical-align: middle;
1296
        cursor: pointer;
1297
}
1298

    
1299
div.list table thead .sorting_asc, div.list table thead .sorting_desc {
1300
    background-color: #87AADE;
1301
}
1302

    
1303
div.list table thead .sorting_asc {
1304
        background-image: url(asc.gif);
1305
}
1306

    
1307
div.list table thead .sorting_desc {
1308
        background-image: url(desc.gif);
1309
}
1310

    
1311
div.list table #selection div.expand-icon {
1312
        background-image: url(asc.gif);
1313
        background-repeat: no-repeat;
1314
    position: relative;
1315
        cursor: pointer;
1316
    width: 15px;
1317
    height: 4px;
1318
    left: 19px;
1319
    top: -11px;
1320
}
1321

    
1322
ul.dropdown-selector {
1323
    background-color: #E6EEEE;
1324
    position: absolute;
1325
    margin-left: 1px;
1326
    display: block;
1327
    top: 255px;
1328
    font-size:9pt;
1329
    width:40px;
1330
}
1331

    
1332
ul.dropdown-selector li {
1333
    padding: 4px;
1334
}
1335

    
1336
ul.dropdown-selector li:hover {
1337
    background-color: #87AADE;
1338
}
1339

    
1340
ul.dropdown-selector li a{
1341
    color: black;
1342
    text-decoration: none;
1343
}
1344

    
1345
div.list table thead #os {
1346
    width: 20px !important;
1347
    vertical-align:middle;
1348
}
1349

    
1350
div.list table span.imagetag { 
1351
    display: none;
1352
}
1353

    
1354
div.list table #selection {
1355
        width: 20px !important;
1356
        text-align: left;
1357
    background-image: none;
1358
}
1359

    
1360
div.list table thead #flavor {
1361
    width: 100px !important;
1362
}
1363

    
1364
div.list table thead #group {
1365
    width: 40px !important;
1366
}
1367

    
1368
div.list table thead #status {
1369
    width: 50px !important;
1370
}
1371

    
1372
div.list table thead #name {
1373
    width: 50px !important;
1374
}
1375

    
1376
.spinner, .wave {
1377
    clear: right;
1378
    height: 20px;
1379
    float:right !important;
1380
    width: 20px;
1381
    margin: 5px 16px 0 15px !important;   
1382
}
1383

    
1384
.hidden {
1385
    display:none;
1386
}
1387

    
1388
div.actions a.selected, div.actions a.selected:hover {
1389
    display:block !important;
1390
    color: orange !important;
1391
}
1392

    
1393
.action_error .message, .action_error .code {
1394
    display: none;
1395
}
1396

    
1397
.fixed {
1398
    margin: 0 0 0 -32px !important;
1399
    bottom: 0;
1400
    position: fixed;
1401
}