Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ b1272faa

History | View | Annotate | Download (31.3 kB)

1
html, body, div, span, applet, object, iframe,
2
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
3
a, abbr, acronym, address, big, cite, code,
4
del, dfn, em, font, img, ins, kbd, q, s, samp,
5
small, strike, strong, sub, sup, tt, var,
6
b, u, i, center,
7
dl, dt, dd, ol, ul, li,
8
fieldset, form, label, legend,
9
table, caption, tbody, tfoot, thead, tr, th, td {
10
        margin: 0;
11
        padding: 0;
12
        border: 0;
13
        font-size: 100%;
14
        vertical-align: baseline;
15
        background: transparent;
16
    font-family: Verdana, 'PT Sans', sans-serif;
17
}
18

    
19
body {
20
        line-height: 1;
21
    background: url(../static/degrade-background.png) repeat-x scroll 0 0 #C3C3C3;
22
    margin: 0;
23
}
24

    
25
ol, ul {
26
        list-style: none;
27
}
28

    
29
blockquote, q {
30
        quotes: none;
31
}
32

    
33
blockquote:before, blockquote:after,
34
q:before, q:after {
35
        content: '';
36
        content: none;
37
}
38

    
39
/* remember to define focus styles! */
40
:focus {
41
    outline: 1px dotted #87AADE;
42
}
43

    
44
/* remember to highlight inserts somehow! */
45
ins {
46
        text-decoration: none;
47
}
48

    
49
del {
50
        text-decoration: line-through;
51
}
52

    
53
/* tables still need 'cellspacing="0"' in the markup */
54
table {
55
        border-collapse: collapse;
56
        border-spacing: 0;
57
}
58

    
59
h5 {
60
    font-weight: normal;
61
    font-size: 9pt;
62
    margin-bottom:3px;
63
}
64

    
65
/* root element for tabs  */
66
ul.css-tabs {
67
        margin: 0 0 0 10px; 
68
    padding: 0;
69
        height:31px;
70
    font-size:32px;        
71
    overflow: hidden;         
72
}
73

    
74
ul.css-tabs .secondary {
75
    position:relative;
76
}
77

    
78
/* single tab */
79
ul.css-tabs li {  
80
        float:left;         
81
        padding:0; 
82
        margin: 0 10px 0 0;  
83
        list-style-type:none;        
84
}
85

    
86
/* link inside the tab. uses a background image */
87
ul.css-tabs a { 
88
        float:left;
89
        display:block;
90
        text-decoration:none;
91
        color:#d2d2d2;
92
        position:relative;
93
        outline:0;
94
    padding: 0 9px 0 13px;
95
    top: 9px;
96
}
97

    
98
ul.css-tabs a#machines {
99
    color: #a3bbc5;
100
}
101

    
102
ul.css-tabs a#machines.current {
103
  color: #87aade;
104
}
105

    
106
ul.css-tabs a#disks {
107
    color: #deb358;
108
}
109

    
110
ul.css-tabs a#disks.current {
111
    color: #dea842;
112
}
113

    
114
ul.css-tabs a#images {
115
    color: #9ba97b;
116
}
117

    
118
ul.css-tabs a#images.current {
119
    color: #87a06d;
120
}
121

    
122
ul.css-tabs a#networks {
123
    color: #bc9399;
124
}
125

    
126
ul.css-tabs a#networks.current {
127
  color: #9d6d6a;
128
}
129

    
130
ul.css-tabs a#files {
131
    color: #a3bbc5;
132
}
133

    
134
ul.css-tabs a#files.current {
135
  color: #87aade;
136
}
137

    
138
ul.css-tabs a#desktops {
139
    color: #deb358;
140
}
141

    
142
ul.css-tabs a#desktops.current {
143
    color: #dea842;
144
}
145

    
146
ul.css-tabs a#apps {
147
    color: #9ba97b;
148
}
149

    
150
ul.css-tabs a#apps.current {
151
    color: #87a06d;
152
}
153

    
154
.more-tabs {
155
    float: right;
156
    margin: -15px 50px 0px 0px;
157
}
158

    
159
.more-tabs:hover {
160
    cursor: pointer;
161
}
162
        
163
/* selected tab */
164
ul.css-tabs a.current {
165
        cursor:default;   
166
    top: 2px !important; 
167
}
168

    
169
/* tab pane */
170
div.css-panes {
171
/*    border-top: 10px solid #87aade;
172
    border-bottom: 10px solid #87aade;  */
173
    background: white;
174
}
175

    
176
.css-panes > div.pane {
177
        display:none;
178
        padding:0px 20px;
179
    margin: 0 1em;
180
}
181

    
182
/* CSS3 border radius for various elements. yea - CSS isn't perfect */
183
.rounded, #sheet input, .error {
184
        border-radius: 5px;
185
        -webkit-border-radius: 5px;
186
        -moz-border-radius: 5px;
187
        -o-border-radius: 5px;
188
        -khtml-border-radius: 5px;
189
}
190

    
191
/* validation error message */
192
.error {
193
        background-color:#E8FF6D;
194
        padding:4px;
195
        -webkit-box-shadow: #000 0 0 9pt;
196
        -moz-box-shadow: #000 0 0 9pt;
197
}
198

    
199
/* nested arrow inside error message. It's 100% CSS. No images. */
200
.error em {
201
        border: 10px solid;
202
        border-color: #E8FF6D transparent transparent;
203
        bottom: -17px;
204
        display: block;
205
        height: 0;
206
        left: 10px;
207
        position: absolute;
208
        width: 0;
209
}
210

    
211
/* input field that caused validation error */
212
.invalid {
213
        background-color: rgba(221, 233, 255, 0.898) !important;
214
}
215

    
216
#create {
217
    background-color: #87aade;
