Statistics
| Branch: | Tag: | Revision:

root / ui / static / main.css @ 190e3256

History | View | Annotate | Download (18 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
div.machine div.actions {
519
    float: right;
520
    width: 70px;
521
    margin:-60px -70px 0 0;
522
    font-weight: normal;
523
}
524

    
525
div.machine div.actions a {
526
    color: transparent;
527
    margin: 0 0 5px 8px;
528
}
529

    
530
div.machine div.actions a.more {
531
    margin-top: 18px;
532
}
533

    
534
div.machine div.actions a:hover{
535
    color: black !important;
536
    text-decoration: underline;
537
    display: block;
538
}
539

    
540
div.machine div.actions:hover a, .machine:hover .actions a {
541
    color: #3d3d3d;
542
    display: block;
543
}
544

    
545
div.machine div.display a{
546
    color: #3d3d3d;
547
    display: block;
548
}
549

    
550
div.running div.machine a.action-start {
551
    display: none;
552
}
553

    
554
div.terminated div.machine a.action-reboot, div.terminated div.machine a.action-shutdown{
555
    display: none;
556
}
557

    
558
div.terminated div.machine div.actions a.more {
559
    margin-top: 34px;
560
}
561

    
562
.machine:hover {
563
    background-color:#dcdcdc;
564
}
565

    
566
.standard .machine img {
567
    float: left;
568
    margin: 7px 14px 0;
569
}
570

    
571
.list .machine img {
572
    margin: 0;
573
}
574

    
575
div.ip, div.state {
576
    font-size: 9pt;
577
    color: #3d3d3d;
578
}
579

    
580
div.indicator {
581
    width:10px;
582
    height:11px;
583
    margin: 3px -1px;
584
    clear: none;
585
    float:right;
586
}
587

    
588
.view-separator {
589
    color:#5F8DD3;    
590
}
591

    
592
.running .indicator {
593
    border-top: 2px solid white;
594
    border-bottom: 2px solid white;
595
    border-left: 2px solid white;
596
    border-right: 3px solid white;
597
    background-color: #87AADE;
598
}
599

    
600
.terminated {
601
    margin-bottom: 17px;
602
}
603

    
604
.terminated .machine .state .status {
605
    color: #666;
606
}
607

    
608
.machine:hover div.uptime, .machine:hover a.rename, .machine:hover a.configure {
609
    color: #3d3d3d;
610
}
611

    
612
div.uptime {
613
    clear: both;
614
    color: transparent;
615
    margin-left: 1px;
616
}
617

    
618
div.machine-tabs {
619
    margin-top: 1em;
620
}
621

    
622
span.rename, span.configure {
623
    background-repeat: no-repeat;
624
    color: transparent;
625
    font-size: 9pt;
626
    font-weight: normal;
627
    margin-left: 10px;
628
    padding-left: 10px;
629
    text-align: left;
630
}
631

    
632
a.name:hover span.rename {
633
    color: #3D3D3D;
634
    margin-top: 0.4em;
635
    background-image: url(/static/pencil.png);
636
}
637

    
638

    
639
a.settings:hover span.configure {
640
    color: #3D3D3D;
641
}
642

    
643
button {
644
    background-color: #87AADE;
645
    border: 1px solid #87AADE;
646
    color: #FFFFFF;
647
    cursor: pointer;
648
    padding: 4px 25px;
649
}
650

    
651
button.next:hover {
652
    background-color: #f4b400;
653
    border-color: #f4b400;
654
}
655

    
656
button.prev:hover {
657
    background-color: #a8c5f1;
658
    border-color: #a8c5f1;
659
}
660

    
661
button.next {
662
    background-color: #F49000;
663
    border-color: #F49000;
664
    font-weight: bold;
665
}
666

    
667
button.prev {
668
    margin-left: -19px;
669
}
670

    
671
.image-logo {
672
    float: left;
673
    margin-right: 1em;
674
}
675

    
676
div.image {
677
    padding: 10px;
678
    clear: both;
679
    display: block;
680
}
681

    
682
div#view-select {
683
    float: right;
684
    clear: both;
685
    color: white;
686
    margin-top: -70px;
687
    margin-right: -36px;
688
    font-size: 9pt;
689
    background-color: #87aade;
690
    padding: 5px 10px;
691
}
692

    
693
a#standard, a#list {
694
    text-decoration: none;
