Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ 16e27b76

History | View | Annotate | Download (24.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: 470%;
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
    border: 1px solid #111111;
585
}
586

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
667
div.machine div.actions a.selected:hover {
668
    color: orange;
669
}
670

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

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

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

    
683
.machine:hover {
684
    background-color:#dcdcdc;
685
}
686

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

    
692
.list .machine img {
693
    margin: 0;
694
}
695

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

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

    
709
.view-separator {
710
    color:#5F8DD3;    
711
}
712

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

    
721
.terminated {
722
    margin-bottom: 17px;
723
}
724

    
725
.terminated .machine .state .status {
726
    color: #666;
727
}
728

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

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

    
739
div.machine-tabs {
740
    margin-top: 1em;
741
}
742

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

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

    
759

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1115
.meta-modal div.container {
1116
    height:330px;
1117
}
1118

    
1119
.meta-modal h3 {
1120
    font-weight: normal;
1121
}
1122

    
1123
.meta-modal hr {
1124
    background-color: #666;
1125
    border: 0 none;
1126
    height: 5px;
1127
    margin: 0; 
1128
}
1129

    
1130
.meta-modal hr.topruler {
1131
    margin-top: 5px; 
1132
}
1133

    
1134
.meta-modal hr.fatruler {
1135
    height: 20px;
1136
    margin-top: 2px;
1137
    margin-bottom: 20px;
1138
}
1139

    
1140
.meta-modal hr.meta-separator {
1141
    width: 320px;
1142
    margin: 5px 0 2px 0;
1143
}
1144

    
1145
.meta-modal div.bottomruler {
1146
    background-color: #666;
1147
    height: 20px;
1148
    margin-top: 23px;
1149
}
1150

    
1151
.meta-modal div.content {
1152
    height: 248px;
1153
    width: 345px;
1154
    margin-left: 15px;
1155
    overflow: auto;
1156
}
1157

    
1158
.meta-modal div.content li {
1159
    margin-bottom: 20px;
1160
}
1161

    
1162
.meta-modal p {
1163
    margin-left: 7px;
1164
}
1165

    
1166
.meta-modal button {
1167
    font-size: 80%;
1168
    width: 87px;
1169
    float: right;
1170
    background-color: #5599FF;
1171
    border: 0px solid #5599FF;
1172
    padding: 0;
1173
    margin-right: 25px;
1174
}
1175

    
1176
.meta-modal button.remove {
1177
    height: 15px;
1178
    width: 70px;
1179
    background-color: #d35f5f;
1180
    border-color: #d35f5f;
1181
    margin-top: 2px;
1182
}
1183

    
1184
.meta-modal button.edit {
1185
    height: 15px;
1186
    width: 70px;
1187
    background-color: #666;
1188
    border-color: #666;
1189
    margin-top: -14px;
1190
}
1191

    
1192
.meta-modal button.create {
1193
    height: 23px;
1194
    margin: 10px 44px 0 0;
1195
}
1196

    
1197
.meta-modal input {
1198
    font-size: 80%;
1199
    font-style: italic;
1200
    text-align: right;
1201
    color: #ccc;
1202
}
1203

    
1204
.meta-modal input.key {
1205
    width: 279px;
1206
    margin-bottom: -3px;
1207
}
1208

    
1209
.meta-modal input.value {
1210
    width: 267px;
1211
    height: 170px;
1212
    overflow: auto;
1213
}
1214

    
1215
.meta-modal .input-enabled {
1216
    color: black;
1217
    text-align: left;
1218
    font-style: normal;
1219
}
1220

    
1221
.meta-modal label.meta-value {
1222
    vertical-align: top;
1223
}
1224

    
1225
.meta-modal button.save {
1226
    margin-top: 11px;
1227
}
1228

    
1229
.meta-modal button.cancel {
1230
    float: left;
1231
    margin: 11px 0 0 25px;
1232
    background-color: #d35f5f;
1233
    border-color: #d35f5f;
1234
}
1235

    
1236

    
1237
/* notification box */
1238
#error-success, #yes-no {
1239
    height: 150px;
1240
    border: 5px solid #87AADE;
1241
    z-index: 9999;
1242
}
1243

    
1244
#error-success p, #yes-no p, #yes-no button {
1245
    margin-top: 15px;
1246
}
1247

    
1248
#error-success strong {
1249
    color: #F49C1A;
1250
}
1251

    
1252
#error-success div {
1253
    height: 142px;
1254
    overflow-y: auto;
