@tecof/theme-editor 0.0.14 → 0.0.16
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/index.js +116 -90
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +115 -89
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +14 -10
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -859,6 +859,8 @@
|
|
|
859
859
|
flex-direction: column;
|
|
860
860
|
gap: 10px;
|
|
861
861
|
font-family: 'Inter', system-ui, sans-serif;
|
|
862
|
+
max-width: 100%;
|
|
863
|
+
overflow: hidden;
|
|
862
864
|
}
|
|
863
865
|
|
|
864
866
|
.tecof-upload-empty-state {
|
|
@@ -908,13 +910,15 @@
|
|
|
908
910
|
.tecof-upload-file-item {
|
|
909
911
|
display: flex;
|
|
910
912
|
align-items: center;
|
|
911
|
-
gap:
|
|
912
|
-
padding: 10px
|
|
913
|
+
gap: 10px;
|
|
914
|
+
padding: 8px 10px;
|
|
913
915
|
background: #ffffff;
|
|
914
916
|
border: 1px solid #e4e4e7;
|
|
915
|
-
border-radius:
|
|
917
|
+
border-radius: 10px;
|
|
916
918
|
transition: all 0.2s ease;
|
|
917
919
|
box-shadow: 0 1px 2px rgba(0,0,0,0.04);
|
|
920
|
+
max-width: 100%;
|
|
921
|
+
overflow: hidden;
|
|
918
922
|
}
|
|
919
923
|
|
|
920
924
|
.tecof-upload-file-item:hover {
|
|
@@ -923,9 +927,9 @@
|
|
|
923
927
|
}
|
|
924
928
|
|
|
925
929
|
.tecof-upload-file-thumb {
|
|
926
|
-
width:
|
|
927
|
-
height:
|
|
928
|
-
border-radius:
|
|
930
|
+
width: 40px;
|
|
931
|
+
height: 40px;
|
|
932
|
+
border-radius: 8px;
|
|
929
933
|
overflow: hidden;
|
|
930
934
|
background: #f4f4f5;
|
|
931
935
|
flex-shrink: 0;
|
|
@@ -998,7 +1002,7 @@
|
|
|
998
1002
|
.tecof-upload-file-actions {
|
|
999
1003
|
display: flex;
|
|
1000
1004
|
align-items: center;
|
|
1001
|
-
gap:
|
|
1005
|
+
gap: 1px;
|
|
1002
1006
|
flex-shrink: 0;
|
|
1003
1007
|
}
|
|
1004
1008
|
|
|
@@ -1006,12 +1010,12 @@
|
|
|
1006
1010
|
display: flex;
|
|
1007
1011
|
align-items: center;
|
|
1008
1012
|
justify-content: center;
|
|
1009
|
-
width:
|
|
1010
|
-
height:
|
|
1013
|
+
width: 26px;
|
|
1014
|
+
height: 26px;
|
|
1011
1015
|
color: #a1a1aa;
|
|
1012
1016
|
background: none;
|
|
1013
1017
|
border: none;
|
|
1014
|
-
border-radius:
|
|
1018
|
+
border-radius: 6px;
|
|
1015
1019
|
cursor: pointer;
|
|
1016
1020
|
transition: all 0.15s ease;
|
|
1017
1021
|
}
|
package/package.json
CHANGED