Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ f87e79a4

History | View | Annotate | Download (21.5 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
}
638

    
639
div.machine div.actions a.action-destroy {
640
    margin-top: 18px;
641
}
642

    
643
div.actions a.enabled:hover{
644
    color: black !important;
645
    text-decoration: underline;
646
    display: block;
647
}
648

    
649
.machine:hover .actions a {
650
    color: #3d3d3d;
651
    display: block;
652
}
653

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

    
659
div.machine div.actions a.selected:hover {
660
    color: orange;
661
}
662

    
663
div.running div.machine a.action-start {
664
    display: none;
665
}
666

    
667
div.terminated div.machine a.action-reboot, div.terminated div.machine a.action-shutdown{
668
    display: none;
669
}
670

    
671
div.terminated div.machine div.actions a.action-destroy {
672
    margin-top: 34px;
673
}
674

    
675
.machine:hover {
676
    background-color:#dcdcdc;
677
}
678

    
679
.standard .machine img {
680
    float: left;
681
    margin: 7px 14px 0;
682
}
683

    
684
.list .machine img {
685
    margin: 0;
686
}
687

    
688
div.ip, div.state {
689
    font-size: 9pt;
690
    color: #3d3d3d;
691
}
692

    
693
div.indicator {
694
    width:10px;
695
    height:11px;
696
    margin: 3px -1px;
697
    clear: none;
698
    float:right;
699
}
700

    
701
.view-separator {
702
    color:#5F8DD3;    
703
}
704

    
705
.running .indicator {
706
    border-top: 2px solid white;
707
    border-bottom: 2px solid white;
708
    border-left: 2px solid white;
709
    border-right: 3px solid white;
710
    background-color: #87AADE;
711
}
712

    
713
.terminated {
714
    margin-bottom: 17px;
715
}
716

    
717
.terminated .machine .state .status {
718
    color: #666;
719
}
720

    
721
.machine:hover div.uptime, .machine:hover a.rename, .machine:hover a.configure {
722
    color: #3d3d3d;
723
}
724

    
725
div.uptime {
726
    clear: both;
727
    color: transparent;
728
    margin-left: 1px;
729
}
730

    
731
div.machine-tabs {
732
    margin-top: 1em;
733
}
734

    
735
span.rename, span.configure {
736
    background-repeat: no-repeat;
737
    color: transparent;
738
    font-size: 9pt;
739
    font-weight: normal;
740
    margin-left: 10px;
741
    padding-left: 10px;
742
    text-align: left;
743
}
744

    
745
a.name:hover span.rename {
746
    color: #3D3D3D;
747
    margin-top: 0.4em;
748
    background-image: url(/static/pencil.png);
749
}
750

    
751

    
752
a.settings:hover span.configure {
753
    color: #3D3D3D;
754
}
755

    
756
button {
757
    background-color: #87AADE;
758
    border: 1px solid #87AADE;
759
    color: #FFFFFF;
760
    cursor: pointer;
761
    height: 23px;
762
    width: 120px;
763
}
764

    
765
button.next:hover {
766
    background-color: #68A4FF;
767
    border-color: #68A4FF;
768
}
769

    
770
button.prev:hover {
771
    background-color: #888888;
772
    border-color: #888888;
773
}
774

    
775
button.next {
776
    background-color: #5599FF;
777
    border-color: #5599FF;
778
    text-align: right;
779
}
780

    
781
button.prev {
782
    background-color: #666666;
783
    border:none;
784
    margin-left: -1px;
785
    text-align: left;
786
}
787

    
788
.image-logo {
789
    float: left;
790
    margin-right: 1em;
791
    margin-left: 1.5em;
792
    margin-top: 4px;
793
}
794

    
795
div.image {
796
    clear: both;
797
    display: block;
798
    margin-bottom: 3px;
799
    margin-top: 3px;
800
    padding: 5px;
801
}
802

    
803
div#view-select {
804
    float: right;
805
    clear: both;
806
    color: white;
807
    margin-top: -42px;
808
    margin-right: -36px;
809
    font-size: 9pt;
810
    background-color: #87aade;
811
    padding: 5px 10px;
812
    display:none;
813
}
814

    
815
a#standard, a#list {
816
    text-decoration: none;
817
    font-size: 11pt;