218
    color: #000;
219
    cursor: pointer;
220
    display: none;
221
    padding: 6px 24px;
222
    margin: -8px 0 20px -36px;
223
    width: 125px;
224
    text-decoration: none;
225
}
226

    
227
#create:hover {
228
    background-color: #a8c5f1;
229
}
230

    
231
#header .fatborder{
232
    height: 60px;
233
    background: #999;
234
}
235

    
236
div#wrapper {
237
    width: 700px;
238
    margin: 0em auto;
239
}
240

    
241
.modal {
242
    background-color:#fff;
243
    display:none;
244
    width:30em;
245
    height:20em;
246
    padding:1em;
247
    text-align:left;
248
}
249

    
250
/* scrollable root element */
251
#wizard {        
252
        font-size:9pt;
253
        height:405px;
254
        width:453px;
255
        margin:0px auto;        
256
        overflow:hidden;
257
        position:absolute !important;
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
    margin-bottom:6px;
459
    margin-top:6px;
460
}
461

    
462
#wizard #cancel {
463
    text-align: center;
464
}
465

    
466
#wizard #start {
467
    text-align: center;
468
    background-color: #FF6600;
469
    border-color: #FF6600;
470
}
471

    
472
#wizard #start:hover {
473
    background-color: #FF9651;
474
    border-color: #FF9651;
475
}
476

    
477
.page ul {
478
    height: 270px;
479
    overflow: auto;
480
}
481

    
482
.panes ul.pane {
483
    height: 220px;
484
}
485

    
486
.page ul.tabs {
487
    overflow: hidden;
488
    height: auto;
489
    margin-bottom: 2px;
490
    margin-top: -5px;
491
}
492

    
493
.page ul.tabs li {
494
    float: right;
495
    margin: 0 0.2em;
496
}
497

    
498
#status li {
499
        float: left;
500
        color: #7D7D7D;
501
    padding: 0px 72px 0 40px;
502
    margin-top: -1px;
503
}
504

    
505
#status li.active .headernumber {
506
    color: #FFFFFF;
507
}
508

    
509
#status li.active .headerbody {
510
    color: #5599FF;
511
}
512

    
513
div.image-container {
514
    border-bottom: 1px solid #CCCCCC;
515
    margin-left: 10px;
516
    margin-right: 10px;
517
}
518

    
519
#page2-container {
520
    background-color: #ECECEC;
521
    padding-top: 25px;
522
    height: 180px;
523
}
524

    
525
#page3-container {
526
    background-color: #ECECEC;
527
    padding-left: 50px;
528
    height: 244px;
529
    margin-bottom: 32px;
