Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ 0604f74f

History | View | Annotate | Download (15 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
242
.modal {
243
    background-color:#fff;
244
    display:none;
245
    width:30em;
246
    height:20em;
247
    padding:1em;
248
    text-align:left;
249
    opacity:0.9;
250
}
251
        
252
/* scrollable root element */
253
#wizard {        
254
        border:5px solid #87AADE;
255
        font-size:9pt;
256
        height:405px;
257
        width:460px;
258
        margin:0px auto;        
259
        overflow:hidden;
260
        position:relative;
261
}  
262

    
263
/* scrollable items */
264
#wizard .items {
265
        width:20000em;
266
        clear:both;
267
        position:absolute;
268
}
269

    
270
/* validation error message bar. positioned on the top edge */
271
#drawer {
272
        overflow:visible;
273
        position:fixed;
274
        left:0;
275
        top:0;
276
}
277

    
278
/* scrollable items */
279
#wizard .items {
280
        width:20000em;        
281
        clear:both;        
282
        position:absolute;        
283
    display:block;
284
    padding: 0;
285
    margin: 0;
286
    border:none;
287
    background:none;
288
}
289

    
290
/* single item */
291
#wizard .page {        
292
        padding:20px 30px;
293
        width:440px;
294
        float:left;        
295
    display:block;
296
    border:none;
297
    background-color: transparent;
298
}
299

    
300
/* title */
301
#wizard h2 {
302
        font-weight: bold;
303
    font-size: 12pt;
304
    color: #666;
305
}
306

    
307
#wizard li {
308
        margin-bottom:1.2em;
309
}
310

    
311
#wizard .pane li {
312
    margin: 0;
313
}
314

    
315
#wizard label {
316
        font-size:16px;        
317
        display:block;
318
    clear: both;
319
}
320

    
321
#wizard label strong {
322
        color:#789;        
323
        position:relative;
324
        top:-1px;
325
    font-size: 12pt;
326
}
327

    
328
#wizard label em {
329
        font-size:9pt;
330
        color:#666;        
331
        font-style:normal;
332
}
333

    
334
#wizard .text {
335
        width: 94%;
336
        padding: 5px;
337
    margin-top: 10px;
338
        border: 1px solid #ccc;
339
        color: #456;
340
        letter-spacing: 1px;
341
}
342

    
343
#wizard select {
344
        border:1px solid #ccc;
345
        width:94%;        
346
        padding:4px;
347
    display: none;
348
}
349

    
350
#wizard .double label { 
351
        width:50%;
352
        float:left;
353
}
354

    
355
#wizard .double .text {
356
        width:93%;        
357
}
358

    
359
#wizard .clearfix {
360
        clear:left;
361
        padding-top:10px;        
362
}
363

    
364
#wizard .right {
365
        float:right;                
366
}
367

    
368
#wizard .error {
369
        border:1px solid red;                
370
}
371

    
372
#wizard a:hover div.image {
373
    background-color: #999;
374
}
375

    
376
#wizard label a:hover strong {
377
    color: white;
378
}
379

    
380
#wizard div.image span.size {
381
    font-size: 9pt;
382
    color: #666;
383
}
384

    
385
#wizard div.image .radio {
386
    float: right;
387
}
388

    
389
#wizard div.image span.image-id, #wizard div.image span.description {
390
    font-size: 9pt;
391
    color: #666;
392
    font-weight: normal;
393
    display:inline;
394
}
395

    
396
#wizard a:hover div.image span.image-id, #wizard a:hover div.image span.description, #wizard a:hover div.image span.size {
397
    color: white;
398
}
399

    
400
#wizard .cost {
401
    color: #666;
402
    margin-top: 50px;
403
}
404

    
405
#wizard #status {
406
        height: 32px;
407
        background: #999;
408
    padding-left: 15px;
409
}
410

    
411
.page ul {
412
    margin-top: 15px;
413
    height: 280px;
414
    overflow: auto;
415
}
416

    
417
.panes ul.pane {
418
    height: 276px;
419
}
420

    
421
.page ul.tabs {
422
    overflow: hidden;
423
    height: auto;
424
    margin-bottom: 0;
425
    margin-top: -20px;
426
}
427

    
428
.page ul.tabs li {
429
    float: right;
430
    margin: 0 1em;
431
}
432

    
433
#status li {
434
        float:left;
435
        color:#666;
436
        padding:10px 40px;
437
}
438

    
439
#status li.active {
440
        background-color: #87AADE;