818
}
819

    
820
div#view-select a {
821
    color:#5f8dd3;
822
}
823

    
824
a#list:hover {
825
    background: #5f8dd3;
826
}
827

    
828
a#standard:hover{
829
    background: #5f8dd3;
830
}
831

    
832
a#standard:active, a#list:active {
833
    color:white;
834
}
835

    
836
.activelink {
837
    color:white !important;
838
}
839

    
840
#machinetype {
841
    background-color: #CCCCCC;
842
    height: 25px;
843
    margin-bottom: 4px !important;
844
}
845

    
846
div.machine-type {
847
    float: left;
848
    margin: 4px 18px 20px;
849
}
850

    
851
.machine-type .active {
852
    color: #FFFFFF
853
}
854

    
855
#machinesview {
856
    min-height: 270px;
857
    margin-top: 30px;
858
}
859

    
860
.list#machinesview {
861
    margin-left: -20px;
862
    display:none;
863
}
864

    
865
#machinesview_wrapper.list {
866
    margin-left: -20px;
867
}
868

    
869
#machinesview_wrapper {
870
    min-height: 270px;
871
}
872

    
873
#machinesview_content {
874
    display:none;
875
}
876

    
877
.list-machines {
878
    min-width: 515px;
879
}
880

    
881
#emptymachineslist {
882
    display:none; 
883
    color: #A0A0A0;
884
    background-image: url(/static/emptydegradebg.png);
885
    width: 400px;
886
    margin-top: 40px;
887
    padding: 5px;
888
    padding-left: 10px;
889
    margin-left: -10px;
890
}
891

    
892
#welcomeheader {
893
    color:white;
894
}
895

    
896
.welcomebody {
897
    color:black;
898
    font-size:80%;
899
}
900

    
901
.welcomebody a {
902
    color:black;
903
}
904

    
905
.welcomefooter {
906
    color:black;
907
    font-size:60%;
908
}
909

    
910
.welcomefooter a {
911
    color:black;
912
}
913

    
914
.emptycreatecontainer {
915
    margin-left: 430px !important;
916
    position: absolute;
917
    margin-top: 40px;
918
    width: 180px;
919
    background-color: #CCCCCC;
920
    padding: 5px;
921
    padding-left: 10px;
922
}
923

    
924
.emptycreate {
925
    margin: 20px 10px 5px 0 !important;
926
}
927

    
928
#createbody {
929
    display:none;
930
    font-size: 80%;
931
}
932

    
933
div.list label img {
934
    margin: 5px 5px -3px 0;
935
}
936

    
937
div.list label {
938
    color: #3D3D3D;
939
    font-size: 9pt;
940
}
941

    
942
div.list .state {
943
    margin-top: 7px;
944
    margin-right: 10px;
945
}
946

    
947
div.list table tbody {
948
    margin-top: 8px;
949
}
950

    
951
div.list .stopped {
952
    margin-top: 8px;
953
}
954

    
955
/* root element for tabs  */
956
#wizard ul.tabs { 
957
    margin-right: -1px;
958
    float: right;                         
959
}
960

    
961
#wizard div.panes {
962
    height: 252px;
963
    margin-bottom: 6px;
964
    clear:both;
965
}
966

    
967
.typebody {
968
    font-size: 80%;
969
    font-weight: normal;
970
    position: relative;
971
    top: -3px;
972
}
973

    
974
.typehover {
975
    color: #FFFFFF;
976
}
977

    
978
#label-name {
979
    margin-top: 15px;
980
}
981

    
982
/* single tab */
983
#wizard ul.tabs li {  
984
    margin-bottom: 0; 
985
        list-style-type:none;
986
    float: left;        
987
}
988

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

    
1004
#wizard ul.tabs a:hover {
1005
        color: #FFFFFF;
1006
    background-color:#AAAAAA;
1007
}
1008
        
1009
/* selected tab */
1010
#wizard ul.tabs a.current {
1011
        color: white;
1012
    background-color: #666666;        
1013
        cursor: default;
1014
}
1015

    
1016
#wizard #standard-images {
1017
    background-color: #ECECEC;