530
}
531

    
532
/* slider root element */
533
.slider {
534
    border: 1px solid #666;
535
    cursor: pointer;
536
    display: inline !important;
537
    float: left;
538
    margin: 5px 0 20px 10px;
539
    position: relative;
540
    width: 250px;
541
}
542

    
543
.sliders {
544
    float:left;
545
    width: 40px;
546
    margin-left: 10px;  
547
    margin-top: 3px;
548
}
549

    
550
.units {
551
    padding-left:10px;
552
}
553

    
554
.slider-container {
555
    padding-bottom: 15px;
556
    margin-left: 5px;
557
}
558

    
559
/* drag handle */
560
.handle {
561
    -moz-box-shadow: 0 0 2px #000000;
562
    background: url("../static/h30.png") repeat-x scroll 0 0 #FFFFFF;
563
    border: 1px solid #000000;
564
    cursor: move;
565
    display: block;
566
    height: 10px;
567
    margin-top: -8px;
568
    position: absolute;
569
    width: 8px;
570
}
571

    
572
/* progress bar (enabled with progress: true) */
573
.progress {
574
        height: 3px; 
575
        background-color: #676767;
576
}
577

    
578
/* the input field */
579
.range {
580
        float: left;
581
        font-size: 100%;
582
        margin: -3px 0 0 15px;
583
    padding: 2px 10px 2px 0;
584
        text-align: right;
585
        width: 40px;
586
    border: 1px solid #111111;
587
}
588

    
589
.selectedrange {
590
    border-color: #5599FF;
591
}
592

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

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

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

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

    
622
.machine .name, .machine .ip {
623
    text-decoration: none !important;
624
}
625

    
626
.state {
627
    float: right;
628
}
629

    
630
.state div {
631
    text-align: right;
632
    margin-right: 3px;
633
}
634

    
635
div.machine div.actions {
636
    float: right;
637
    width: 70px;
638
    margin:0px -70px 0 0;
639
    font-weight: normal;
640
}
641

    
642
div.machine div.actions a {
643
    color: transparent;
644
    margin: 0 0 5px 8px;
645
    display: block;
646
}
647

    
648
div.machine div.actions a.action-shutdown {
649
    margin-bottom: 5px;
650
    display: block;
651
}
652

    
653
div.machine div.actions a.shutdown-padding {
654
    margin-bottom: 22px;
655
}
656

    
657
div.machine div.actions a.destroy-padding {
658
    margin-top: 52px;
659
}
660

    
661
div.actions a.enabled:hover{
662
    color: black !important;
663
    text-decoration: underline;
664
    display: block;
665
}
666

    
667
.machine:hover .actions a {
668
    color: #3d3d3d;
669
    display: block;
670
}
671

    
672
div.machine div.display a{
673
    color: #3d3d3d;
674
    display: block;
675
}
676

    
677
div.machine div.actions a.selected:hover {
678
    color: orange;
679
}
680

    
681
div.running div.machine a.action-start {
682
    display: none;
683
}
684

    
685
div.terminated div.machine a.action-reboot, div.terminated div.machine a.action-shutdown{
686
    display: none;
687
}
688

    
689
div.terminated div.machine div.actions a.action-destroy {
690
    margin-top: 38px;
691
}
692

    
693
.machine:hover {
694
    background-color:#dcdcdc;
695
}
696

    
697
.standard .machine img {
698
    float: left;
699
    margin: 7px 14px 0;
700
}
701

    
702
.list .machine img {
703
    margin: 0;
704
}
705

    
706
div.ip, div.state {
707
    font-size: 9pt;
708
    color: #3d3d3d;
709
}
710

    
711
div.indicator {
712
    width:10px;
713
    height:11px;
714
    margin: 3px -1px;
715
    clear: none;
716
    float:right;
717
}
718

    
719
.view-separator {
720
    color:#5F8DD3;    
721
}
722

    
723
.running .indicator {
724
    border-top: 2px solid white;
725
    border-bottom: 2px solid white;
726
    border-left: 2px solid white;
727
    border-right: 3px solid white;
728
    background-color: #87AADE;
729
}
730

    
731
.terminated {
732
    margin-bottom: 17px;
733
}
734

    
735
.terminated .machine .state .status {
736
    color: #666;
737
}
738

    
739
.machine:hover div.uptime, .machine:hover a.rename, .machine:hover a.configure {
740
    color: #3d3d3d;
741
}
742

    
743
div.uptime {
744
    clear: both;
745
    color: transparent;
746
    margin-left: 1px;
747
}
748

    
749
div.machine-tabs {
750
    margin-top: 1em;
751
}
752

    
753
span.rename, span.configure {
754
    background-repeat: no-repeat;
755
    color: transparent;
756
    font-size: 9pt;
757
    font-weight: normal;
758
    margin-left: 10px;
759
    padding-left: 10px;
760
    text-align: left;
761
}
762

    
763
span.rename {
764
    cursor: pointer;
765
}
766

    
767
div.name:hover span.rename {
768
    color: #3D3D3D;
769
    margin-top: 0.4em;
770
    background-image: url(/static/pencil.png);
771
    background-position: 0 3px;
772
}
773

    
774

    
775
a.settings:hover span.configure {
776
    color: #3D3D3D;
777
}
778

    
779
button {
780
    background-color: #87AADE;
781
    border: 1px solid #87AADE;
782
    color: #FFFFFF;
783
    cursor: pointer;
784
    height: 23px;
785
    width: 120px;
786
}
787

    
788
button.next:hover {
789
    background-color: #68A4FF;
790
    border-color: #68A4FF;
791
}
792

    
793
button.prev:hover {
794
    background-color: #888888;
795
    border-color: #888888;
796
}
797

    
798
button.next {
799
    background-color: #5599FF;
800
    border-color: #5599FF;
801
    text-align: right;
802
}
803

    
804
button.prev {
805
    background-color: #666;
806
    border:none;
807
    margin-left: -1px;
808
    text-align: left;
809
}
810

    
811
.image-logo {
812
    float: left;
813
    margin-right: 1em;
814
    margin-left: 1.5em;
815
    margin-top: 4px;
816
}
817

    
818
div.image {
819
    clear: both;
820
    display: block;
821
    margin-bottom: 3px;
822
    margin-top: 3px;
823
    padding: 5px;
824
}
825

    
826
div#view-select {
827
    float: right;
828
    clear: both;
829
    color: white;
830
    margin-top: -42px;
831
    margin-right: -36px;
832
    font-size: 9pt;
833
    background-color: #87aade;
834
    padding: 5px 10px;
835
    display:none;
836
}
837

    
838
a#standard, a#list, a#single {
839
    text-decoration: none;
840
    height: 15px;
841
    width: 17px;
842
    padding: 1px 8px 2px 9px;
843
    font-size: 11px;
844
}
845

    
846
div#view-select a {
847
    color:#5f8dd3;
848
}
849

    
850
a#list:hover {
851
    background: #5f8dd3;
852
}
853

    
854
a#standard:active, a#list:active {
855
    color:white;
856
}
857

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

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

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

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

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

    
878
a#single:hover {
879
    background: url(/static/single-view.png) no-repeat -18px 0;
880
}
881

    
882
a#standard.activelink {
883
    background: url(/static/icon-view.png) no-repeat 0px 0;
884
}
885

    
886
a#list.activelink {
887
    background: url(/static/list-view.png) no-repeat 0px 0;
888
}
889

    
890
a#single.activelink {
891
    background: url(/static/single-view.png) no-repeat 0px 0;
892
}
893

    
894
#machinetype {
895
    background-color: #CCCCCC;
896
    height: 25px;
897
    margin-bottom: 4px !important;
898
}
899

    
900
div.machine-type {
901
    float: left;
902
    margin: 4px 18px 20px;
903
}
904

    
905
.machine-type .active {
906
    color: #FFFFFF
907
}
908

    
909
#machinesview {
910
    min-height: 270px;
911
    margin-top: 30px;
912
}
913

    
914
.list#machinesview {
915
    margin-left: -20px;
916
    display:none;
917
}
918

    
919
#machinesview_wrapper.list {
920
    margin-left: -20px;
921
}
922

    
923
#machinesview_wrapper {
924
    min-height: 270px;
925
}
926

    
927
#machinesview_content {
928
    display:none;
