地质所 沉降监测网建设项目
zmk
2024-05-22 28e168f05d3eb48223e69064188c6fce786442d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
@charset "UTF-8";
 
#{$prefix}dialog {
    color: $color;
    position: fixed;
    z-index: 99999;
    display: none;
    @include border-radius(3px);
    @include box-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    //@include user-select(none); 
    background: #fff;
    font-size: 14px;
}
 
#{$prefix}dialog-container {
    position: relative;
    padding: 20px;
    line-height: 1.4;
 
    h1 {
        font-size: 24px;
        margin-bottom: 10px;
 
        .fa {
            color: #2C7EEA;
            padding-right: 5px;
        }
 
        small {
            padding-left: 5px;
            font-weight: normal;
            font-size:  12px;
            color: #999;
        }
    } 
    
    select {
        color: #999;
        padding: 3px 8px;
        border: 1px solid $borderColor;
    }
}
 
#{$prefix}dialog-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 18px;
    color: #ccc;
    @include transition(color 300ms ease-out);
 
    &:hover {
        color: #999;
    }
            
#{$prefix}dialog-header {
    padding: 11px 20px;    
    border-bottom: 1px solid #eee;
    @include transition(background 300ms ease-out);
 
    &:hover {
        background: #f6f6f6;
    }
}
 
#{$prefix}dialog-title {
    font-size: 14px;             
}
            
#{$prefix}dialog-footer {
    padding: 10px 0 0 0;
    text-align: right;
}
 
#{$prefix}dialog-info {
    width: 420px;
    
    h1 {
        font-weight: normal;
    }
 
    #{$prefix}dialog-container {
        padding: 20px 25px 25px;
    }
 
    #{$prefix}dialog-close {
        top: 10px;
        right: 10px;
    } 
    
    p > a, .hover-link:hover {   
        color: #2196F3;
    }
    
    .hover-link {
        color: #666;
    }
    
    a {
        .fa-external-link {
            display: none;
        }
 
        &:hover {    
            color: #2196F3;
            
            .fa-external-link {
                display: inline-block;
            }
        }
    }
}
 
#{$prefix}mask,
#{$prefix}container-mask,
#{$prefix}dialog-mask {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
 
#{$prefix}mask,
#{$prefix}dialog-mask-bg {
    background: #fff;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
 
#{$prefix}mask {
    position: fixed;
    background: #000;
    @include opacity(0.2); 
    z-index: 99998;  
}
 
#{$prefix}container-mask, 
#{$prefix}dialog-mask-con {
    background: url(../images/loading.gif) no-repeat center center;
    @include background-size(32px 32px);
}
 
#{$prefix}container-mask {
    z-index: 20;  
    display: block;
    background-color: #fff;    
}
 
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
    #{$prefix}container-mask, 
    #{$prefix}dialog-mask-con {
        background-image: url(../images/loading@2x.gif);
    }
}
 
@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min-device-pixel-ratio: 3) {
    #{$prefix}container-mask,
    #{$prefix}dialog-mask-con {
        background-image: url(../images/loading@3x.gif);
    }
}
 
#{$prefix}code-block-dialog, 
#{$prefix}preformatted-text-dialog {
    textarea {
        width: 100%;
        height: 400px;
        margin-bottom: 6px;
        overflow: auto;
        border: 1px solid #eee;
        background: #fff;
        padding: 15px;
        resize: none;
    }
}
 
#{$prefix}code-toolbar {
    color: #999;
    font-size: 14px;
    margin: -5px 0 10px;
}