mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
29 lines
558 B
CSS
29 lines
558 B
CSS
.LoadMask {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #ccc;
|
|
opacity: 0.5;
|
|
z-index: 100;
|
|
}
|
|
|
|
.LoadMask>.box {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background: #c3daf9;
|
|
border: 1px solid #6593cf;
|
|
padding: 2px;
|
|
}
|
|
|
|
.LoadMask>.box>.msg {
|
|
font: normal 12px 'Microsoft YaHei';
|
|
line-height: 16px;
|
|
color: #222;
|
|
background: #fbfbfb url(assets/image/loading.gif) no-repeat 5px 5px;
|
|
padding: 5px 10px 5px 25px;
|
|
border: 1px solid #a3bad9;
|
|
cursor: wait;
|
|
} |