929
}
930

    
931
.list-machines {
932
    min-width: 515px;
933
}
934

    
935
#emptymachineslist {
936
    display:none; 
937
    color: #A0A0A0;
938
    background-image: url(/static/emptydegradebg.png);
939
    width: 400px;
940
    margin-top: 40px;
941
    padding: 5px;
942
    padding-left: 10px;
943
    margin-left: -10px;
944
}
945

    
946
#welcomeheader {
947
    color:white;
948
}
949

    
950
.welcomebody {
951
    color:black;
952
    font-size:80%;
953
}
954

    
955
.welcomebody a {
956
    color:black;
957
}
958

    
959
.welcomefooter {
960
    color:black;
961
    font-size:60%;
962
}
963

    
964
.welcomefooter a {
965
    color:black;
966
}
967

    
968
.emptycreatecontainer {
969
    margin-left: 430px !important;
970
    position: absolute;
971
    margin-top: 40px;
972
    width: 180px;
973
    background-color: #CCCCCC;
974
    padding: 5px;
975
    padding-left: 10px;
976
}
977

    
978
.emptycreate {
979
    margin: 20px 10px 5px 0 !important;
980
}
981

    
982
#createbody {
983
    display:none;
984
    font-size: 80%;
985
}
986

    
987
div.list label img {
988
    margin: 5px 5px -3px 0;
989
}
990

    
991
div.list label {
992
    color: #3D3D3D;
993
    font-size: 9pt;
994
}
995

    
996
div.list .state {
997
    margin-top: 7px;
998
    margin-right: 10px;
999
}
1000

    
1001
div.list table tbody {
1002
    margin-top: 8px;
1003
}
1004

    
1005
div.list .stopped {
1006
    margin-top: 8px;
1007
}
1008

    
1009
/* root element for tabs  */
1010
#wizard ul.tabs { 
1011
    margin-right: -1px;
1012
    float: right;                         
1013
}
1014

    
1015
#wizard div.panes {
1016
    height: 252px;
1017
    margin-bottom: 6px;
1018
    clear:both;
1019
}
1020

    
1021
.typebody {
1022
    font-size: 80%;
1023
    font-weight: normal;
1024
    position: relative;
1025
    top: -3px;
1026
}
1027

    
1028
.typehover {
1029
    color: #FFFFFF;
1030
}
1031

    
1032
#label-name {
1033
    margin-top: 15px;
1034
}
1035

    
1036
/* single tab */
1037
#wizard ul.tabs li {  
1038
    margin-bottom: 0; 
1039
        list-style-type:none;
1040
    float: left;        
1041
}
1042

    
1043
/* link inside the tab. uses a background image */
1044
#wizard ul.tabs a { 
1045
        display:block;
1046
    padding: 0.3em 0.5em 0.5em 0.4em;
1047
        text-decoration:none;
1048
        color: #FFFFFF;
1049
        position:relative;
1050
        top:1px;
1051
        outline:0;
1052
    background-color: #CCCCCC;
1053
    text-align: center;
1054
    width: 100px;
1055
    white-space: nowrap;
1056
}
1057

    
1058
#wizard ul.tabs a:hover {
1059
        color: #FFFFFF;
1060
    background-color:#AAAAAA;
1061
}
1062
        
1063
/* selected tab */
1064
#wizard ul.tabs a.current {
1065
        color: white;
1066
    background-color: #666;        
1067
        cursor: default;
1068
}
1069

    
1070
#wizard #standard-images {
1071
    background-color: #ECECEC;