441
    font-weight: bold;
442
    color: white;
443
}
444

    
445
/* slider root element */
446
.slider {
447
    border: 1px solid #666;
448
    clear: right;
449
    cursor: pointer;
450
    display: block !important;
451
    float: left;
452
    height: 5px;
453
    margin: 20px 0 20px;
454
    position: relative;
455
    width: 330px;
456
}
457

    
458
/* drag handle */
459
.handle {
460
    -moz-box-shadow: 0 0 2px #000000;
461
    background: url("../static/h30.png") repeat-x scroll 0 0 #FFFFFF;
462
    border: 1px solid #000000;
463
    cursor: move;
464
    display: block;
465
    height: 22px;
466
    margin-top: -15px;
467
    position: absolute;
468
    width: 10px;
469
}
470

    
471
/* progress bar (enabled with progress: true) */
472
.progress {
473
        height: 5px; 
474
        background-color: #87AADE;
475
}
476

    
477
/* the input field */
478
.range {
479
        border: 1px inset #ddd;
480
        float: left;
481
        font-size: 12pt;
482
        margin: 10px 0 0 15px;
483
        padding: 3px 0;
484
        text-align: center;
485
        width: 50px;                
486
}
487

    
488
div.machine {
489
    clear: both;
490
    margin: 5px 0 0 -32px;
491
    padding: 3px 4px 0;
492
    width: 523px;
493
    color: #666;
494
    height: 65px;
495
}
496

    
497
.machine a {
498
    color: #3d3d3d;
499
    font-weight: normal;
500
    text-decoration: none;
501
    font-size: 9pt;
502
}
503

    
504
.machine a:hover {
505
    color: #000;
506
    text-decoration: underline;
507
}
508

    
509
.state {
510
    float: right;
511
}
512

    
513
.state div {
514
    text-align: right;
515
    margin-right: 3px;
516
}
517

    
518
.actions {
519
    float: right;
520
    width: 70px;
521
    margin:-60px -70px 0 0;
522
    font-weight: normal;
523
}
524

    
525
.actions a {
526
    color: transparent;
527
}
528

    
529
a.action{
530
    margin: 0 0 5px 8px;
531
    display: none;
532
}
533

    
534
a.more {
535
    margin: 18px 0 5px 8px;
536
    display: none;
537
}
538

    
539
a.action:hover, a.more:hover {
540
    color: black !important;
541
    display: block;
542
}
543

    
544
.actions a:focus, .actions:hover a,.machine:hover .actions a {
545
    color: #3d3d3d;
546
    display: block;
547
}
548

    
549
.machine:hover {
550
    background-color:#dcdcdc;
551
}
552

    
553
.machine img {
554
    float: left;
555
    margin: 7px 14px 0;
556
}
557

    
558
div.ip, div.state {
559
    font-size: 9pt;
560
    color: #3d3d3d;
561
}
562

    
563
div.indicator {
564
    width:10px;
565
    height:11px;
566
    margin: 3px -1px;
567
    clear: none;
568
    float:right;
569
}
570

    
571
.view-seperator {
572
    color:#5F8DD3;    
573
}
574

    
575
.running .indicator {
576
    border-top: 2px solid white;
577
    border-bottom: 2px solid white;
578
    border-left: 2px solid white;
579
    border-right: 3px solid white;
580
    background-color: #87AADE;
581
}
582

    
583
.terminated {
584
    margin-bottom: 17px;
585
    opacity: 0.6;
586
}
587

    
588
.machine:hover div.uptime, .machine:hover a.rename, .machine:hover a.configure {
589
    color: #3d3d3d;
590
}
591

    
592
div.uptime {
593
    clear: both;
594
    color: transparent;
595
    margin-left: 1px;
596
}
597

    
598
div.machine-tabs {
599
    margin-top: 1em;
600
}
601

    
602
span.rename, span.configure {
603
    background-repeat: no-repeat;
604
    color: transparent;
605
    font-size: 9pt;
606
    font-weight: normal;
607
    margin-left: 10px;
608
    padding-left: 10px;
609
    text-align: left;
610
}
611

    
612
a.name:hover span.rename {
613
    color: #3D3D3D;
614
    margin-top: 0.4em;
615
    background-image: url(/static/pencil.png);
616
}
617

    
618

    
619
a.settings:hover span.configure {
620
    color: #3D3D3D;
621
}
622

    
623
button {
624
    background-color: #87AADE;
625
    border: 1px solid #87AADE;
626
    color: #FFFFFF;
627
    cursor: pointer;
628
    padding: 4px 25px;
629
}
630

    
631
button.next:hover {
632
    background-color: #f4b400;
633
    border-color: #f4b400;
634
}
635

    
636
button.prev:hover {
637
    background-color: #a8c5f1;
638
    border-color: #a8c5f1;
639
}
640

    
641
button.next {
642
    background-color: #F49000;
643
    border-color: #F49000;
644
    font-weight: bold;
645
}
646

    
647
button.prev {
648
    margin-left: -19px;
649
}
650

    
651
.image-logo {
652
    float: left;
653
    margin-right: 1em;
654
}
655

    
656
div.image {
657
    padding: 10px;
658
    clear: both;
659
    display: block;
660
}
661

    
662
div#view-select {
663
    float: right;
