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: 48px;
31     display: table-cell;
32 }
33
34 .roo-el-mask-msg div
35 {
36    font-family: 'Source Sans Pro', sans-serif;
37     font-size: 24px;
38     font-weight: 500;
39     z-index:20001;
40     padding:4px 15px;
41     color: @gray; //#557;
42     display: table-cell;
43     
44 }
45 .x-body-masked
46 {
47         overflow:hidden !important;
48 }
49 .x-body-masked select,.ext-masked object,.ext-masked embed
50 {
51     visibility:hidden;
52 }
53 .x-dlg-mask
54 {
55     z-index:10000;   
56     display:none;
57     position:absolute;
58     top:0;
59     left:0;
60     -moz-opacity: 0.5;
61     opacity:.50;
62     filter: alpha(opacity=50);
63     background-color: @gray-light;
64 }
65