1072
}
1073

    
1074
div.list div.actions {
1075
    display: none;
1076
    clear: left;
1077
    float: right;
1078
    margin-right: -20px;
1079
    margin-top: 37px;
1080
    text-align: right;
1081
    width: 150px;
1082
}
1083

    
1084
div.list div.actions a {
1085
    clear: left;
1086
    color: #D3D3D3;
1087
    display: block;
1088
    font-size:9pt;
1089
    margin-bottom: 2px;
1090
}
1091

    
1092
div.list div.actions a.enabled {
1093
    color: #3D3D3D;
1094
}
1095

    
1096
div.list div.actions a.enabled:hover{
1097
    cursor: pointer;
1098
    color: black;
1099
    text-decoration: underline;
1100
}
1101

    
1102
input.machine {
1103
    width: 13px;
1104
    height: 13px;
1105
    top: -1px;
1106
    overflow: hidden;
1107
}
1108

    
1109
/* metadata editing boxes */
1110
.meta-modal {
1111
    background-color:#fff;
1112
    display:none;
1113
    padding:1em;
1114
    text-align:left;
1115
    width:380px;
1116
    height:360px;
1117
    font-size: 80%;
1118
}
1119

    
1120
.meta-modal .close {
1121
        background-image: url(/static/close-grey.png);
1122
        position: absolute;
1123
        right: -15px;
1124
        top: -17px;
1125
        cursor: pointer;
1126
        height: 32px;
1127
        width: 32px;
1128
}
1129

    
1130
.meta-modal div.container {
1131
    height:330px;
1132
}
1133

    
1134
.meta-modal h3 {
1135
    font-weight: normal;
1136
}
1137

    
1138
.meta-modal hr {
1139
    background-color: #666;
1140
    border: 0 none;
1141
    height: 5px;
1142
    margin: 0; 
1143
}
1144

    
1145
.meta-modal hr.topruler {
1146
    margin-top: 5px; 
1147
}
1148

    
1149
.meta-modal hr.fatruler {
1150
    height: 20px;
1151
    margin-top: 2px;
1152
    margin-bottom: 20px;
1153
}
1154

    
1155
.meta-modal hr.meta-separator {
1156
    width: 320px;
1157
    margin: 5px 0 2px 0;
1158
}
1159

    
1160
.meta-modal div.bottomruler {
1161
    background-color: #666;
1162
    height: 20px;
1163
    margin-top: 22px;
1164
}
1165

    
1166
.meta-modal div.content {
1167
    height: 248px;
1168
    width: 345px;
1169
    margin-left: 15px;
1170
    overflow: auto;
1171
}
1172

    
1173
.meta-modal div.content li {
1174
    margin-bottom: 20px;
1175
}
1176

    
1177
.meta-modal p {
1178
    margin-left: 7px;
1179
}
1180

    
1181
.meta-modal button {
1182
    font-size: 80%;
1183
    width: 87px;
1184
    float: right;
1185
    background-color: #5599FF;
1186
    border: 0px solid #5599FF;
1187
    padding: 0;
1188
    margin-right: 25px;
1189
}
1190

    
1191
.meta-modal button.remove {
1192
    height: 15px;
1193
    width: 70px;
1194
    background-color: #d35f5f;
1195
    border-color: #d35f5f;
1196
    margin-top: 2px;
1197
}
1198

    
1199
.meta-modal button.edit {
1200
    height: 15px;
1201
    width: 70px;
1202
    background-color: #666;
1203
    border-color: #666;
1204
    margin-top: -14px;
1205
}
1206

    
1207
.meta-modal button.create {
1208
    height: 23px;
1209
    margin: 10px 44px 0 0;
1210
}
1211

    
1212
.meta-modal input, .meta-modal textarea {
1213
    font-style: italic;
1214
    text-align: right;
1215
    color: #ccc;
1216
}
1217

    
1218
.meta-modal input {
1219
    font-size: 80%;
1220
}
1221

    
1222
.meta-modal input.key {
1223
    width: 279px;
1224
    margin-bottom: -3px;
1225
}
1226

    
1227
.meta-modal textarea.value {
1228
    width: 267px;
1229
    height: 170px;
1230
    overflow: auto;
1231
}
1232

    
1233
.meta-modal .input-enabled {
1234
    color: black;
1235
    text-align: left;
1236
    font-style: normal;
1237
}
1238

    
1239
.meta-modal label.meta-value {
1240
    vertical-align: top;
1241
}
1242

    
1243
.meta-modal button.save {
1244
    margin-top: 11px;
1245
}
1246

    
1247
.meta-modal button.cancel {
1248
    float: left;
1249
    margin: 11px 0 0 25px;
1250
    background-color: #d35f5f;
1251
    border-color: #d35f5f;
1252
}
1253

    
1254

    
1255
/* notification box */
1256
#error-success, #yes-no {
1257
    height: 150px;
1258
    border: 5px solid #87AADE;
1259
    z-index: 9999;
1260
}
1261

    
1262
#error-success p, #yes-no p, #yes-no button {
1263
    margin-top: 15px;
1264
}
1265

    
1266
#error-success strong {
1267
    color: #F49C1A;
1268
}
1269

    
1270
#error-success div {
1271
    height: 142px;
1272
    overflow-y: auto;
1273
    overflow-x: hidden;
1274
}
1275

    
1276
#error-success .close {
1277
        background-image: url(/static/close.png);
1278
        position: absolute;
1279
        right: -19px;
1280
        top: -20px;
1281
        cursor: pointer;
1282
        height: 35px;
1283
        width: 35px;
1284
}
1285

    
1286
/* Confirmation boxes */
1287
div.confirm_single, div.confirm_multiple {
1288
    display: none;
1289
    background-color: #DCDCDC;
1290
    color: orange;
1291
    font-size: 9pt;
1292
}
1293

    
1294
div.action_error {
1295
    float: right;
1296
    width: 80px;
1297
    height: 60px;
1298
    padding: 5px;
1299
    margin: -65px -165px 0 0;
1300
    display: none;
1301
    background-color: #DCDCDC;
1302
    font-size: 9pt;
1303
    color: black;
1304
    line-height: 1.5;
1305
}
1306

    
1307
div.action_error button.details {
1308
    margin: 5px 0 0 0px;
1309
    padding: 0 15px;
1310
}
1311

    
1312
.orange {
1313
    color: orange;
1314
}
1315

    
1316
div.confirm_single button, div.confirm_multiple button, div.action_error button{
1317
    font-size: 9pt;
1318
    background-color: #DCDCDC;
1319
    border: 1px solid #a5a5a5;
1320
    color: #3D3D3D;
1321
    cursor: pointer;
1322
    padding: 0px;
1323
    height: 20px !important;
1324
}
1325

    
1326
div.confirm_single button, .action_error button {
1327
    width: 80px !important;
1328
}
1329
div.confirm_single button.yes, div.confirm_multiple button.yes {
1330
    border-color: orange;
1331
    padding: 0 12px;
1332
}
1333

    
1334
div.confirm_single button.yes:hover, div.confirm_multiple button.yes:hover {
1335
    background-color: orange;
1336
}
1337

    
1338
div.confirm_single button.no, div.confirm_multiple button.no {
1339
    padding: 0px 16px;
1340
}
1341

    
1342
div.confirm_single button.no:hover, div.confirm_multiple button.no:hover, div.action_error button.details:hover {
1343
    background-color: #a5a5a5;
1344
}
1345

    
1346
div.confirm_single{
1347
    float: right;
1348
    width: 90px;
1349
    height: 70px;
1350
    margin: -65px -165px 0 0;
1351
}
1352

    
1353
div.confirm_single button.yes {
1354
    margin: 5px 0 0 5px;
1355
}
1356

    
1357
div.confirm_single button.no {
1358
    margin: 20px 0 0 5px;
1359
}
1360

    
1361
div.action_error {
1362
    display: none;
1363
}
1364

    
1365
div.confirm_multiple {
1366
    width: 692px;
1367
    height: 28px;
1368
    margin: 0 0 10px -32px;
1369
}
1370

    
1371
div.confirm_multiple p {
1372
    float: left;
1373
    margin: 7px 0 0 200px;
1374
}
1375

    
1376
div.confirm_multiple button {
1377
    float: right;
1378
    margin: 4px 5px 0 0;
1379
}
1380

    
1381
div.confirm_multiple button.no {
1382
    margin-right: 15px;
1383
}
1384

    
1385
div#user{
1386
    float:right;
