@mdsfe/mds-ui 0.4.9-beta.4 → 0.4.9-beta.5
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/dist/mds-ui.common.css +1 -1
- package/dist/mds-ui.min.css +1 -1
- package/dist/style/checkbox.css +9 -5
- package/dist/style/index.css +1 -1
- package/dist/style/table.css +9 -5
- package/dist/style/transfer.css +3 -3
- package/package.json +1 -1
- package/CHANGELOG.md +0 -1057
package/dist/style/table.css
CHANGED
|
@@ -2230,8 +2230,10 @@
|
|
|
2230
2230
|
.mds-checkbox-inner:after {
|
|
2231
2231
|
transform: rotate(45deg) scale(0);
|
|
2232
2232
|
position: absolute;
|
|
2233
|
-
left:
|
|
2234
|
-
top:
|
|
2233
|
+
left: 50%;
|
|
2234
|
+
top: 50%;
|
|
2235
|
+
margin-left: -3px;
|
|
2236
|
+
margin-top: -6px;
|
|
2235
2237
|
display: block;
|
|
2236
2238
|
width: 6px;
|
|
2237
2239
|
height: 10px;
|
|
@@ -2259,10 +2261,12 @@
|
|
|
2259
2261
|
}
|
|
2260
2262
|
.mds-checkbox-indeterminate .mds-checkbox-inner:after {
|
|
2261
2263
|
content: '';
|
|
2262
|
-
transform: scale(1);
|
|
2264
|
+
transform: translate(-50%, -50%) scale(1);
|
|
2263
2265
|
position: absolute;
|
|
2264
|
-
left:
|
|
2265
|
-
top:
|
|
2266
|
+
left: 50%;
|
|
2267
|
+
top: 50%;
|
|
2268
|
+
margin-left: 0;
|
|
2269
|
+
margin-top: 0;
|
|
2266
2270
|
width: 10.28571429px;
|
|
2267
2271
|
height: 10.28571429px;
|
|
2268
2272
|
background: #0364FF;
|
package/dist/style/transfer.css
CHANGED
|
@@ -194,13 +194,13 @@
|
|
|
194
194
|
flex-direction: column;
|
|
195
195
|
gap: 0;
|
|
196
196
|
}
|
|
197
|
-
.mds-checkbox-wrapper {
|
|
197
|
+
.mds-transfer-extra .mds-checkbox-wrapper {
|
|
198
198
|
display: flex;
|
|
199
199
|
align-items: center;
|
|
200
200
|
}
|
|
201
|
-
.mds-checkbox-wrapper:hover {
|
|
201
|
+
.mds-transfer-extra .mds-checkbox-wrapper:hover {
|
|
202
202
|
background-color: #f5f7fa;
|
|
203
203
|
}
|
|
204
|
-
.mds-checkbox-wrapper .mds-checkbox[disabled] + span {
|
|
204
|
+
.mds-transfer-extra .mds-checkbox-wrapper .mds-checkbox[disabled] + span {
|
|
205
205
|
color: #d8dce6;
|
|
206
206
|
}
|