664
    clear: both;
665
    color: white;
666
    margin-top: -70px;
667
    margin-right: -36px;
668
    font-size: 9pt;
669
    background-color: #87aade;
670
    padding: 5px 10px;
671
}
672

    
673
a#standard, a#list {
674
    text-decoration: none;
675
    font-size: 11pt;
676
}
677

    
678
a#standard:link, a#standard:visited {
679
color:#5f8dd3;
680
}
681

    
682
a#list:link, a#list:visited {
683
color:white;
684
}
685

    
686
a#list:hover {
687
background: #5f8dd3;
688
}
689

    
690
a#standard:hover{
691
background: #5f8dd3;
692
}
693

    
694
a#standard:active, a#list:active {
695
color:white;
696
}
697

    
698
.activelink {
699
color:white !important;
700
}
701

    
702
div.machine-type {
703
    float: left;
704
    margin: 4px 10px 20px 0;
705
}
706

    
707
div.active, div.inactive {
708
    min-height: 200px;
709
    width: 500px;
710
    overflow: auto;
711
}
712

    
713
div.inactive {
714
    opacity: .6;
715
    margin-bottom: 17px;
716
}
717

    
718
#machinesview {
719
    min-height: 270px;
720
}
721

    
722
.list#machinesview {
723
    margin-left: -20px;
724
}
725

    
726
div.list label img {
727
    margin: 5px 5px -3px 0;
728
}
729

    
730
div.list label {
731
    color: #3D3D3D;
732
    font-size: 9pt;
733
}
734

    
735
div.list .state {
736
    margin-top: 7px;
737
    margin-right: 10px;
738
}
739

    
740
div.list table tbody.running {
741
    margin-top: 8px;
742
    height: 310px;
743
    overflow: auto;
744
}
745

    
746
div.list table tbody.terminated {
747
    max-height: 200px;
748
    overflow: auto;
749
}
750

    
751
div.list table tbody.terminated td {
752
        height: 20px !important;
753
}
754

    
755
th.scroll {
756
        width:7px;
757
}
758

    
759
div.list .stopped {
760
    margin-top: 8px;
761
}
762

    
763
div.list #mini.seperator {
764
    margin-top: 0;
765
}
766

    
767
/* root element for tabs  */
768
#wizard ul.tabs { 
769
    margin-left: 260px;                          
770
}
771

    
772
#wizard div.panes {
773
    height: 270px;
774
    margin-bottom: 6px;
775
}
776

    
777
/* single tab */
778
#wizard ul.tabs li {  
779
    margin-bottom: 0; 
780
        list-style-type:none;
781
    float: left;        
782
}
783

    
784
/* link inside the tab. uses a background image */
785
#wizard ul.tabs a { 
786
        display:block;
787
        padding: 0.5em;        
788
        text-decoration:none;
789
        color: #999;
790
        position:relative;
791
        top:1px;
792
        outline:0;
793
}
794

    
795
#wizard ul.tabs a:hover {
796
        color: black;
797
    background-color:#F7F7F7;
798
}
799
        
800
/* selected tab */
801
#wizard ul.tabs a.current {
802
        color: white;
803
    background-color: #87AADE;        
804
        cursor: default;