1387
    clear: both;
1388
    color: #a0a0a0;
1389
    font-size: 9pt;
1390
    margin-top: 16px;
1391
}
1392

    
1393
div#user a{
1394
    color: #a0a0a0;
1395
    text-decoration: none;
1396
}
1397

    
1398
div#user a.current_lang {
1399
    color: #d3d3d3;
1400
}
1401

    
1402
.separator {
1403
    background-color: #87AADE;
1404
    height: 10px;
1405
    width: 700px;
1406
    margin: 0 0 0 -36px;
1407
}
1408

    
1409
#mini.separator {
1410
    width: 535px;
1411
    height: 5px;
1412
    margin: 17px 0 17px -36px;
1413
    display: none;
1414
}
1415

    
1416
#disks.separator {
1417
    background-color: #dea842;
1418
}
1419

    
1420
#images.separator {
1421
    background-color: #87a06d;
1422
}
1423

    
1424
#networks.separator {
1425
    background-color: #6c535d;
1426
}
1427

    
1428
#desktops.separator {
1429
    background-color: #dea842;
1430
}
1431

    
1432
#apps.separator {
1433
    background-color: #87a06d;
1434
}
1435

    
1436
.machine .separator {
1437
    width: 508px;
1438
    height: 1px;
1439
    margin: 8px 0 0 15px;
1440
    background-color: #DCDCDC;
1441
}
1442

    
1443
.machine h5 {
1444
    margin: 0px 60px 1px 84px;
1445
}
1446

    
1447
.machine .settings {
1448
    margin-top: 13px;
1449
}
1450

    
1451
.editbuttons {
1452
    display: block;
1453
    clear: none;
1454
    width: 40px;
1455
    margin-right:33%;
1456
    margin-top:1px;
1457
    float:right;
1458
    cursor: pointer;
1459
}
1460

    
1461
.editbuttons .save:hover, .editbuttons .cancel:hover {
1462
    background-color: #CCCCCC;
1463
}
1464

    
1465
.editbuttons .cancel:hover {
1466
    background-image: url("../static/cancel-onhover.png");
1467
}
1468

    
1469
.editbuttons .cancel, .editbuttons .save {
1470
    padding-left: 16px;
1471
    padding-top: 2px;
1472
    background-repeat: no-repeat;
1473
    color: transparent;
1474
    font-size: 9pt;
1475
}
1476
.editbuttons .cancel {
1477
    background-image: url("../static/cancel.png");
1478
    margin-left: 3px;
1479

    
1480
}
1481

    
1482
.editbuttons .save {
1483
    background-image: url("../static/save.png");
1484
    margin-left: 1px;
1485
}
1486

    
1487
.editbuttons img {
1488
    float:none !important;
1489
    margin: 0px !important;
1490
}
1491

    
1492
.namecontainer {
1493
    line-height: 23px;
1494
}
1495

    
1496
.nametextbox {
1497
    height: 13px;
1498
    font-size: 95%;
1499
}
1500

    
1501
#spinner {
1502
    background: url("../static/progress.gif");
1503
    height: 31px;
1504
    width: 31px;
1505
    margin-left: 298px;
1506
    margin-top: 160px; 
