@emailmaker/filemanager 0.10.10 → 0.10.11
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/file-manager.css +9 -4
- package/file-manager.esm.js +3 -3
- package/file-manager.esm.js.map +1 -1
- package/file-manager.js +1 -1
- package/package.json +1 -1
package/file-manager.css
CHANGED
|
@@ -270,7 +270,6 @@
|
|
|
270
270
|
color: #8c8c8c;
|
|
271
271
|
font-size: 13px;
|
|
272
272
|
line-height: 1.3;
|
|
273
|
-
font-weight: 600;
|
|
274
273
|
white-space: nowrap;
|
|
275
274
|
}
|
|
276
275
|
|
|
@@ -283,7 +282,11 @@
|
|
|
283
282
|
}
|
|
284
283
|
|
|
285
284
|
.em-filemanager .gridFileMenuButton {
|
|
286
|
-
padding:
|
|
285
|
+
padding: 0;
|
|
286
|
+
width: calc(var(--formControlHeight) * 1px);
|
|
287
|
+
min-width: calc(var(--formControlHeight) * 1px);
|
|
288
|
+
height: calc(var(--formControlHeight) * 1px);
|
|
289
|
+
min-height: calc(var(--formControlHeight) * 1px);
|
|
287
290
|
}
|
|
288
291
|
|
|
289
292
|
.em-filemanager .classsssssss {
|
|
@@ -1290,6 +1293,8 @@
|
|
|
1290
1293
|
.em-filemanager .file-manager__layout .selected-text {
|
|
1291
1294
|
white-space: nowrap;
|
|
1292
1295
|
margin-right: auto;
|
|
1296
|
+
display: flex;
|
|
1297
|
+
align-items: center;
|
|
1293
1298
|
}
|
|
1294
1299
|
.em-filemanager .file-manager__layout .file-manager__content {
|
|
1295
1300
|
flex: 1;
|
|
@@ -1488,8 +1493,8 @@
|
|
|
1488
1493
|
background: var(--colorBorder);
|
|
1489
1494
|
}
|
|
1490
1495
|
.em-filemanager .file-manager__layout .main-content .content-layout .ant-segmented .ant-segmented-item-label {
|
|
1491
|
-
min-height: calc((var(--formControlHeight) - var(--borderWidth) *
|
|
1492
|
-
line-height: calc((var(--formControlHeight) - var(--borderWidth) *
|
|
1496
|
+
min-height: calc((var(--formControlHeight) - var(--borderWidth) * 2) * 1px);
|
|
1497
|
+
line-height: calc((var(--formControlHeight) - var(--borderWidth) * 2) * 1px);
|
|
1493
1498
|
padding: 0 11px;
|
|
1494
1499
|
display: flex;
|
|
1495
1500
|
}
|