805
}
806

    
807
div.list div.actions {
808
    display: none;
809
    clear: left;
810
    float: right;
811
    margin-right: -20px;
812
    margin-top: 37px;
813
    text-align: right;
814
    width: 150px;
815
    height: 1000px;
816
}
817

    
818
div.list div.actions a {
819
    clear: left;
820
    color: #3D3D3D !important;
821
    display: block;
822
    font-size:9pt;
823
    opacity: 0.6;
824
}
825

    
826
div.list div.actions a:hover{
827
    cursor: default;
828
    text-decoration: none;
829

    
830
}
831

    
832
div.list div.actions a.enabled {
833
    color: black;
834
    opacity: 1.0;
835
}
836

    
837
div.list div.actions a.enabled:hover{
838
    cursor: pointer;
839
    text-decoration: underline;
840
}
841

    
842
input.machine {
843
    width: 13px;
844
    height: 13px;
845
    top: -1px;
846
    overflow: hidden;
847
}
848

    
849
#misc {
850
    height: 100px;
851
    border: 5px solid #87AADE;
852
    z-index: 9999;
853
}
854

    
855
#misc p {
856
    margin-top: 15px;
857
}
858

    
859
#misc strong {
860
    color: #F49C1A;
861
}
862

    
863
#misc .close {
864
        background-image: url(/static/close.png);
865
        position: absolute;
866
        right: -19px;
867
        top: -20px;
868
        cursor: pointer;
869
        height: 35px;
870
        width: 35px;
871
}
872

    
873
div#user{
874
    float:right;
875
    clear: both;
876
    color: #a0a0a0;
877
    font-size: 9pt;
878
    margin-top: 16px;
879
}
880

    
881
div#user a{
882
    color: #a0a0a0;
883
    text-decoration: none;
884
}
885

    
886
div#user a.current_lang {
887
    opacity: .5;
888
}
889

    
890
.seperator {
891
    background-color: #87AADE;
892
    height: 10px;
893
    width: 700px;
894
    margin: 0 0 0 -36px;
895
}
896

    
897
#mini.seperator {
898
    width: 535px;
899
    height: 5px;
900
    margin: 17px 0 17px -16px;
901
    display: none;
902
}
903

    
904
#disks.seperator {
905
    background-color: #dea842;
906
}
907

    
908
#images.seperator {
909
    background-color: #87a06d;
910
}
911

    
912
#networks.seperator {
913
    background-color: #9d6d6a;
914
}
915

    
916
#desktops.seperator {
917
    background-color: #dea842;
918
}
919

    
920
#apps.seperator {
921
    background-color: #87a06d;
922
}
923

    
924
.machine .seperator {
925
    width: 508px;
926
    height: 1px;
927
    margin: 8px 0 0 15px;
928
    background-color: #DCDCDC;
929
}
930

    
931
.machine h5 {
932
    margin: 0px 60px 1px 84px;
933
}
934

    
935
.machine .settings {
936
    margin-top: 22px;
937
}
938

    
939
#spinner {
940
    background: url("../static/progress.gif");
941
    height: 31px;
942
    width: 31px;
943
    margin-left: 298px; 
944
}
945

    
946
/* tables in list view */
947
div.list table {
948
    width: 515px;
949
    font-size: 9pt;
950
    display: none;
951
}
952

    
953
div.list table thead tr th, div.list table tfoot tr th {
954
    font-weight: normal; 
955
        background-color: #E6EEEE;
956
        border: 1px solid #FFF;
957
        padding: 4px;
958
}
959

    
960
div.list table thead tr .header {
961
        background-image: url(bg.gif);
962
        background-repeat: no-repeat;
963
        background-position: center right;
964
    text-align: left;
965
    vertical-align: middle;
966
        cursor: pointer;
967
}
968

    
969
div.list table thead tr .header#group {
970
    width: 80px;
971
}
972

    
973
div.list table thead tr .header#ip {
974
    width: 100px;
975
}
976

    
977
div.list table thead #selection {
978
        width: 35px;
979
        text-align: left;
980
}
981

    
982
div.list table thead #os {
983
    width: 32px;
984
    vertical-align:middle;
985
}
986

    
987
div.list table tbody td {
988
        color: #3D3D3D;
989
        padding: 4px;
990
        background-color: #FFF;
991
        vertical-align: middle;
992
}
993

    
994
div.list table tbody tr.odd td {
995
        background-color:#FFF;
996
}
997

    
998
div.list table thead tr .headerSortUp {
999
        background-image: url(asc.gif);
1000
}
1001

    
1002
div.list table thead tr .headerSortDown {
1003
        background-image: url(desc.gif);
1004
}
1005

    
1006
div.list table thead tr .headerSortDown, div.list table thead tr .headerSortUp {
1007
    background-color: #87AADE;
1008
}
1009

    
1010
span.imagetag { display: none;}