695
    font-size: 11pt;
696
}
697

    
698
div#view-select a {
699
    color:#5f8dd3;
700
}
701

    
702
a#list:hover {
703
background: #5f8dd3;
704
}
705

    
706
a#standard:hover{
707
background: #5f8dd3;
708
}
709

    
710
a#standard:active, a#list:active {
711
color:white;
712
}
713

    
714
.activelink {
715
color:white !important;
716
}
717

    
718
div.machine-type {
719
    float: left;
720
    margin: 4px 10px 20px 0;
721
}
722

    
723
#machinesview {
724
    min-height: 270px;
725
}
726

    
727
.list#machinesview {
728
    margin-left: -20px;
729
}
730

    
731
#emptymachineslist {
732
display:none; 
733
color: #A0A0A0;
734
margin-top:100px;
735
}
736

    
737

    
738
div.list label img {
739
    margin: 5px 5px -3px 0;
740
}
741

    
742
div.list label {
743
    color: #3D3D3D;
744
    font-size: 9pt;
745
}
746

    
747
div.list .state {
748
    margin-top: 7px;
749
    margin-right: 10px;
750
}
751

    
752
div.list table tbody {
753
    margin-top: 8px;
754
}
755

    
756
div.list .stopped {
757
    margin-top: 8px;
758
}
759

    
760
/* root element for tabs  */
761
#wizard ul.tabs { 
762
    margin-left: 260px;                          
763
}
764

    
765
#wizard div.panes {
766
    height: 270px;
767
    margin-bottom: 6px;
768
}
769

    
770
/* single tab */
771
#wizard ul.tabs li {  
772
    margin-bottom: 0; 
773
        list-style-type:none;
774
    float: left;        
775
}
776

    
777
/* link inside the tab. uses a background image */
778
#wizard ul.tabs a { 
779
        display:block;
780
        padding: 0.5em;        
781
        text-decoration:none;
782
        color: #999;
783
        position:relative;
784
        top:1px;
785
        outline:0;
786
}
787

    
788
#wizard ul.tabs a:hover {
789
        color: black;
790
    background-color:#F7F7F7;
791
}
792
        
793
/* selected tab */
794
#wizard ul.tabs a.current {
795
        color: white;
796
    background-color: #87AADE;        
797
        cursor: default;
798
}
799

    
800
div.list div.actions {
801
    display: none;
802
    clear: left;
803
    float: right;
804
    margin-right: -20px;
805
    margin-top: 37px;
806
    text-align: right;
807
    width: 150px;
808
}
809

    
810
div.list div.actions a {
811
    clear: left;
812
    color: #D3D3D3;
813
    display: block;
814
    font-size:9pt;
815
    margin-bottom: 2px;
816
}
817

    
818
div.list div.actions a.enabled {
819
    color: #3D3D3D;
820
}
821

    
822
div.list div.actions a.enabled:hover{
823
    cursor: pointer;
824
    color: black !important;
825
    text-decoration: underline;
826
}
827

    
828
input.machine {
829
    width: 13px;
830
    height: 13px;
831
    top: -1px;
832
    overflow: hidden;
833
}
834

    
835
#error-success, #yes-no {
836
    height: 150px;
837
    border: 5px solid #87AADE;
838
    z-index: 9999;
839
}
840

    
841
#error-success p, #yes-no p, #yes-no button {
842
    margin-top: 15px;
843
}
844

    
845
#error-success strong {
846
    color: #F49C1A;
847
}
848

    
849
#error-success .close {
850
        background-image: url(/static/close.png);
851
        position: absolute;
852
        right: -19px;
853
        top: -20px;
854
        cursor: pointer;
855
        height: 35px;
856
        width: 35px;
