less/roojs-bootstrap/mask.less
[roojs1] / less / roojs-bootstrap / mask.less
1 .roo-el-mask
2 {
3     z-index:20000;   
4     position:absolute;
5     top:0;
6     left:0;
7     -moz-opacity: 0.5;
8     opacity:.50;
9     filter: alpha(opacity=50);
10     background-color:@gray-light;
11     width:100%;
12     height:100%;
13     zoom:1;
14 }
15 .roo-el-mask-msg 
16 {
17    position: absolute;
18     z-index:20000;
19     /*border: 4px double #557; */
20     background-color: @body-bg;
21     padding: 0px 30px;
22     /*background-image: url('@{bootstrap-image-path}/ux/lightbox/loading.gif');*/
23     background-repeat: no-repeat;
24     border: 10px solid white;
25     border-radius: 20px;
26     display: table;
27 }
28
29 .roo-el-mask-msg i {
30     font-size: 36px;
31     vertical-align: middle;
32     float: left;
33 }
34
35 .roo-el-mask-msg div
36 {
37     font-family: 'Source Sans Pro', sans-serif;
38     font-size: 24px;
39     font-weight: 500;
40     z-index:20001;
41     padding:4px 15px;
42     color: @gray; //#557;
43     display: table-cell;
44     vertical-align: middle;
45     float: left;
46     
47 }
48 .x-body-masked
49 {
50         overflow:hidden !important;
51 }
52 .x-body-masked select,.ext-masked object,.ext-masked embed
53 {
54     visibility:hidden;
55 }
56 .x-dlg-mask
57 {
58     z-index:10000;   
59     display:none;
60     position:absolute;
61     top:0;
62     left:0;
63     -moz-opacity: 0.5;
64     opacity:.50;
65     filter: alpha(opacity=50);
66     background-color: @gray-light;
67 }
68