1018
}
1019

    
1020
div.list div.actions {
1021
    display: none;
1022
    clear: left;
1023
    float: right;
1024
    margin-right: -20px;
1025
    margin-top: 37px;
1026
    text-align: right;
1027
    width: 150px;
1028
}
1029

    
1030
div.list div.actions a {
1031
    clear: left;
1032
    color: #D3D3D3;
1033
    display: block;
1034
    font-size:9pt;
1035
    margin-bottom: 2px;
1036
}
1037

    
1038
div.list div.actions a.enabled {
1039
    color: #3D3D3D;
1040
}
1041

    
1042
div.list div.actions a.enabled:hover{
1043
    cursor: pointer;
1044
    color: black;
1045
    text-decoration: underline;
1046
}
1047

    
1048
input.machine {
1049
    width: 13px;
1050
    height: 13px;
1051
    top: -1px;
1052
    overflow: hidden;
1053
}
1054

    
1055
#error-success, #yes-no {
1056
    height: 150px;
1057
    border: 5px solid #87AADE;
1058
    z-index: 9999;
1059
}
1060

    
1061
#error-success p, #yes-no p, #yes-no button {
1062
    margin-top: 15px;
1063
}
1064

    
1065
#error-success strong {
1066
    color: #F49C1A;
1067
}
1068

    
1069
#error-success div {
1070
    height: 142px;
1071
    overflow-y: auto;
1072
    overflow-x: hidden;
1073
}
1074

    
1075
#error-success .close {
1076
        background-image: url(/static/close.png);
1077
        position: absolute;
1078
        right: -19px;
1079
        top: -20px;
1080
        cursor: pointer;
1081
        height: 35px;
1082
        width: 35px;
1083
}
1084

    
1085
/* Confirmation boxes */
1086
div.confirm_single, div.confirm_multiple {
1087
    display: none;
1088
    background-color: #DCDCDC;
1089
    color: orange;
1090
    font-size: 9pt;
1091
}
1092

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

    
1106
div.action_error button.details {
1107
    margin: 5px 0 0 0px;
1108
    padding: 0 15px;
1109
}
1110

    
1111
.orange {
1112
    color: orange;
1113
}
1114

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

    
1125
div.confirm_single button, .action_error button {
1126
    width: 80px !important;
1127
}
1128
div.confirm_single button.yes, div.confirm_multiple button.yes {
1129
    border-color: orange;
1130
    padding: 0 12px;
1131
}
1132

    
1133
div.confirm_single button.yes:hover, div.confirm_multiple button.yes:hover {
1134
    background-color: orange;
1135
}
1136

    
1137
div.confirm_single button.no, div.confirm_multiple button.no {
1138
    padding: 0px 16px;
1139
}
1140

    
1141
div.confirm_single button.no:hover, div.confirm_multiple button.no:hover, div.action_error button.details:hover {
1142
    background-color: #a5a5a5;
1143
}
1144

    
1145
div.confirm_single{
1146
    float: right;
1147
    width: 90px;
1148
    height: 70px;
1149
    margin: -65px -165px 0 0;
1150
}
1151

    
1152
div.confirm_single button.yes {
1153
    margin: 5px 0 0 5px;
1154
}
1155

    
1156
div.confirm_single button.no {
1157
    margin: 20px 0 0 5px;
1158
}
1159

    
1160
div.action_error {
1161
    display: none;
1162
}
1163

    
1164
div.confirm_multiple {
1165
    width: 692px;
1166
    height: 28px;
1167
    margin: 0 0 10px -32px;
1168
}
1169

    
1170
div.confirm_multiple p {
1171
    float: left;
1172
    margin: 7px 0 0 200px;
1173
}
1174

    
1175
div.confirm_multiple button {
1176
    float: right;
1177
    margin: 4px 5px 0 0;
1178
}
1179

    
1180
div.confirm_multiple button.no {
1181
    margin-right: 15px;
1182
}
1183

    
1184
div#user{
1185
    float:right;
1186
    clear: both;
1187
    color: #a0a0a0;
1188
    font-size: 9pt;
1189
    margin-top: 16px;
1190
}
1191

    
1192
div#user a{
1193
    color: #a0a0a0;
1194
    text-decoration: none;
1195
}
1196

    
1197
div#user a.current_lang {
1198
    color: #d3d3d3;