857
}
858

    
859
/* Confirmation boxes */
860
div.confirm_single, div.confirm_multiple {
861
    display: none;
862
    background-color: #DCDCDC;
863
    color: orange;
864
    font-size: 9pt;
865
}
866

    
867
div.action_error {
868
    float: right;
869
    width: 80px;
870
    height: 70px;
871
    padding: 5px;
872
    margin: -65px -165px 0 0;
873
    display: none;
874
    background-color: #DCDCDC;
875
    font-size: 9pt;
876
    color: black;
877
    line-height: 1.5;
878
}
879

    
880
div.action_error button.details {
881
    margin: 15px 0 0 0px;
882
    padding: 0 15px;
883
    border-color: black;
884
}
885

    
886
.orange {
887
    color: orange;
888
}
889

    
890
div.confirm_single button, div.confirm_multiple button, div.action_error button{
891
    font-size: 9pt;
892
    background-color: #DCDCDC;
893
    border: 1px solid #a5a5a5;
894
    color: #3D3D3D;
895
    cursor: pointer;
896
    padding: 0px;
897
}
898

    
899
div.confirm_single button.yes, div.confirm_multiple button.yes {
900
    border-color: orange;
901
    padding: 0 12px;
902
}
903

    
904
div.confirm_single button.yes:hover, div.confirm_multiple button.yes:hover {
905
    background-color: orange;
906
}
907

    
908
div.confirm_single button.no, div.confirm_multiple button.no {
909
    padding: 0px 16px;
910
}
911

    
912
div.confirm_single button.no:hover, div.confirm_multiple button.no:hover {
913
    background-color: #a5a5a5;
914
}
915

    
916
div.confirm_single{
917
    float: right;
918
    width: 90px;
919
    height: 70px;
920
    margin: -65px -165px 0 0;
921
}
922

    
923
div.confirm_single button.yes {
924
    margin: 5px 0 0 5px;
925
}
926

    
927
div.confirm_single button.no {
928
    margin: 22px 0 0 5px;
929
}
930

    
931
div.action_error {
932
    display: none;
933
}
934

    
935
div.confirm_multiple {
936
    position: fixed;
937
    bottom: 0;
938
    width: 700px;
939
    height: 30px;
940
    margin: 0 0 0px -36px;
941
}
942

    
943
div.confirm_multiple p {
944
    float: left;
945
    margin: 9px 0 0 200px;
946
}
947

    
948
div.confirm_multiple button {
949
    float: right;
950
    margin: 6px 5px 0 0;
951
}
952

    
953
div.confirm_multiple button.no {
954
    margin-right: 15px;
955
}
956

    
957
div#user{
958
    float:right;
959
    clear: both;
960
    color: #a0a0a0;
961
    font-size: 9pt;
962
    margin-top: 16px;
963
}
964

    
965
div#user a{
966
    color: #a0a0a0;
967
    text-decoration: none;
968
}
969

    
970
div#user a.current_lang {
971
    color: #d3d3d3;
972
}
973

    
974
.separator {
975
    background-color: #87AADE;
976
    height: 10px;
977
    width: 700px;
978
    margin: 0 0 0 -36px;
979
}
980

    
981
#mini.separator {
982
    width: 535px;
983
    height: 5px;
984
    margin: 17px 0 17px -36px;
985
    display: none;
986
}
987

    
988
#disks.separator {
989
    background-color: #dea842;
990
}
991

    
992
#images.separator {
993
    background-color: #87a06d;
994
}
995

    
996
#networks.separator {
997
    background-color: #9d6d6a;
998
}
999

    
1000
#desktops.separator {
1001
    background-color: #dea842;
1002
}
1003

    
1004
#apps.separator {
1005
    background-color: #87a06d;
1006
}
1007

    
1008
.machine .separator {
1009
    width: 508px;
1010
    height: 1px;
1011
    margin: 8px 0 0 15px;
1012
    background-color: #DCDCDC;
1013
}
1014

    
1015
.machine h5 {
1016
    margin: 0px 60px 1px 84px;
1017
}
1018

    
1019
.machine .settings {
1020
    margin-top: 22px;
1021
}
1022

    
1023
#spinner {
1024
    background: url("../static/progress.gif");
