lh-ui-next 0.2.1-beta.12 → 0.2.1-beta.14
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 +1 -1
- package/package.json +1 -1
- package/static/css/package/checkbox.less +45 -8
- package/static/css/theme-compact-blue/main.css +1 -1
- package/static/css/theme-compact-dark/main.css +1 -1
- package/static/css/theme-loose-blue/main.css +1 -1
- package/static/css/theme-loose-orange/main.css +1 -1
- package/static/iconFontComponent/iconfont.css +582 -574
- package/static/iconFontComponent/iconfont.eot +0 -0
- package/static/iconFontComponent/iconfont.js +1 -1
- package/static/iconFontComponent/iconfont.json +996 -982
- package/static/iconFontComponent/iconfont.svg +301 -297
- package/static/iconFontComponent/iconfont.ttf +0 -0
- package/static/iconFontComponent/iconfont.woff +0 -0
- package/static/iconFontComponent/iconfont.woff2 +0 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ alpha version is use to self-test; beta version is use to public survey.for exam
|
|
|
5
5
|
1.0.0-alpha.1
|
|
6
6
|
1.0.0-test.2
|
|
7
7
|
## Official version : "0.2.0",
|
|
8
|
-
## test version : "0.2.1-beta.
|
|
8
|
+
## test version : "0.2.1-beta.14,
|
|
9
9
|
## npmmirror
|
|
10
10
|
When cnpm sync execution is unsuccessful,you can go the website(http://www.npmmirror.com/package/lh-ui-next) and press sync button to
|
|
11
11
|
manual trigger the sync event
|
package/package.json
CHANGED
|
@@ -73,14 +73,6 @@
|
|
|
73
73
|
line-height: 22px;
|
|
74
74
|
float: left;
|
|
75
75
|
}
|
|
76
|
-
//圆形checkbox按钮
|
|
77
|
-
&.circle {
|
|
78
|
-
.lh-checkbox-outbox {
|
|
79
|
-
.lh-checkbox-innerbox {
|
|
80
|
-
border-radius: 50% !important;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
76
|
&.checked{
|
|
85
77
|
.lh-checkbox-outbox {
|
|
86
78
|
.lh-checkbox-innerbox{
|
|
@@ -174,6 +166,51 @@
|
|
|
174
166
|
}
|
|
175
167
|
}
|
|
176
168
|
|
|
169
|
+
//圆形checkbox按钮。火狐下面,周游说有锯齿,真服了。只能把border隐藏一下
|
|
170
|
+
&.circle {
|
|
171
|
+
.lh-checkbox-outbox {
|
|
172
|
+
.lh-checkbox-innerbox {
|
|
173
|
+
border-radius: 50% !important;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
&.checked {
|
|
177
|
+
.lh-checkbox-outbox {
|
|
178
|
+
.lh-checkbox-innerbox {
|
|
179
|
+
border: none;
|
|
180
|
+
&::after{
|
|
181
|
+
transform:translateY(0px) rotateY(180deg) rotateZ(45deg) scale(1);
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
&.big{
|
|
187
|
+
&.checked{
|
|
188
|
+
.lh-checkbox-outbox {
|
|
189
|
+
.lh-checkbox-innerbox{
|
|
190
|
+
&::after{
|
|
191
|
+
top:4px;
|
|
192
|
+
transform:translateY(2px) rotateY(180deg) rotateZ(45deg) scale(1.2);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
&.mini{
|
|
199
|
+
&.checked{
|
|
200
|
+
.lh-checkbox-outbox {
|
|
201
|
+
.lh-checkbox-innerbox{
|
|
202
|
+
&::after{
|
|
203
|
+
top:4px;
|
|
204
|
+
transform:translateY(-1px) rotateY(180deg) rotateZ(45deg) scale(0.9);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
177
214
|
&:not(.disabled):hover{
|
|
178
215
|
.lh-checkbox-innerbox{
|
|
179
216
|
border-color:@color_theme6;
|