1255
    overflow-x: hidden;
1256
}
1257

    
1258
#error-success .close {
1259
        background-image: url(/static/close.png);
1260
        position: absolute;
1261
        right: -19px;
1262
        top: -20px;
1263
        cursor: pointer;
1264
        height: 35px;
1265
        width: 35px;
1266
}
1267

    
1268
/* Confirmation boxes */
1269
div.confirm_single, div.confirm_multiple {
1270
    display: none;
1271
    background-color: #DCDCDC;
1272
    color: orange;
1273
    font-size: 9pt;
1274
}
1275

    
1276
div.action_error {
1277
    float: right;
1278
    width: 80px;
1279
    height: 60px;
1280
    padding: 5px;
1281
    margin: -65px -165px 0 0;
1282
    display: none;
1283
    background-color: #DCDCDC;
1284
    font-size: 9pt;
1285
    color: black;
1286
    line-height: 1.5;
1287
}
1288

    
1289
div.action_error button.details {
1290
    margin: 5px 0 0 0px;
1291
    padding: 0 15px;
1292
}
1293

    
1294
.orange {
1295
    color: orange;
1296
}
1297

    
1298
div.confirm_single button, div.confirm_multiple button, div.action_error button{
1299
    font-size: 9pt;
1300
    background-color: #DCDCDC;
1301
    border: 1px solid #a5a5a5;
1302
    color: #3D3D3D;
1303
    cursor: pointer;
1304
    padding: 0px;
1305
    height: 20px !important;
1306
}
1307

    
1308
div.confirm_single button, .action_error button {
1309
    width: 80px !important;
1310
}
1311
div.confirm_single button.yes, div.confirm_multiple button.yes {
1312
    border-color: orange;
1313
    padding: 0 12px;
1314
}
1315

    
1316
div.confirm_single button.yes:hover, div.confirm_multiple button.yes:hover {
1317
    background-color: orange;
1318
}
1319

    
1320
div.confirm_single button.no, div.confirm_multiple button.no {
1321
    padding: 0px 16px;
1322
}
1323

    
1324
div.confirm_single button.no:hover, div.confirm_multiple button.no:hover, div.action_error button.details:hover {
1325
    background-color: #a5a5a5;
1326
}
1327

    
1328
div.confirm_single{
1329
    float: right;
1330
    width: 90px;
1331
    height: 70px;
1332
    margin: -65px -165px 0 0;
1333
}
1334

    
1335
div.confirm_single button.yes {
1336
    margin: 5px 0 0 5px;
1337
}
1338

    
1339
div.confirm_single button.no {
1340
    margin: 20px 0 0 5px;
1341
}
1342

    
1343
div.action_error {
1344
    display: none;
1345
}
1346

    
1347
div.confirm_multiple {
1348
    width: 692px;
1349
    height: 28px;
1350
    margin: 0 0 10px -32px;
1351
}
1352

    
1353
div.confirm_multiple p {
1354
    float: left;
1355
    margin: 7px 0 0 200px;
1356
}
1357

    
1358
div.confirm_multiple button {
1359
    float: right;
1360
    margin: 4px 5px 0 0;
1361
}
1362

    
1363
div.confirm_multiple button.no {
1364
    margin-right: 15px;
1365
}
1366

    
1367
div#user{
1368
    float:right;
1369
    clear: both;
1370
    color: #a0a0a0;
1371
    font-size: 9pt;
1372
    margin-top: 16px;
1373
}
1374

    
1375
div#user a{
1376
    color: #a0a0a0;
1377
    text-decoration: none;
1378
}
1379

    
1380
div#user a.current_lang {
1381
    color: #d3d3d3;
1382
}
1383

    
1384
.separator {
1385
    background-color: #87AADE;
1386
    height: 10px;
1387
    width: 700px;
1388
    margin: 0 0 0 -36px;
1389
}
1390

    
1391
#mini.separator {
1392
    width: 535px;
1393
    height: 5px;
1394
    margin: 17px 0 17px -36px;
1395
    display: none;
1396
}
1397

    
1398
#disks.separator {
1399
    background-color: #dea842;
1400
}
1401

    
1402
#images.separator {
1403
    background-color: #87a06d;
1404
}
1405

    
1406
#networks.separator {
1407
    background-color: #9d6d6a;
1408
}
1409

    
1410
#desktops.separator {
1411
    background-color: #dea842;
1412
}
1413

    
1414
#apps.separator {
1415
    background-color: #87a06d;
