12345678910111213141516171819202122232425262728293031323334353637 |
- .body-masked select {
- visibility: hidden;
- }
- .mask-msg {
- z-index: 50001;
- position: absolute;
- top: 0;
- left: 0;
- border: 1px solid #6593cf;
- background: #c3daf9 url( images/tb.gif ) repeat-x 0 -16px;
- padding: 2px;
- }
- .mask-msg div {
- padding: 5px 10px 5px 25px;
- background: #fbfbfb url(images/loading.gif ) no-repeat 5px 5px;
- line-height: 16px;
- border: 1px solid #a3bad9;
- color: #222;
- font: normal 11px tahoma, arial, helvetica, sans-serif;
- cursor: wait;
- }
- .mask {
- z-index: 50000;
- position: absolute;
- top: 0;
- left: 0;
- -moz-opacity: 0.5;
- opacity: .50;
- filter: alpha(opacity = 50);
- background-color: #FFF;
- zoom: 1;
- width: 100%;
- height: 100%;
- }
|