1199
}
1200

    
1201
.separator {
1202
    background-color: #87AADE;
1203
    height: 10px;
1204
    width: 700px;
1205
    margin: 0 0 0 -36px;
1206
}
1207

    
1208
#mini.separator {
1209
    width: 535px;
1210
    height: 5px;
1211
    margin: 17px 0 17px -36px;
1212
    display: none;
1213
}
1214

    
1215
#disks.separator {
1216
    background-color: #dea842;
1217
}
1218

    
1219
#images.separator {
1220
    background-color: #87a06d;
1221
}
1222

    
1223
#networks.separator {
1224
    background-color: #9d6d6a;
1225
}
1226

    
1227
#desktops.separator {
1228
    background-color: #dea842;
1229
}
1230

    
1231
#apps.separator {
1232
    background-color: #87a06d;
1233
}
1234

    
1235
.machine .separator {
1236
    width: 508px;
1237
    height: 1px;
1238
    margin: 8px 0 0 15px;
1239
    background-color: #DCDCDC;
1240
}
1241

    
1242
.machine h5 {
1243
    margin: 0px 60px 1px 84px;
1244
}
1245

    
1246
.machine .settings {
1247
    margin-top: 22px;
1248
}
1249

    
1250
#spinner {
1251
    background: url("../static/progress.gif");
1252
    height: 31px;
1253
    width: 31px;
1254
    margin-left: 298px;
1255
    margin-top: 160px; 
1256
}
1257

    
1258
/* tables in list view */
1259
div.list div.dataTables_filter,  div.list div.dataTables_filter input{
1260
    font-size: 9pt;
1261
    display: none;
1262
}
1263

    
1264
div.list div.dataTables_filter input{
1265
    height: 12px;
1266
    margin-bottom: 12px;
1267
}
1268

    
1269
div.list table {
1270
    width: 515px;
1271
    font-size: 9pt;
1272
}
1273

    
1274
div.list table tbody td {
1275
        color: #3D3D3D;
1276
        padding:6px;
1277
        background-color: #FFF;
1278
        vertical-align: middle;
1279
}
1280

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

    
1294
div.list table thead .sorting_asc, div.list table thead .sorting_desc {
1295
    background-color: #87AADE;
1296
}
1297

    
1298
div.list table thead .sorting_asc {
1299
        background-image: url(asc.gif);
1300
}
1301

    
1302
div.list table thead .sorting_desc {
1303
        background-image: url(desc.gif);
1304
}
1305

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

    
1317
ul.dropdown-selector {
1318
    background-color: #E6EEEE;
1319
    position: absolute;
1320
    margin-left: 1px;
1321
    display: block;
1322
    top: 255px;
1323
    font-size:9pt;
1324
    width:40px;
1325
}
1326

    
1327
ul.dropdown-selector li {
1328
    padding: 4px;
1329
}
1330

    
1331
ul.dropdown-selector li:hover {
1332
    background-color: #87AADE;
1333
}
1334

    
1335
ul.dropdown-selector li a{
1336
    color: black;
1337
    text-decoration: none;
1338
}
1339

    
1340
div.list table thead #os {
1341
    width: 20px !important;
1342
    vertical-align:middle;
1343
}
1344

    
1345
div.list table span.imagetag { 
1346
    display: none;
1347
}
1348

    
1349
div.list table #selection {
1350
        width: 20px !important;
1351
        text-align: left;
1352
    background-image: none;
1353
}
1354

    
1355
div.list table thead #flavor {
1356
    width: 100px !important;
1357
}
1358

    
1359
div.list table thead #group {
1360
    width: 40px !important;
1361
}
1362

    
1363
div.list table thead #status {
1364
    width: 50px !important;
1365
}
1366

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

    
1371
.spinner, .wave {
1372
    clear: right;
1373
    height: 20px;
1374
    float:right !important;
1375
    width: 20px;
1376
    margin: 5px 16px 0 15px !important;   
1377
}
1378

    
1379
.hidden {
1380
    display:none;
1381
}
1382

    
1383
div.actions a.selected, div.actions a.selected:hover {
1384
    display:block !important;
1385
    color: orange !important;
1386
}
1387

    
1388
.action_error .message, .action_error .code {
1389
    display: none;
1390
}
1391

    
1392
.fixed {
1393
    margin: 0 0 0 -32px !important;
1394
    bottom: 0;
1395
    position: fixed;
1396
}