1416
}
1417

    
1418
.machine .separator {
1419
    width: 508px;
1420
    height: 1px;
1421
    margin: 8px 0 0 15px;
1422
    background-color: #DCDCDC;
1423
}
1424

    
1425
.machine h5 {
1426
    margin: 0px 60px 1px 84px;
1427
}
1428

    
1429
.machine .settings {
1430
    margin-top: 22px;
1431
}
1432

    
1433
#spinner {
1434
    background: url("../static/progress.gif");
1435
    height: 31px;
1436
    width: 31px;
1437
    margin-left: 298px;
1438
    margin-top: 160px; 
1439
}
1440

    
1441
/* tables in list view */
1442
div.list div.dataTables_filter,  div.list div.dataTables_filter input{
1443
    font-size: 9pt;
1444
    display: none;
1445
}
1446

    
1447
div.list div.dataTables_filter input{
1448
    height: 12px;
1449
    margin-bottom: 12px;
1450
}
1451

    
1452
div.list table {
1453
    width: 515px;
1454
    font-size: 9pt;
1455
}
1456

    
1457
div.list table tbody td {
1458
        color: #3D3D3D;
1459
        padding:6px;
1460
        background-color: #FFF;
1461
        vertical-align: middle;
1462
}
1463

    
1464
div.list table thead tr th {
1465
        background-color: #E6EEEE;
1466
        background-image: url(bg.gif);
1467
        background-repeat: no-repeat;
1468
        background-position: right 11px;
1469
    font-weight: normal; 
1470
        border: 1px solid #FFF;
1471
    border-bottom: none;
1472
        padding: 4px;
1473
    text-align: left;
1474
    vertical-align: middle;
1475
        cursor: pointer;
1476
}
1477

    
1478
div.list table thead .sorting_asc, div.list table thead .sorting_desc {
1479
    background-color: #87AADE;
1480
}
1481

    
1482
div.list table thead .sorting_asc {
1483
        background-image: url(asc.gif);
1484
}
1485

    
1486
div.list table thead .sorting_desc {
1487
        background-image: url(desc.gif);
1488
}
1489

    
1490
div.list table #selection div.expand-icon {
1491
        background-image: url(asc.gif);
1492
        background-repeat: no-repeat;
1493
    position: relative;
1494
        cursor: pointer;
1495
    width: 15px;
1496
    height: 4px;
1497
    left: 19px;
1498
    top: -11px;
1499
}
1500

    
1501
ul.dropdown-selector {
1502
    background-color: #E6EEEE;
1503
    position: absolute;
1504
    margin-left: 1px;
1505
    display: block;
1506
    top: 255px;
1507
    font-size:9pt;
1508
    width:40px;
1509
}
1510

    
1511
ul.dropdown-selector li {
1512
    padding: 4px;
1513
}
1514

    
1515
ul.dropdown-selector li:hover {
1516
    background-color: #87AADE;
1517
}
1518

    
1519
ul.dropdown-selector li a{
1520
    color: black;
1521
    text-decoration: none;
1522
}
1523

    
1524
div.list table thead #os {
1525
    width: 20px !important;
1526
    vertical-align:middle;
1527
}
1528

    
1529
div.list table span.imagetag { 
1530
    display: none;
1531
}
1532

    
1533
div.list table #selection {
1534
        width: 20px !important;
1535
        text-align: left;
1536
    background-image: none;
1537
}
1538

    
1539
div.list table thead #flavor {
1540
    width: 100px !important;
1541
}
1542

    
1543
div.list table thead #group {
1544
    width: 40px !important;
1545
}
1546

    
1547
div.list table thead #status {
1548
    width: 50px !important;
1549
}
1550

    
1551
div.list table thead #name {
1552
    width: 70px !important;
1553
}
1554

    
1555
.spinner, .wave {
1556
    clear: right;
1557
    height: 20px;
1558
    float:right !important;
1559
    width: 20px;
1560
    margin: 5px 16px 0 15px !important;   
1561
}
1562

    
1563
.hidden {
1564
    display:none;
1565
}
1566

    
1567
div.actions a.selected, div.actions a.selected:hover {
1568
    display:block !important;
1569
    color: orange !important;
1570
}
1571

    
1572
.action_error .message, .action_error .code {
1573
    display: none;
1574
}
1575

    
1576
.fixed {
1577
    margin: 0 0 0 -32px !important;
1578
    bottom: 0;
1579
    position: fixed;
1580
}