1507
}
1508

    
1509
/* tables in list view */
1510
div.list div.dataTables_filter,  div.list div.dataTables_filter input{
1511
    font-size: 9pt;
1512
    display: none;
1513
}
1514

    
1515
div.list div.dataTables_filter input{
1516
    height: 12px;
1517
    margin-bottom: 12px;
1518
}
1519

    
1520
div.list table {
1521
    width: 515px;
1522
    font-size: 9pt;
1523
}
1524

    
1525
div.list table tbody td {
1526
        color: #3D3D3D;
1527
        padding:6px;
1528
        background-color: #FFF;
1529
        vertical-align: middle;
1530
}
1531

    
1532
div.list table thead tr th {
1533
        background-color: #E6EEEE;
1534
        background-image: url(bg.gif);
1535
        background-repeat: no-repeat;
1536
        background-position: right 11px;
1537
    font-weight: normal; 
1538
        border: 1px solid #FFF;
1539
    border-bottom: none;
1540
        padding: 4px;
1541
    text-align: left;
1542
    vertical-align: middle;
1543
        cursor: pointer;
1544
}
1545

    
1546
div.list table thead .sorting_asc, div.list table thead .sorting_desc {
1547
    background-color: #87AADE;
1548
}
1549

    
1550
div.list table thead .sorting_asc {
1551
        background-image: url(asc.gif);
1552
}
1553

    
1554
div.list table thead .sorting_desc {
1555
        background-image: url(desc.gif);
1556
}
1557

    
1558
div.list table .selection div.expand-icon {
1559
        background-image: url(asc.gif);
1560
        background-repeat: no-repeat;
1561
    position: relative;
1562
        cursor: pointer;
1563
    width: 15px;
1564
    height: 4px;
1565
    left: 19px;
1566
    top: -11px;
1567
}
1568

    
1569
ul.dropdown-selector {
1570
    background-color: #E6EEEE;
1571
    position: absolute;
1572
    margin-left: 1px;
1573
    display: block;
1574
    top: 255px;
1575
    font-size:9pt;
1576
    width:40px;
1577
}
1578

    
1579
ul.dropdown-selector li {
1580
    padding: 4px;
1581
}
1582

    
1583
ul.dropdown-selector li:hover {
1584
    background-color: #87AADE;
1585
}
1586

    
1587
ul.dropdown-selector li a{
1588
    color: black;
1589
    text-decoration: none;
1590
}
1591

    
1592
div.list table span.imagetag { 
1593
    display: none;
1594
}
1595

    
1596
div.list table thead .vmos {
1597
    width: 20px !important;
1598
    vertical-align:middle;
1599
}
1600

    
1601
div.list table .selection {
1602
        width: 20px !important;
1603
        text-align: left;
1604
    background-image: none;
1605
}
1606

    
1607
div.list table thead .vmflavor {
1608
    width: 100px !important;
1609
}
1610

    
1611
div.list table thead .vmgroup {
1612
    width: 40px !important;
1613
}
1614

    
1615
div.list table thead .vmstatus {
1616
    width: 50px !important;
1617
}
1618

    
1619
div.list table thead .vmname {
1620
    width: 70px !important;
1621
}
1622

    
1623
.spinner, .wave {
1624
    clear: right;
1625
    height: 20px;
1626
    float:right !important;
1627
    width: 20px;
1628
    margin: 5px 16px 0 15px !important;   
1629
}
1630

    
1631
.hidden {
1632
    display:none;
1633
}
1634

    
1635
div.actions a.selected, div.actions a.selected:hover {
1636
    display:block !important;
1637
    color: orange !important;
1638
}
1639

    
1640
.action_error .message, .action_error .code {
1641
    display: none;
1642
}
1643

    
1644
.fixed {
1645
    margin: 0 0 0 -32px !important;
1646
    bottom: 0;
1647
    position: fixed;
1648
}
1649

    
1650
/* Networks */
1651
#networkscreate {
1652
    background-color: #6C535D;
1653
    color: #FFFFFF;
1654
    cursor: pointer;
1655
    padding: 6px 24px;
1656
    text-decoration: none;
1657
    width: 125px;
1658
}
1659

    
1660
#networks-container {
1661
    min-height: 500px;
1662
}
1663

    
1664
#networks-createcontainer {
1665
    margin-left: -36px;
1666
    margin-top: 17px;  
1667
}
1668

    
1669
div.network a.action-network-add {
1670
    display: none;
1671
}
1672

    
1673
div.network a.action-netowrk-edit {
1674
    display: none;
1675
}
1676

    
1677
div.network a.action-network-destroy {
1678
    display: none;
1679
}
1680

    
1681
div.network {
1682
    clear: both;
1683
    color: #666666;
1684
    min-height: 65px;
1685
    margin: 30px 0 0 -30px;
1686
    padding: 3px 20px 0 4px;
1687
    width: 500px;
1688
}
1689

    
1690
#network-template {
1691
    margin: 2px 0 0 -30px;
1692
}
1693

    
1694
.network a {
1695
    color: #3d3d3d;
1696
    font-weight: normal;
1697
    text-decoration: none;
1698
    font-size: 9pt;
1699
}
1700

    
1701
.network a:hover {
1702
    color: #000;
1703
    text-decoration: underline;
1704
}
1705

    
1706
#networks-container .name {
1707
    text-decoration: none !important;
1708
    margin-bottom: 25px;
1709
    color: #000000;
1710
    margin-top: -4px;
1711
}
1712

    
1713
.state {
1714
    float: right;
1715
}
1716

    
1717
.state div {
1718
    text-align: right;
1719
    margin-right: 3px;
1720
}
1721

    
1722
div.network div.actions {
1723
    float: right;
1724
    width: 100px;
1725
    margin:0px -120px 0 0;
1726
    font-weight: normal;
1727
}
1728

    
1729
div.network div.actions a {
1730
    color: transparent;
1731
    margin: 0 0 5px 8px;
1732
    display: block;
1733
}
1734

    
1735
div.actions a.enabled:hover{
1736
    color: black !important;
1737
    text-decoration: underline;
1738
    display: block;
1739
}
1740

    
1741
.network:hover .actions a {
1742
    color: #3d3d3d;
1743
    display: block;
1744
}
1745

    
1746
div.network div.display a{
1747
    color: #3d3d3d;
1748
    display: block;
1749
}
1750

    
1751
div.network div.actions a.selected:hover {
1752
    color: orange;
1753
}
1754

    
1755
.network:hover {
1756
    background-color:#dcdcdc;
1757
}
1758

    
1759
#internet-separator {
1760
    width: 510px;
1761
    height: 5px;
1762
    background-color: #6C535D;
1763
    margin-left: -36px;
1764
    margin-top: 20px;
1765
}
1766

    
1767
.network-logos {
1768
    float:left;
1769
    padding-right: 10px;
1770
}
1771

    
1772
#networks-container .settings {
1773
    color: #000000;
1774
}
1775

    
1776
#networks-container .network-type {
1777
    float: right;
1778
    margin-top: -4px;
1779
    margin-right: 15px;
1780
}
1781

    
1782
#networks-container .indicator {
1783
    background-color: #87AADE;
1784
    border-color: white;