1025
    height: 31px;
1026
    width: 31px;
1027
    margin-left: 298px;
1028
    margin-top: 160px; 
1029
}
1030

    
1031
/* tables in list view */
1032
div.list div.dataTables_filter,  div.list div.dataTables_filter input{
1033
    font-size: 9pt;
1034
    display: none;
1035
}
1036

    
1037
div.list div.dataTables_filter input{
1038
    height: 12px;
1039
    margin-bottom: 12px;
1040
}
1041

    
1042
div.list table {
1043
    width: 515px;
1044
    font-size: 9pt;
1045
}
1046

    
1047
div.list table tbody td {
1048
        color: #3D3D3D;
1049
        padding:6px;
1050
        background-color: #FFF;
1051
        vertical-align: middle;
1052
}
1053

    
1054
div.list table thead tr th {
1055
        background-color: #E6EEEE;
1056
        background-image: url(bg.gif);
1057
        background-repeat: no-repeat;
1058
        background-position: center right;
1059
    font-weight: normal; 
1060
        border: 1px solid #FFF;
1061
        padding: 4px;
1062
    text-align: left;
1063
    vertical-align: middle;
1064
        cursor: pointer;
1065
}
1066

    
1067
div.list table thead .sorting_asc, div.list table thead .sorting_desc {
1068
    background-color: #87AADE;
1069
}
1070

    
1071
div.list table thead .sorting_asc {
1072
        background-image: url(asc.gif);
1073
}
1074

    
1075
div.list table thead .sorting_desc {
1076
        background-image: url(desc.gif);
1077
}
1078

    
1079
div.list table #selection div.expand-icon {
1080
        background-image: url(asc.gif);
1081
        background-repeat: no-repeat;
1082
    position: relative;
1083
        cursor: pointer;
1084
    width: 15px;
1085
    height: 4px;
1086
    left: 19px;
1087
    top: -11px;
1088
}
1089

    
1090
ul.dropdown-selector {
1091
    background-color: #E6EEEE;
1092
    position: absolute;
1093
    margin-left: 1px;
1094
    display: block;
1095
    top: 255px;
1096
    font-size:9pt;
1097
    width:40px;
1098
}
1099

    
1100
ul.dropdown-selector li {
1101
    padding: 4px;
1102
}
1103

    
1104
ul.dropdown-selector li:hover {
1105
    background-color: #87AADE;
1106
}
1107

    
1108
ul.dropdown-selector li a{
1109
    color: black;
1110
    text-decoration: none;
1111
}
1112

    
1113
div.list table thead #os {
1114
    width: 32px !important;
1115
    vertical-align:middle;
1116
}
1117

    
1118
div.list table span.imagetag { 
1119
    display: none;
1120
}
1121

    
1122
div.list table #selection {
1123
        width: 35px !important;
1124
        text-align: left;
1125
    background-image: none;
1126
}
1127

    
1128
div.list table thead #ip {
1129
    width: 100px !important;
1130
}
1131

    
1132
div.list table thead #group {
1133
    width: 60px !important;
1134
}
1135

    
1136
div.list table thead #status {
1137
    width: 70px !important;
1138
}
1139

    
1140
div.list table thead #name {
1141
    width: 200px !important;
1142
}
1143

    
1144
.spinner {
1145
    clear: left;
1146
    background: url("../static/progress.gif") transparent;
1147
    height: 31px;
1148
    width: 31px;
1149
    margin: 20px 0 0 11px;
1150
    position:absolute;
1151
}
1152

    
1153
.wave {
1154
    background: url("../static/wave.gif") !important;
1155
}
1156

    
1157
.hidden {
1158
    display:none;
1159
}
1160

    
1161
.selected {
1162
    display:block !important;
1163
    color: orange !important;
1164
}
1165

    
1166
.message {
1167
    display: none;
1168
}