123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- .drawCur {
- cursor: url(../../static/images/cur/draw.cur), auto;
- }
- .measureCur {
- cursor: url(../../static/images/cur/measure.cur), auto;
- }
- html,
- body {
- background-color: black;
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- overflow: hidden;
- color: #eee;
- }
- #loadingbar {
- bottom: 0;
- left: 0;
- margin: auto;
- position: absolute;
- right: 0;
- top: 0;
- z-index: 999999;
- display: none;
- }
- /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
- body::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- }
- /* 滚动条里面小方块 */
- body::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- /* background: rgba(85, 229, 38, 0.71); */
- background: rgba(105,186,255,0.5);
- }
- /* 滚动条里面轨道 */
- body::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- /* background: #2a4fd1b3; */
- background: rgba(105,186,255,0.1);
- }
- /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
- div::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- }
- /* 滚动条里面小方块 */
- div::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- /* background: rgba(85, 229, 38, 0.71); */
- background: rgba(105,186,255,0.5);
- }
- /* 滚动条里面轨道 */
- div::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- /* background: #2a4fd1b3; */
- background: rgba(105,186,255,0.1);
- }
- .messageIndex,
- .el-message {
- z-index: 300000000000 !important;
- }
- .el-dialog {
- background: transparent !important;
- background: url(/static/images/popup/background.png) no-repeat !important;
- background-size: 100% 100% !important;
- background-position: center !important;
- }
- .el-dialog__title,
- .el-form-item__label {
- color: white !important;
- }
- .el-dialog__header {
- background: url(/static/images/popup/title.png) no-repeat !important;
- background-size: 100% 100% !important;
- background-position: center !important;
- }
- .el-dialog__headerbtn .el-dialog__close {
- color: white !important;
- }
- /* 中图合入代码 */
- .vl-notify.vl-notify-alert h2.vl-notice-title {
- border-bottom: 0px solid #eee !important;
- background-color: #fff0 !important;
- background: url(/static/images/popup/title.png) no-repeat !important;
- background-size: 100% 100% !important;
- }
-
- .vl-notify.vl-notify-iframe {
- background-color: #fff0 !important;
- background: url(/static/images/popup/background.png) no-repeat !important;
- background-size: 100% 100% !important;
- }
- .vl-notify.vl-notify-alert {
- background-color: #fff0 !important;
- background: url(/static/images/popup/background.png) no-repeat !important;
- background-size: 100% 100% !important;
- }
-
- .vl-notify.vl-notify-main {
- border: 0px solid #eee !important;
- background-color: #fff0 !important;
- }
- /*---------------------------- */
|