1785
    border-style: solid;
1786
    border-width: 2px 3px 2px 2px;
1787
}
1788

    
1789
.state div {
1790
    margin-right: 3px;
1791
    text-align: right;
1792
}
1793

    
1794
div.indicator {
1795
    clear: none;
1796
    float: right;
1797
    height: 11px;
1798
    margin: 3px -1px;
1799
    width: 10px;
1800
}
1801

    
1802
#private-networks {
1803
    margin-top: 20px;
1804
}
1805

    
1806
span.rename-network, span.configure {
1807
    background-repeat: no-repeat;
1808
    color: transparent;
1809
    font-size: 9pt;
1810
    font-weight: normal;
1811
    margin-left: 10px;
1812
    padding-left: 10px;
1813
    text-align: left;
1814
}
1815

    
1816
span.rename-network {
1817
    cursor: pointer;
1818
}
1819

    
1820
div.name:hover span.rename-network {
1821
    color: #3D3D3D;
1822
    margin-top: 0.4em;
1823
    background-image: url(/static/pencil.png);
1824
    background-position: 0 3px;
1825
}
1826

    
1827
.network:hover a.rename {
1828
    color: #3d3d3d;
1829
}
1830

    
1831
.action-network-destroy {
1832
    margin-top: 17px !important;
1833
}
1834

    
1835
.network-separator {
1836
    background-color: #DCDCDC;
1837
    height: 1px;
1838
    margin: 2px 0 0 -5px;
1839
    width: 480px;
1840
}
1841

    
1842
.network-contents {
1843
    margin-left: -4px;
1844
    width: 524px;
1845
    clear: both;
1846
    padding-bottom: 7px;
1847
}
1848

    
1849
.network-machine .state div {
1850
    text-align: left;
1851
}
1852

    
1853
.network-machine {
1854
    margin-left: 73px;
1855
    padding-bottom: 5px;
1856
    padding-left: 5px;
1857
    padding-top: 10px;
1858
    margin-top: 2px;
1859
}
1860

    
1861
.network-machine .logo {
1862
    float:left;
1863
    padding-right: 10px;
1864
}
1865

    
1866
#networks-container .machine-name {
1867
    text-decoration: none !important;
1868
    margin-bottom: 10px;
1869
    color: #000000;
1870
    margin-top: -4px;
1871
}
1872

    
1873
div.network div.machine-actions {
1874
    float: right;
1875
    width: 100px;
1876
    margin:0px -100px 0 0;
1877
    font-weight: normal;
1878
}
1879

    
1880
.discreet {
1881
    color: #969696;
1882
}
1883

    
1884
.network-contents-start-separator {
1885
    height: 3px;
1886
    background-color: #87AADE;
1887
    margin-bottom: 15px;
1888
    margin-left: 78px;
1889
    width: 425px;
1890
}
1891

    
1892
.network-contents-end-separator {
1893
    height: 3px;
1894
    background-color: #87AADE;
1895
    margin-top: 7px;
1896
    margin-left: 15px;
1897
    width: 488px;
1898
}
1899

    
1900
.network-machine .state {
1901
    margin-right: 18px;
1902
}
1903

    
1904
.network-machine .state .status {
1905
    margin-bottom: 4px;
1906
}
1907

    
1908
.machine-name .name {
1909
    margin-top: -10px !important;
1910
}
1911

    
1912
.machine-name .namecontainer {
1913
    line-height: 18px;
1914
    margin-bottom: 20px;
1915
}
1916

    
1917
.network-machine:hover {
1918
    background-color: #B3B3B3;
1919
}
1920

    
1921
.machines {
1922
    margin: 2px 0 0 73px;
1923
    width: 430px;
1924
    background-color: #B3B3B3;
1925
}
1926

    
1927
.firewall-on {
1928
    color: #42E342;
1929
}
1930

    
1931
.firewall-off {
1932
    color: #F82E2E;
1933
}
1934

    
1935
div.network-machine div.machine-actions a {
1936
    color: transparent;
1937
    margin: 0 0 5px 8px;
1938
    display: block;
1939
}
1940

    
1941
div.network-machine div.machine-actions a:hover {
1942
    color: black !important;
1943
    text-decoration: underline;
1944
    display: block;
1945
}
1946

    
1947
.network-machine:hover .machine-actions a {
1948
    color: #3d3d3d;
1949
    display: block;
1950
}
1951

    
1952
.firewall-content {
1953
    color: black;
1954
    font-size: 60%;
1955
    margin-left: 60px;
1956
}
1957

    
1958
.firewall-content .checkbox-legends {
1959
    vertical-align: text-top;
1960
}
1961

    
1962
.checkbox-legends a {
1963
    color: black;
1964
    text-decoration: underline;
1965
    font-size: 100%;
1966
}
1967

    
1968
.machine-connect {
1969
    color:black !important;
1970
    text-decoration: underline !important;
1971
}
1972

    
1973
.firewall-contents-start-separator {
1974
    background-color: #808080;
1975
    height: 2px;
1976
    margin-bottom: 5px;
1977
    width: 365px;
1978
}
1979

    
1980
.firewall-contents-end-separator {
1981
    background-color: #808080;
1982
    height: 2px;
1983
    margin-left: -60px;
1984
    margin-top: 5px;
1985
    width: 425px;
1986
}
1987

    
1988
.firewall-apply {
1989
    background-color: #666666;
1990
    border: medium none;
1991
    float: right;
1992
    font-size: 105%;
1993
    height: 18px;
1994
    margin-right: 20px;
1995
    margin-top: 3px;
1996
    width: 75px;
1997
}