lh-ui-next 0.1.7-beta.8 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/css/dev.css +1 -1
- package/lib/css/dev.less +49 -0
- package/lib/json/areaNew.json +27108 -0
- package/lib/json/areaSmall.json +29482 -0
- package/lib/lh-ui-next.mjs +3395 -1858
- package/lib/lh-ui-next.umd.js +1 -1
- package/package.json +4 -5
- package/static/css/compact/compact.less +170 -22
- package/static/css/lhseer/class.less +8 -1
- package/static/css/lhseer/lhseerColor.less +4 -21
- package/static/css/package/button.less +14 -2
- package/static/css/package/checkbox.less +53 -36
- package/static/css/package/contextMenu.less +18 -0
- package/static/css/package/date.less +149 -49
- package/static/css/package/dialog.less +47 -42
- package/static/css/package/fuzzyInput.less +0 -6
- package/static/css/package/fuzzySelect.less +0 -6
- package/static/css/package/input.less +2 -11
- package/static/css/package/messageBox.less +4 -4
- package/static/css/package/pagination.less +29 -30
- package/static/css/package/popover.less +3 -135
- package/static/css/package/radio.less +21 -35
- package/static/css/package/select.less +8 -14
- package/static/css/package/selectTile.less +1 -1
- package/static/css/package/switch.less +45 -15
- package/static/css/package/tab.less +5 -2
- package/static/css/package/tree.less +24 -1
- package/static/css/package/treeSelect.less +0 -8
- package/static/css/package/treeSpecial.less +70 -0
- package/static/css/package/treeSpecialSelect.less +37 -0
- package/static/css/theme-compact-blue/main.css +1 -1
- package/static/css/theme-compact-blue/main.less +5 -1
- package/static/css/theme-loose-blue/main.css +1 -1
- package/static/css/theme-loose-blue/main.less +5 -1
- package/static/css/theme-loose-orange/main.css +1 -1
- package/static/css/theme-loose-orange/main.less +5 -1
- package/static/fontRoboto/Roboto-Black.ttf +0 -0
- package/static/fontRoboto/Roboto-Bold.ttf +0 -0
- package/static/fontRoboto/Roboto-Medium.ttf +0 -0
- package/static/fontRoboto/Roboto-Regular.ttf +0 -0
- package/static/fontRoboto/roboto.css +37 -0
- package/static/iconFontComponent/iconfont.css +402 -298
- package/static/iconFontComponent/iconfont.eot +0 -0
- package/static/iconFontComponent/iconfont.js +1 -1
- package/static/iconFontComponent/iconfont.json +681 -499
- package/static/iconFontComponent/iconfont.svg +211 -159
- package/static/iconFontComponent/iconfont.ttf +0 -0
- package/static/iconFontComponent/iconfont.woff +0 -0
- package/static/iconFontComponent/iconfont.woff2 +0 -0
- package/static/js/lang/zh-CN.js +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lh-ui-next",
|
|
3
3
|
"description": "a friendly ui for vue3",
|
|
4
|
-
"version": "0.1.7
|
|
4
|
+
"version": "0.1.7",
|
|
5
5
|
"author": "Tinylj(lujin.pt@163.com)",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"private": false,
|
|
@@ -14,15 +14,14 @@
|
|
|
14
14
|
"main": "lib/lh-ui-next.umd.js",
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"mitt": "^3.0.0",
|
|
17
|
-
"vue": "^3.
|
|
18
|
-
"vuex": "^4.0.0"
|
|
17
|
+
"vue": "^3.3.9"
|
|
19
18
|
},
|
|
20
19
|
"devDependencies": {
|
|
21
20
|
"vue-router": "^4.0.3",
|
|
22
21
|
"vuex": "^4.0.0",
|
|
23
22
|
"jsencrypt": "3.2.1",
|
|
24
|
-
"@vitejs/plugin-vue": "^
|
|
23
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
25
24
|
"less": "^4.1.3",
|
|
26
|
-
"vite": "^
|
|
25
|
+
"vite": "^5.0.0"
|
|
27
26
|
}
|
|
28
27
|
}
|
|
@@ -8,6 +8,13 @@
|
|
|
8
8
|
font-size: 14px;
|
|
9
9
|
padding-left: 16px;
|
|
10
10
|
padding-right: 16px;
|
|
11
|
+
i {
|
|
12
|
+
font-size:14px;
|
|
13
|
+
}
|
|
14
|
+
&.has-icon {
|
|
15
|
+
padding-left: 12px;
|
|
16
|
+
padding-right: 12px;
|
|
17
|
+
}
|
|
11
18
|
}
|
|
12
19
|
&.mini{
|
|
13
20
|
height: 22px;
|
|
@@ -39,6 +46,9 @@
|
|
|
39
46
|
margin-left: 2px;
|
|
40
47
|
}
|
|
41
48
|
}
|
|
49
|
+
&.mini{
|
|
50
|
+
height: 22px;
|
|
51
|
+
}
|
|
42
52
|
}
|
|
43
53
|
|
|
44
54
|
|
|
@@ -86,9 +96,11 @@
|
|
|
86
96
|
}
|
|
87
97
|
}
|
|
88
98
|
.lh-tab-div-n5 {
|
|
99
|
+
width: 100%;
|
|
100
|
+
height: 30px;
|
|
89
101
|
.lh-tab-content {
|
|
90
|
-
height:
|
|
91
|
-
line-height:
|
|
102
|
+
height: 28px;
|
|
103
|
+
line-height: 28px;
|
|
92
104
|
padding-left: 12px;
|
|
93
105
|
padding-right: 12px;
|
|
94
106
|
font-size: 12px;
|
|
@@ -115,6 +127,38 @@
|
|
|
115
127
|
top:6px;
|
|
116
128
|
}
|
|
117
129
|
}
|
|
130
|
+
&.mini {
|
|
131
|
+
.lh-select-text {
|
|
132
|
+
height:22px;
|
|
133
|
+
.lh-select-single {
|
|
134
|
+
line-height: 20px;
|
|
135
|
+
}
|
|
136
|
+
.lh-select-placeholder {
|
|
137
|
+
line-height: 20px;
|
|
138
|
+
}
|
|
139
|
+
.lh-select-node {
|
|
140
|
+
margin-top: 2px;
|
|
141
|
+
}
|
|
142
|
+
.dropdown-icon {
|
|
143
|
+
top: 3px;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
.lh-select-ul {
|
|
149
|
+
.lh-select-search {
|
|
150
|
+
padding-left: 8px;
|
|
151
|
+
padding-right:8px;
|
|
152
|
+
}
|
|
153
|
+
ul {
|
|
154
|
+
li {
|
|
155
|
+
height: 28px;
|
|
156
|
+
line-height: 28px;
|
|
157
|
+
padding-left: 8px;
|
|
158
|
+
padding-right: 8px;
|
|
159
|
+
font-size: 13px;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
118
162
|
}
|
|
119
163
|
.lh-input {
|
|
120
164
|
.lh-input-cornInput {
|
|
@@ -122,16 +166,25 @@
|
|
|
122
166
|
font-size: 12px;
|
|
123
167
|
}
|
|
124
168
|
.lh-input__prefix {
|
|
125
|
-
height: 28px;
|
|
126
169
|
line-height: 28px;
|
|
127
170
|
}
|
|
128
171
|
.lh-input__suffix {
|
|
129
|
-
height: 28px;
|
|
130
172
|
line-height: 28px;
|
|
131
173
|
}
|
|
174
|
+
&.mini {
|
|
175
|
+
.lh-input-cornInput {
|
|
176
|
+
height: 22px;
|
|
177
|
+
}
|
|
178
|
+
.lh-input__prefix {
|
|
179
|
+
line-height: 22px;
|
|
180
|
+
}
|
|
181
|
+
.lh-input__suffix {
|
|
182
|
+
line-height: 22px;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
132
185
|
}
|
|
133
186
|
.lh-select-tile {
|
|
134
|
-
.lh-select-ul {
|
|
187
|
+
.lh-select-tile-ul {
|
|
135
188
|
.tile-left-title {
|
|
136
189
|
font-size: 12px;
|
|
137
190
|
}
|
|
@@ -143,36 +196,131 @@
|
|
|
143
196
|
padding-right: 6px;
|
|
144
197
|
font-size: 12px;
|
|
145
198
|
margin-right: 4px;
|
|
146
|
-
margin-bottom:
|
|
199
|
+
margin-bottom: 7px;
|
|
147
200
|
}
|
|
148
201
|
}
|
|
149
202
|
}
|
|
150
203
|
.lh-dialog {
|
|
151
204
|
.lh-dialog__container {
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
205
|
+
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
.lh-dialog-header {
|
|
209
|
+
padding-left: 18px;
|
|
210
|
+
padding-right: 40px;
|
|
211
|
+
height: 36px;
|
|
212
|
+
> .title {
|
|
213
|
+
font-size: 15px;
|
|
214
|
+
line-height: 36px;
|
|
215
|
+
font-weight: bold;
|
|
216
|
+
}
|
|
217
|
+
> .closeIt {
|
|
218
|
+
width: 40px;
|
|
219
|
+
height: 36px;
|
|
220
|
+
line-height: 35px;
|
|
221
|
+
i {
|
|
222
|
+
font-size: 16px;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
.lh-date {
|
|
229
|
+
.lh-date-header {
|
|
230
|
+
.lh-date-header-label {
|
|
231
|
+
font-size: 12px;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
.lh-date-content {
|
|
235
|
+
.lh-date-table {
|
|
236
|
+
th {
|
|
237
|
+
font-size: 12px;
|
|
160
238
|
}
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
height: 36px;
|
|
164
|
-
line-height: 35px;
|
|
165
|
-
i {
|
|
166
|
-
font-size: 16px;
|
|
167
|
-
}
|
|
239
|
+
td {
|
|
240
|
+
font-size: 13px;
|
|
168
241
|
}
|
|
169
242
|
}
|
|
170
243
|
}
|
|
171
|
-
|
|
172
244
|
}
|
|
173
245
|
.lh-date-picker {
|
|
174
246
|
.lh-date-picker__suffix {
|
|
175
247
|
line-height: 28px;
|
|
176
248
|
}
|
|
249
|
+
&.mini {
|
|
250
|
+
.lh-date-picker__suffix {
|
|
251
|
+
line-height: 22px;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
.lh-date-range-picker {
|
|
256
|
+
height: 28px;
|
|
257
|
+
.icon_component_arrow_right {
|
|
258
|
+
line-height: 26px;
|
|
259
|
+
}
|
|
260
|
+
.range__suffix {
|
|
261
|
+
line-height: 26px;
|
|
262
|
+
}
|
|
263
|
+
.lh-input {
|
|
264
|
+
.lh-input-cornInput {
|
|
265
|
+
height: 26px;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
&.mini {
|
|
269
|
+
height: 22px;
|
|
270
|
+
.icon_component_arrow_right {
|
|
271
|
+
line-height: 20px;
|
|
272
|
+
}
|
|
273
|
+
.range__suffix {
|
|
274
|
+
line-height: 20px;
|
|
275
|
+
}
|
|
276
|
+
.lh-input {
|
|
277
|
+
.lh-input-cornInput {
|
|
278
|
+
height: 20px;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
|
|
177
284
|
}
|
|
285
|
+
.lh-switch{
|
|
286
|
+
height: 20px;
|
|
287
|
+
line-height: 20px;
|
|
288
|
+
.lh-switch-core {
|
|
289
|
+
height: 20px;
|
|
290
|
+
width: 40px;
|
|
291
|
+
border-radius: 10px;
|
|
292
|
+
&::after {
|
|
293
|
+
width: 16px;
|
|
294
|
+
height: 16px;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
.lh-switch-checked {
|
|
298
|
+
.lh-switch-core {
|
|
299
|
+
&::after {
|
|
300
|
+
left:22px;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
&.mini {
|
|
305
|
+
height: 14px;
|
|
306
|
+
line-height: 14px;
|
|
178
307
|
|
|
308
|
+
.lh-switch-core {
|
|
309
|
+
height: 14px;
|
|
310
|
+
width: 24px;
|
|
311
|
+
border-radius: 7px;
|
|
312
|
+
&::after {
|
|
313
|
+
width: 10px;
|
|
314
|
+
height: 10px;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.lh-switch-checked {
|
|
319
|
+
.lh-switch-core {
|
|
320
|
+
&::after {
|
|
321
|
+
left:12px;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
@@ -25,6 +25,11 @@
|
|
|
25
25
|
height: 40px;
|
|
26
26
|
padding-top: 2px;
|
|
27
27
|
}
|
|
28
|
+
|
|
29
|
+
.lh-scroll-common {
|
|
30
|
+
scrollbar-color: @color_b5 transparent; /* 第一个方块颜色,第二个轨道颜色(用于更改火狐浏览器样式) */
|
|
31
|
+
scrollbar-width: thin; /* 火狐滚动条无法自定义宽度,只能通过此属性使滚动条宽度变细 */
|
|
32
|
+
}
|
|
28
33
|
//通用滚动条样式,你懂的
|
|
29
34
|
.lh-scroll-common::-webkit-scrollbar {
|
|
30
35
|
width: 6px;
|
|
@@ -39,7 +44,9 @@
|
|
|
39
44
|
border-radius: 0;
|
|
40
45
|
background-color: transparent;
|
|
41
46
|
}
|
|
47
|
+
|
|
48
|
+
|
|
42
49
|
.lh-number-fontFamily {
|
|
43
|
-
font-family: Helvetica Neue,Helvetica,Arial,pingfang sc,Hiragino Sans GB,Microsoft YaHei,STHeiti,SimSun,sans-serif;
|
|
50
|
+
font-family: Roboto,Helvetica Neue,Helvetica,Arial,pingfang sc,Hiragino Sans GB,Microsoft YaHei,STHeiti,SimSun,sans-serif;
|
|
44
51
|
}
|
|
45
52
|
|
|
@@ -8,32 +8,15 @@
|
|
|
8
8
|
@color_b7:rgba(0,0,0,0.04);//网站背景,选择器里元素hover背景【一般用于控件的backgroud】
|
|
9
9
|
@color_b8:rgba(0,0,0,0.02);//表头背景,表格hover
|
|
10
10
|
|
|
11
|
-
@color_plate1:#5B8FF9;//极客蓝
|
|
12
|
-
@color_plate2:#5AD8A6;//翡翠绿
|
|
13
|
-
@color_plate3:#5D7092;//商务灰
|
|
14
|
-
@color_plate4:#F6BD16;//旭日黄
|
|
15
|
-
@color_plate5:#E86452;//薄暮红
|
|
16
|
-
@color_plate6:#6DC8EC;//破晓蓝
|
|
17
|
-
@color_plate7:#945FB9;//罗兰紫
|
|
18
|
-
@color_plate8:#FF9845;//落日橘
|
|
19
|
-
@color_plate9:#1E9493;//天水青
|
|
20
|
-
@color_plate10:#FF99C3;//桃花粉
|
|
21
|
-
|
|
22
|
-
@color_plate1_light:#CDDDFD;//极客浅蓝
|
|
23
|
-
@color_plate2_light:#CDF3E4;//翡翠浅绿
|
|
24
|
-
@color_plate3_light:#CED4DE;//商务浅灰
|
|
25
|
-
@color_plate4_light:#FCEBB9;//旭日浅黄
|
|
26
|
-
@color_plate5_light:#F8D0CB;//薄暮浅红
|
|
27
|
-
@color_plate6_light:#D3EEF9;//破晓浅蓝
|
|
28
|
-
@color_plate7_light:#DECFEA;//罗兰浅紫
|
|
29
|
-
@color_plate8_light:#FFE0C7;//落日浅橘
|
|
30
|
-
@color_plate9_light:#BBDEDE;//天水浅青
|
|
31
|
-
@color_plate10_light:#FFE0ED;//桃花浅粉
|
|
32
11
|
|
|
33
12
|
@color_error:#F4664A;//语义红:表达负面的、不可行、严重、危险、失败、热量等含义。
|
|
34
13
|
@color_warning:#FAAD14;//语义黄:表达警告、注意、阻止等含义
|
|
35
14
|
@color_success:#30BF78;//表达正面的、可行、植物、安全、成功等含义。
|
|
36
15
|
|
|
16
|
+
//违约符号专用色
|
|
17
|
+
@color_warning_red:#F5222D;
|
|
18
|
+
|
|
19
|
+
|
|
37
20
|
.no-meaning {
|
|
38
21
|
|
|
39
22
|
}
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
color: white;
|
|
17
17
|
border-radius: 2px;
|
|
18
18
|
i {
|
|
19
|
+
margin-top: 1px;
|
|
20
|
+
line-height: 1;
|
|
19
21
|
font-size:14px;
|
|
20
22
|
&.prefix-icon {
|
|
21
23
|
margin-right: 4px;
|
|
@@ -73,6 +75,8 @@
|
|
|
73
75
|
border-radius: 2px;
|
|
74
76
|
border: 1px solid @color_b5;
|
|
75
77
|
i {
|
|
78
|
+
margin-top: 1px;
|
|
79
|
+
line-height: 1;
|
|
76
80
|
font-size:14px;
|
|
77
81
|
&.prefix-icon {
|
|
78
82
|
margin-right: 4px;
|
|
@@ -130,12 +134,11 @@
|
|
|
130
134
|
.lh-button-text {
|
|
131
135
|
padding-left: 0;
|
|
132
136
|
padding-right: 0;
|
|
137
|
+
height: 32px;
|
|
133
138
|
background-color: transparent;
|
|
134
139
|
color: @color_theme4;
|
|
135
140
|
font-size: 14px;
|
|
136
|
-
height: 32px;
|
|
137
141
|
border: none;
|
|
138
|
-
|
|
139
142
|
i {
|
|
140
143
|
font-size:14px;
|
|
141
144
|
&.prefix-icon {
|
|
@@ -145,6 +148,15 @@
|
|
|
145
148
|
margin-left: 4px;
|
|
146
149
|
}
|
|
147
150
|
}
|
|
151
|
+
|
|
152
|
+
&.mini {
|
|
153
|
+
font-size: 12px;
|
|
154
|
+
height: 24px;
|
|
155
|
+
i {
|
|
156
|
+
font-size:12px;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
148
160
|
&.lh-button-text-type2 {
|
|
149
161
|
color: @color_theme7;
|
|
150
162
|
&:hover {
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
content: '';
|
|
31
31
|
position: absolute;
|
|
32
32
|
width: 8px;
|
|
33
|
+
top:5px;
|
|
33
34
|
height: 3px;
|
|
34
35
|
border: 2px solid #fff;
|
|
35
36
|
border-left: 0;
|
|
@@ -74,58 +75,74 @@
|
|
|
74
75
|
float: left;
|
|
75
76
|
}
|
|
76
77
|
|
|
77
|
-
&.
|
|
78
|
-
.lh-checkbox-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
78
|
+
&.checked{
|
|
79
|
+
.lh-checkbox-outbox {
|
|
80
|
+
.lh-checkbox-innerbox{
|
|
81
|
+
background-color: @color_theme4;
|
|
82
|
+
border-color: @color_theme4;
|
|
83
|
+
&::after{
|
|
84
|
+
transform:translateY(-2px) rotateY(180deg) rotateZ(45deg) scale(1);
|
|
85
|
+
}
|
|
83
86
|
}
|
|
84
87
|
}
|
|
85
|
-
.lh-checkbox-text{
|
|
86
|
-
color: @color_b1;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
88
|
}
|
|
90
|
-
&.
|
|
89
|
+
&.disabled{
|
|
91
90
|
cursor: not-allowed;
|
|
92
|
-
.lh-checkbox-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
91
|
+
.lh-checkbox-outbox {
|
|
92
|
+
.lh-checkbox-innerbox{
|
|
93
|
+
background-color:@color_b7;
|
|
94
|
+
border: solid 1px @color_b5;
|
|
95
|
+
cursor: not-allowed;
|
|
96
|
+
&::after{
|
|
97
|
+
border-color: @color_b4;
|
|
98
|
+
}
|
|
99
|
+
&.indeterminate{
|
|
100
|
+
background-color:@color_b7;
|
|
101
|
+
border: solid 1px @color_b5;
|
|
102
|
+
&::after {
|
|
103
|
+
background-color: @color_b4;
|
|
104
|
+
border-color: @color_b4;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
106
107
|
}
|
|
107
108
|
}
|
|
108
109
|
.lh-checkbox-text{
|
|
109
110
|
color: @color_b4;
|
|
110
111
|
}
|
|
111
112
|
}
|
|
112
|
-
&.
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
113
|
+
&.mini{
|
|
114
|
+
.lh-checkbox-outbox {
|
|
115
|
+
.lh-checkbox-innerbox{
|
|
116
|
+
width: 14px;
|
|
117
|
+
height: 14px;
|
|
118
|
+
border-radius:2px;
|
|
119
|
+
margin-top: 1px;
|
|
120
|
+
&.indeterminate{
|
|
121
|
+
&::after {
|
|
122
|
+
height: 6px;
|
|
123
|
+
width: 6px;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
121
127
|
}
|
|
122
128
|
.lh-checkbox-text{
|
|
123
129
|
font-size: 12px;
|
|
124
|
-
padding-left: 4px;
|
|
125
130
|
}
|
|
131
|
+
|
|
132
|
+
&.checked{
|
|
133
|
+
.lh-checkbox-outbox {
|
|
134
|
+
.lh-checkbox-innerbox{
|
|
135
|
+
&::after{
|
|
136
|
+
top:4px;
|
|
137
|
+
transform:translateY(-2px) rotateY(180deg) rotateZ(45deg) scale(0.9);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
126
143
|
}
|
|
127
144
|
|
|
128
|
-
&:not(.
|
|
145
|
+
&:not(.disabled):hover{
|
|
129
146
|
.lh-checkbox-innerbox{
|
|
130
147
|
border-color:@color_theme4;
|
|
131
148
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.lh-context-menu {
|
|
2
|
+
position: relative;
|
|
3
|
+
.menu-list {
|
|
4
|
+
display: none;
|
|
5
|
+
position: fixed;
|
|
6
|
+
z-index:2;
|
|
7
|
+
width: 140px;
|
|
8
|
+
min-height: 90px;
|
|
9
|
+
background: white;
|
|
10
|
+
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
|
11
|
+
border-radius: 2px;
|
|
12
|
+
}
|
|
13
|
+
&.right-active {
|
|
14
|
+
.menu-list {
|
|
15
|
+
display: block;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|