@tecof/theme-editor 0.0.32 → 0.0.34
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/components/UnderConstruction.d.mts +12 -0
- package/dist/components/UnderConstruction.d.ts +12 -0
- package/dist/components/UnderConstruction.js +249 -0
- package/dist/components/UnderConstruction.js.map +1 -0
- package/dist/components/UnderConstruction.mjs +244 -0
- package/dist/components/UnderConstruction.mjs.map +1 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +785 -495
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +787 -498
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +430 -230
- package/package.json +9 -4
package/dist/styles.css
CHANGED
|
@@ -908,11 +908,12 @@
|
|
|
908
908
|
background: #a1a1aa;
|
|
909
909
|
}
|
|
910
910
|
|
|
911
|
+
/* ─── UploadField ─── */
|
|
911
912
|
/* ─── UploadField ─── */
|
|
912
913
|
.tecof-upload-container {
|
|
913
914
|
display: flex;
|
|
914
915
|
flex-direction: column;
|
|
915
|
-
gap:
|
|
916
|
+
gap: 8px;
|
|
916
917
|
font-family: 'Inter', system-ui, sans-serif;
|
|
917
918
|
max-width: 100%;
|
|
918
919
|
overflow: hidden;
|
|
@@ -923,41 +924,41 @@
|
|
|
923
924
|
flex-direction: column;
|
|
924
925
|
align-items: center;
|
|
925
926
|
justify-content: center;
|
|
926
|
-
padding:
|
|
927
|
+
padding: 16px 12px;
|
|
927
928
|
background: #fafafa;
|
|
928
|
-
border:
|
|
929
|
-
border-radius:
|
|
929
|
+
border: 1px dashed #e4e4e7;
|
|
930
|
+
border-radius: 8px;
|
|
930
931
|
cursor: pointer;
|
|
931
932
|
transition: all 0.2s ease;
|
|
932
933
|
}
|
|
933
934
|
|
|
934
935
|
.tecof-upload-empty-state:hover {
|
|
935
|
-
border-color:
|
|
936
|
-
background: #
|
|
936
|
+
border-color: #18181b;
|
|
937
|
+
background: #fafafa;
|
|
937
938
|
}
|
|
938
939
|
|
|
939
940
|
.tecof-upload-empty-icon {
|
|
940
|
-
width:
|
|
941
|
-
height:
|
|
942
|
-
border-radius:
|
|
943
|
-
background:
|
|
941
|
+
width: 32px;
|
|
942
|
+
height: 32px;
|
|
943
|
+
border-radius: 8px;
|
|
944
|
+
background: #f4f4f5;
|
|
944
945
|
display: flex;
|
|
945
946
|
align-items: center;
|
|
946
947
|
justify-content: center;
|
|
947
|
-
color:
|
|
948
|
-
margin-bottom:
|
|
948
|
+
color: #71717a;
|
|
949
|
+
margin-bottom: 8px;
|
|
949
950
|
}
|
|
950
951
|
|
|
951
952
|
.tecof-upload-empty-title {
|
|
952
|
-
font-size:
|
|
953
|
-
font-weight:
|
|
954
|
-
color: #
|
|
955
|
-
margin: 0 0
|
|
953
|
+
font-size: 12px;
|
|
954
|
+
font-weight: 500;
|
|
955
|
+
color: #18181b;
|
|
956
|
+
margin: 0 0 2px 0;
|
|
956
957
|
}
|
|
957
958
|
|
|
958
959
|
.tecof-upload-empty-desc {
|
|
959
|
-
font-size:
|
|
960
|
-
color: #
|
|
960
|
+
font-size: 11px;
|
|
961
|
+
color: #71717a;
|
|
961
962
|
margin: 0;
|
|
962
963
|
text-align: center;
|
|
963
964
|
}
|
|
@@ -965,26 +966,25 @@
|
|
|
965
966
|
.tecof-upload-file-item {
|
|
966
967
|
display: flex;
|
|
967
968
|
align-items: center;
|
|
968
|
-
gap:
|
|
969
|
-
padding: 8px
|
|
969
|
+
gap: 8px;
|
|
970
|
+
padding: 6px 8px;
|
|
970
971
|
background: #ffffff;
|
|
971
972
|
border: 1px solid #e4e4e7;
|
|
972
|
-
border-radius:
|
|
973
|
+
border-radius: 8px;
|
|
973
974
|
transition: all 0.2s ease;
|
|
974
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
975
975
|
max-width: 100%;
|
|
976
976
|
overflow: hidden;
|
|
977
977
|
}
|
|
978
978
|
|
|
979
979
|
.tecof-upload-file-item:hover {
|
|
980
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
981
980
|
border-color: #d4d4d8;
|
|
981
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
|
|
982
982
|
}
|
|
983
983
|
|
|
984
984
|
.tecof-upload-file-thumb {
|
|
985
|
-
width:
|
|
986
|
-
height:
|
|
987
|
-
border-radius:
|
|
985
|
+
width: 32px;
|
|
986
|
+
height: 32px;
|
|
987
|
+
border-radius: 6px;
|
|
988
988
|
overflow: hidden;
|
|
989
989
|
background: #f4f4f5;
|
|
990
990
|
flex-shrink: 0;
|
|
@@ -1003,14 +1003,14 @@
|
|
|
1003
1003
|
}
|
|
1004
1004
|
|
|
1005
1005
|
.tecof-upload-file-icon {
|
|
1006
|
-
width:
|
|
1007
|
-
height:
|
|
1008
|
-
border-radius:
|
|
1009
|
-
background:
|
|
1006
|
+
width: 32px;
|
|
1007
|
+
height: 32px;
|
|
1008
|
+
border-radius: 6px;
|
|
1009
|
+
background: #f4f4f5;
|
|
1010
1010
|
display: flex;
|
|
1011
1011
|
align-items: center;
|
|
1012
1012
|
justify-content: center;
|
|
1013
|
-
color:
|
|
1013
|
+
color: #71717a;
|
|
1014
1014
|
flex-shrink: 0;
|
|
1015
1015
|
}
|
|
1016
1016
|
|
|
@@ -1020,36 +1020,35 @@
|
|
|
1020
1020
|
}
|
|
1021
1021
|
|
|
1022
1022
|
.tecof-upload-file-name {
|
|
1023
|
-
font-size:
|
|
1023
|
+
font-size: 12px;
|
|
1024
1024
|
font-weight: 500;
|
|
1025
1025
|
color: #18181b;
|
|
1026
1026
|
white-space: nowrap;
|
|
1027
1027
|
overflow: hidden;
|
|
1028
1028
|
text-overflow: ellipsis;
|
|
1029
1029
|
margin: 0;
|
|
1030
|
-
line-height:
|
|
1030
|
+
line-height: 16px;
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
1033
1033
|
.tecof-upload-file-meta {
|
|
1034
1034
|
display: flex;
|
|
1035
1035
|
align-items: center;
|
|
1036
|
-
gap:
|
|
1037
|
-
margin-top:
|
|
1036
|
+
gap: 4px;
|
|
1037
|
+
margin-top: 2px;
|
|
1038
1038
|
}
|
|
1039
1039
|
|
|
1040
1040
|
.tecof-upload-file-badge {
|
|
1041
|
-
font-size:
|
|
1042
|
-
font-weight:
|
|
1043
|
-
padding:
|
|
1044
|
-
background: #
|
|
1045
|
-
color:
|
|
1046
|
-
border-radius:
|
|
1047
|
-
line-height:
|
|
1048
|
-
letter-spacing: 0.3px;
|
|
1041
|
+
font-size: 9px;
|
|
1042
|
+
font-weight: 600;
|
|
1043
|
+
padding: 1px 4px;
|
|
1044
|
+
background: #f4f4f5;
|
|
1045
|
+
color: #71717a;
|
|
1046
|
+
border-radius: 3px;
|
|
1047
|
+
line-height: 12px;
|
|
1049
1048
|
}
|
|
1050
1049
|
|
|
1051
1050
|
.tecof-upload-file-size {
|
|
1052
|
-
font-size:
|
|
1051
|
+
font-size: 10px;
|
|
1053
1052
|
color: #a1a1aa;
|
|
1054
1053
|
margin: 0;
|
|
1055
1054
|
}
|
|
@@ -1065,14 +1064,14 @@
|
|
|
1065
1064
|
display: flex;
|
|
1066
1065
|
align-items: center;
|
|
1067
1066
|
justify-content: center;
|
|
1068
|
-
width:
|
|
1069
|
-
height:
|
|
1070
|
-
color: #
|
|
1067
|
+
width: 24px;
|
|
1068
|
+
height: 24px;
|
|
1069
|
+
color: #71717a;
|
|
1071
1070
|
background: none;
|
|
1072
1071
|
border: none;
|
|
1073
|
-
border-radius:
|
|
1072
|
+
border-radius: 4px;
|
|
1074
1073
|
cursor: pointer;
|
|
1075
|
-
transition: all 0.
|
|
1074
|
+
transition: all 0.1s ease;
|
|
1076
1075
|
}
|
|
1077
1076
|
|
|
1078
1077
|
.tecof-upload-action-btn:hover {
|
|
@@ -1081,7 +1080,7 @@
|
|
|
1081
1080
|
}
|
|
1082
1081
|
|
|
1083
1082
|
.tecof-upload-action-btn-danger {
|
|
1084
|
-
color: #
|
|
1083
|
+
color: #71717a;
|
|
1085
1084
|
}
|
|
1086
1085
|
|
|
1087
1086
|
.tecof-upload-action-btn-danger:hover {
|
|
@@ -1091,52 +1090,50 @@
|
|
|
1091
1090
|
|
|
1092
1091
|
.tecof-upload-main-actions {
|
|
1093
1092
|
display: flex;
|
|
1094
|
-
gap:
|
|
1093
|
+
gap: 6px;
|
|
1095
1094
|
}
|
|
1096
1095
|
|
|
1097
1096
|
.tecof-upload-btn-primary {
|
|
1098
1097
|
display: flex;
|
|
1099
1098
|
align-items: center;
|
|
1100
|
-
gap:
|
|
1099
|
+
gap: 5px;
|
|
1101
1100
|
flex: 1;
|
|
1102
1101
|
justify-content: center;
|
|
1103
|
-
padding:
|
|
1104
|
-
font-size:
|
|
1105
|
-
font-weight:
|
|
1102
|
+
padding: 8px 10px;
|
|
1103
|
+
font-size: 12px;
|
|
1104
|
+
font-weight: 500;
|
|
1106
1105
|
color: #ffffff;
|
|
1107
|
-
background:
|
|
1106
|
+
background: #18181b;
|
|
1108
1107
|
border: none;
|
|
1109
|
-
border-radius:
|
|
1108
|
+
border-radius: 6px;
|
|
1110
1109
|
cursor: pointer;
|
|
1111
|
-
transition: all 0.
|
|
1112
|
-
box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
|
|
1110
|
+
transition: all 0.15s ease;
|
|
1113
1111
|
}
|
|
1114
1112
|
|
|
1115
1113
|
.tecof-upload-btn-primary:hover {
|
|
1116
|
-
|
|
1117
|
-
transform: translateY(-1px);
|
|
1114
|
+
background: #27272a;
|
|
1118
1115
|
}
|
|
1119
1116
|
|
|
1120
1117
|
.tecof-upload-btn-secondary {
|
|
1121
1118
|
display: flex;
|
|
1122
1119
|
align-items: center;
|
|
1123
|
-
gap:
|
|
1120
|
+
gap: 5px;
|
|
1124
1121
|
flex: 1;
|
|
1125
1122
|
justify-content: center;
|
|
1126
|
-
padding:
|
|
1127
|
-
font-size:
|
|
1123
|
+
padding: 8px 10px;
|
|
1124
|
+
font-size: 12px;
|
|
1128
1125
|
font-weight: 500;
|
|
1129
|
-
color: #
|
|
1126
|
+
color: #27272a;
|
|
1130
1127
|
background: #ffffff;
|
|
1131
1128
|
border: 1px solid #e4e4e7;
|
|
1132
|
-
border-radius:
|
|
1129
|
+
border-radius: 6px;
|
|
1133
1130
|
cursor: pointer;
|
|
1134
|
-
transition: all 0.
|
|
1135
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
1131
|
+
transition: all 0.15s ease;
|
|
1136
1132
|
}
|
|
1137
1133
|
|
|
1138
1134
|
.tecof-upload-btn-secondary:hover {
|
|
1139
|
-
background: #
|
|
1135
|
+
background: #fafafa;
|
|
1136
|
+
border-color: #d4d4d8;
|
|
1140
1137
|
}
|
|
1141
1138
|
|
|
1142
1139
|
.tecof-upload-pond-section {
|
|
@@ -1191,10 +1188,10 @@
|
|
|
1191
1188
|
.tecof-upload-drawer-overlay {
|
|
1192
1189
|
position: fixed;
|
|
1193
1190
|
inset: 0;
|
|
1194
|
-
background: rgba(
|
|
1195
|
-
backdrop-filter: blur(
|
|
1196
|
-
-webkit-backdrop-filter: blur(
|
|
1197
|
-
z-index:
|
|
1191
|
+
background: rgba(9, 9, 11, 0.6);
|
|
1192
|
+
backdrop-filter: blur(8px);
|
|
1193
|
+
-webkit-backdrop-filter: blur(8px);
|
|
1194
|
+
z-index: 999999 !important;
|
|
1198
1195
|
}
|
|
1199
1196
|
|
|
1200
1197
|
.tecof-upload-drawer-content {
|
|
@@ -1202,30 +1199,40 @@
|
|
|
1202
1199
|
bottom: 0;
|
|
1203
1200
|
left: 0;
|
|
1204
1201
|
right: 0;
|
|
1205
|
-
|
|
1202
|
+
margin: 0 auto;
|
|
1203
|
+
width: 100%;
|
|
1204
|
+
max-width: 820px;
|
|
1205
|
+
height: 82vh;
|
|
1206
1206
|
display: flex;
|
|
1207
1207
|
flex-direction: column;
|
|
1208
1208
|
background: #ffffff;
|
|
1209
|
-
border-top-left-radius:
|
|
1210
|
-
border-top-right-radius:
|
|
1211
|
-
z-index:
|
|
1212
|
-
box-shadow: 0 -
|
|
1209
|
+
border-top-left-radius: 24px;
|
|
1210
|
+
border-top-right-radius: 24px;
|
|
1211
|
+
z-index: 1000000 !important;
|
|
1212
|
+
box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.15);
|
|
1213
|
+
border: 1px solid rgba(228, 228, 231, 0.8);
|
|
1214
|
+
border-bottom: none;
|
|
1213
1215
|
}
|
|
1214
1216
|
|
|
1215
1217
|
.tecof-upload-drawer-handle {
|
|
1216
|
-
width:
|
|
1217
|
-
height:
|
|
1218
|
-
border-radius:
|
|
1219
|
-
background: #
|
|
1220
|
-
margin:
|
|
1218
|
+
width: 48px;
|
|
1219
|
+
height: 5px;
|
|
1220
|
+
border-radius: 9999px;
|
|
1221
|
+
background: #e4e4e7;
|
|
1222
|
+
margin: 12px auto 6px;
|
|
1221
1223
|
flex-shrink: 0;
|
|
1224
|
+
transition: background-color 0.2s ease;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
.tecof-upload-drawer-handle:hover {
|
|
1228
|
+
background: #d4d4d8;
|
|
1222
1229
|
}
|
|
1223
1230
|
|
|
1224
1231
|
.tecof-upload-drawer-inner {
|
|
1225
1232
|
display: flex;
|
|
1226
1233
|
flex-direction: column;
|
|
1227
1234
|
flex: 1;
|
|
1228
|
-
padding: 12px
|
|
1235
|
+
padding: 12px 20px 20px;
|
|
1229
1236
|
overflow: hidden;
|
|
1230
1237
|
}
|
|
1231
1238
|
|
|
@@ -1233,60 +1240,65 @@
|
|
|
1233
1240
|
display: flex;
|
|
1234
1241
|
justify-content: space-between;
|
|
1235
1242
|
align-items: center;
|
|
1236
|
-
margin-bottom:
|
|
1243
|
+
margin-bottom: 16px;
|
|
1237
1244
|
flex-shrink: 0;
|
|
1238
1245
|
}
|
|
1239
1246
|
|
|
1240
1247
|
.tecof-upload-drawer-title {
|
|
1241
|
-
font-size:
|
|
1248
|
+
font-size: 18px;
|
|
1242
1249
|
font-weight: 700;
|
|
1243
|
-
color: #
|
|
1250
|
+
color: #09090b;
|
|
1244
1251
|
margin: 0;
|
|
1245
|
-
letter-spacing: -0.
|
|
1252
|
+
letter-spacing: -0.02em;
|
|
1246
1253
|
}
|
|
1247
1254
|
|
|
1248
1255
|
.tecof-upload-drawer-header-actions {
|
|
1249
1256
|
display: flex;
|
|
1250
|
-
gap:
|
|
1257
|
+
gap: 8px;
|
|
1251
1258
|
align-items: center;
|
|
1252
1259
|
}
|
|
1253
1260
|
|
|
1254
1261
|
.tecof-upload-drawer-action-btn {
|
|
1255
1262
|
background: #f4f4f5;
|
|
1256
1263
|
border: 1px solid #e4e4e7;
|
|
1257
|
-
border-radius:
|
|
1258
|
-
width:
|
|
1259
|
-
height:
|
|
1264
|
+
border-radius: 10px;
|
|
1265
|
+
width: 36px;
|
|
1266
|
+
height: 36px;
|
|
1260
1267
|
display: flex;
|
|
1261
1268
|
align-items: center;
|
|
1262
1269
|
justify-content: center;
|
|
1263
1270
|
cursor: pointer;
|
|
1264
|
-
transition: all 0.
|
|
1265
|
-
color: #
|
|
1271
|
+
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
1272
|
+
color: #3f3f46;
|
|
1266
1273
|
}
|
|
1267
1274
|
|
|
1268
1275
|
.tecof-upload-drawer-action-btn:hover {
|
|
1269
1276
|
background: #e4e4e7;
|
|
1270
|
-
color: #
|
|
1277
|
+
color: #09090b;
|
|
1278
|
+
transform: scale(1.05);
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
.tecof-upload-drawer-action-btn:active {
|
|
1282
|
+
transform: scale(0.95);
|
|
1271
1283
|
}
|
|
1272
1284
|
|
|
1273
1285
|
.tecof-upload-search-box {
|
|
1274
1286
|
display: flex;
|
|
1275
1287
|
align-items: center;
|
|
1276
|
-
gap:
|
|
1277
|
-
padding:
|
|
1288
|
+
gap: 10px;
|
|
1289
|
+
padding: 10px 14px;
|
|
1278
1290
|
background: #f4f4f5;
|
|
1279
|
-
border-radius:
|
|
1280
|
-
margin-bottom:
|
|
1291
|
+
border-radius: 12px;
|
|
1292
|
+
margin-bottom: 16px;
|
|
1281
1293
|
flex-shrink: 0;
|
|
1282
|
-
border: 1px solid
|
|
1283
|
-
transition: all 0.
|
|
1294
|
+
border: 1px solid #e4e4e7;
|
|
1295
|
+
transition: all 0.2s ease;
|
|
1284
1296
|
}
|
|
1285
1297
|
|
|
1286
1298
|
.tecof-upload-search-box:focus-within {
|
|
1287
1299
|
background: #ffffff;
|
|
1288
1300
|
border-color: var(--tecof-primary-500, #3b82f6);
|
|
1289
|
-
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.
|
|
1301
|
+
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
|
|
1290
1302
|
}
|
|
1291
1303
|
|
|
1292
1304
|
.tecof-upload-search-input {
|
|
@@ -1295,17 +1307,37 @@
|
|
|
1295
1307
|
background: transparent;
|
|
1296
1308
|
outline: none;
|
|
1297
1309
|
font-size: 13px;
|
|
1298
|
-
color: #
|
|
1310
|
+
color: #09090b;
|
|
1299
1311
|
font-family: 'Inter', system-ui, sans-serif;
|
|
1312
|
+
font-weight: 450;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
.tecof-upload-search-input::placeholder {
|
|
1316
|
+
color: #71717a;
|
|
1300
1317
|
}
|
|
1301
1318
|
|
|
1302
1319
|
.tecof-upload-gallery-grid {
|
|
1303
1320
|
display: grid;
|
|
1304
|
-
grid-template-columns: repeat(auto-fill, minmax(
|
|
1305
|
-
gap:
|
|
1321
|
+
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
|
1322
|
+
gap: 12px;
|
|
1306
1323
|
overflow-y: auto;
|
|
1307
1324
|
flex: 1;
|
|
1308
|
-
padding
|
|
1325
|
+
padding: 4px 4px 20px 4px;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
/* Custom Scrollbar for Grid */
|
|
1329
|
+
.tecof-upload-gallery-grid::-webkit-scrollbar {
|
|
1330
|
+
width: 6px;
|
|
1331
|
+
}
|
|
1332
|
+
.tecof-upload-gallery-grid::-webkit-scrollbar-track {
|
|
1333
|
+
background: transparent;
|
|
1334
|
+
}
|
|
1335
|
+
.tecof-upload-gallery-grid::-webkit-scrollbar-thumb {
|
|
1336
|
+
background: #d4d4d8;
|
|
1337
|
+
border-radius: 9999px;
|
|
1338
|
+
}
|
|
1339
|
+
.tecof-upload-gallery-grid::-webkit-scrollbar-thumb:hover {
|
|
1340
|
+
background: #a1a1aa;
|
|
1309
1341
|
}
|
|
1310
1342
|
|
|
1311
1343
|
.tecof-upload-gallery-item {
|
|
@@ -1315,45 +1347,67 @@
|
|
|
1315
1347
|
align-items: center;
|
|
1316
1348
|
padding: 6px;
|
|
1317
1349
|
background: #ffffff;
|
|
1318
|
-
border:
|
|
1319
|
-
border-radius:
|
|
1350
|
+
border: 1px solid rgba(228, 228, 231, 0.8);
|
|
1351
|
+
border-radius: 12px;
|
|
1320
1352
|
cursor: pointer;
|
|
1321
|
-
transition: all 0.
|
|
1322
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.
|
|
1353
|
+
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
|
1354
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
|
|
1323
1355
|
}
|
|
1324
1356
|
|
|
1325
1357
|
.tecof-upload-gallery-item:hover {
|
|
1326
|
-
border-color: #
|
|
1358
|
+
border-color: var(--tecof-primary-300, #93c5fd);
|
|
1359
|
+
transform: translateY(-2px);
|
|
1360
|
+
box-shadow: 0 4px 12px rgba(9, 9, 11, 0.06);
|
|
1327
1361
|
}
|
|
1328
1362
|
|
|
1329
1363
|
.tecof-upload-gallery-item.selected {
|
|
1330
|
-
background: #eff6ff;
|
|
1364
|
+
background: var(--tecof-primary-50, #eff6ff);
|
|
1331
1365
|
border-color: var(--tecof-primary-500, #3b82f6);
|
|
1332
|
-
box-shadow: 0
|
|
1366
|
+
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
|
|
1333
1367
|
}
|
|
1334
1368
|
|
|
1335
1369
|
.tecof-upload-gallery-check {
|
|
1336
1370
|
position: absolute;
|
|
1337
|
-
top:
|
|
1338
|
-
right:
|
|
1339
|
-
width:
|
|
1340
|
-
height:
|
|
1371
|
+
top: 8px;
|
|
1372
|
+
right: 8px;
|
|
1373
|
+
width: 22px;
|
|
1374
|
+
height: 22px;
|
|
1341
1375
|
border-radius: 50%;
|
|
1342
1376
|
background: var(--tecof-primary-500, #3b82f6);
|
|
1377
|
+
border: 2px solid #ffffff;
|
|
1343
1378
|
display: flex;
|
|
1344
1379
|
align-items: center;
|
|
1345
1380
|
justify-content: center;
|
|
1346
1381
|
color: #ffffff;
|
|
1347
|
-
z-index:
|
|
1348
|
-
box-shadow: 0
|
|
1382
|
+
z-index: 2;
|
|
1383
|
+
box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
|
|
1384
|
+
animation: tecof-pop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
@keyframes tecof-pop {
|
|
1388
|
+
0% { transform: scale(0.6); opacity: 0; }
|
|
1389
|
+
100% { transform: scale(1); opacity: 1; }
|
|
1349
1390
|
}
|
|
1350
1391
|
|
|
1351
1392
|
.tecof-upload-gallery-thumb {
|
|
1352
1393
|
width: 100%;
|
|
1353
1394
|
aspect-ratio: 1;
|
|
1354
|
-
border-radius:
|
|
1355
|
-
margin-bottom:
|
|
1395
|
+
border-radius: 8px;
|
|
1396
|
+
margin-bottom: 8px;
|
|
1356
1397
|
overflow: hidden;
|
|
1398
|
+
position: relative;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.tecof-upload-gallery-file-icon-wrap {
|
|
1402
|
+
background: #f4f4f5;
|
|
1403
|
+
display: flex;
|
|
1404
|
+
align-items: center;
|
|
1405
|
+
justify-content: center;
|
|
1406
|
+
transition: background-color 0.2s ease;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
.tecof-upload-gallery-item:hover .tecof-upload-gallery-file-icon-wrap {
|
|
1410
|
+
background: #e4e4e7;
|
|
1357
1411
|
}
|
|
1358
1412
|
|
|
1359
1413
|
.tecof-upload-gallery-thumb .tecof-picture-wrapper {
|
|
@@ -1366,13 +1420,19 @@
|
|
|
1366
1420
|
height: 100%;
|
|
1367
1421
|
object-fit: cover;
|
|
1368
1422
|
display: block;
|
|
1423
|
+
transition: transform 0.3s ease;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
.tecof-upload-gallery-item:hover .tecof-upload-gallery-thumb .tecof-picture-wrapper img {
|
|
1427
|
+
transform: scale(1.05);
|
|
1369
1428
|
}
|
|
1370
1429
|
|
|
1371
1430
|
.tecof-upload-gallery-file-name {
|
|
1372
1431
|
font-size: 11px;
|
|
1373
1432
|
font-weight: 500;
|
|
1374
|
-
color: #
|
|
1433
|
+
color: #27272a;
|
|
1375
1434
|
width: 100%;
|
|
1435
|
+
padding: 0 4px;
|
|
1376
1436
|
text-align: center;
|
|
1377
1437
|
white-space: nowrap;
|
|
1378
1438
|
overflow: hidden;
|
|
@@ -1386,20 +1446,21 @@
|
|
|
1386
1446
|
flex-direction: column;
|
|
1387
1447
|
align-items: center;
|
|
1388
1448
|
justify-content: center;
|
|
1389
|
-
padding:
|
|
1390
|
-
color: #
|
|
1449
|
+
padding: 64px 24px;
|
|
1450
|
+
color: #71717a;
|
|
1391
1451
|
text-align: center;
|
|
1392
1452
|
}
|
|
1393
1453
|
|
|
1394
1454
|
.tecof-upload-gallery-empty-icon {
|
|
1395
|
-
width:
|
|
1396
|
-
height:
|
|
1397
|
-
border-radius:
|
|
1455
|
+
width: 64px;
|
|
1456
|
+
height: 64px;
|
|
1457
|
+
border-radius: 18px;
|
|
1398
1458
|
background: #f4f4f5;
|
|
1399
1459
|
display: flex;
|
|
1400
1460
|
align-items: center;
|
|
1401
1461
|
justify-content: center;
|
|
1402
1462
|
margin-bottom: 16px;
|
|
1463
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
|
|
1403
1464
|
}
|
|
1404
1465
|
|
|
1405
1466
|
.tecof-upload-uploaded-header {
|
|
@@ -1643,6 +1704,76 @@
|
|
|
1643
1704
|
margin-bottom: 0 !important;
|
|
1644
1705
|
}
|
|
1645
1706
|
|
|
1707
|
+
/* ─── Puck Drawer Component Search ─── */
|
|
1708
|
+
.tecof-drawer-search-wrapper {
|
|
1709
|
+
padding: 10px 12px;
|
|
1710
|
+
background: #ffffff;
|
|
1711
|
+
border-bottom: 1px solid #e4e4e7;
|
|
1712
|
+
position: sticky;
|
|
1713
|
+
top: 0;
|
|
1714
|
+
z-index: 10;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
.tecof-drawer-search-box {
|
|
1718
|
+
display: flex;
|
|
1719
|
+
align-items: center;
|
|
1720
|
+
gap: 8px;
|
|
1721
|
+
padding: 8px 12px;
|
|
1722
|
+
background: #f4f4f5;
|
|
1723
|
+
border-radius: 8px;
|
|
1724
|
+
border: 1px solid #e4e4e7;
|
|
1725
|
+
transition: all 0.2s ease;
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.tecof-drawer-search-box:focus-within {
|
|
1729
|
+
background: #ffffff;
|
|
1730
|
+
border-color: var(--tecof-primary-500, #3b82f6);
|
|
1731
|
+
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.tecof-drawer-search-input {
|
|
1735
|
+
flex: 1;
|
|
1736
|
+
border: none;
|
|
1737
|
+
background: transparent;
|
|
1738
|
+
outline: none;
|
|
1739
|
+
font-size: 13px;
|
|
1740
|
+
color: #09090b;
|
|
1741
|
+
font-family: 'Inter', system-ui, sans-serif;
|
|
1742
|
+
font-weight: 500;
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
.tecof-drawer-search-input::placeholder {
|
|
1746
|
+
color: #71717a;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
.tecof-drawer-clear-btn {
|
|
1750
|
+
background: transparent;
|
|
1751
|
+
border: none;
|
|
1752
|
+
cursor: pointer;
|
|
1753
|
+
padding: 0;
|
|
1754
|
+
display: flex;
|
|
1755
|
+
align-items: center;
|
|
1756
|
+
justify-content: center;
|
|
1757
|
+
color: #71717a;
|
|
1758
|
+
transition: color 0.15s ease;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
.tecof-drawer-clear-btn:hover {
|
|
1762
|
+
color: #18181b;
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
.tecof-drawer-wrapper-layout {
|
|
1766
|
+
display: flex;
|
|
1767
|
+
flex-direction: column;
|
|
1768
|
+
height: 100%;
|
|
1769
|
+
overflow: hidden;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.tecof-drawer-list-layout {
|
|
1773
|
+
flex: 1;
|
|
1774
|
+
overflow-y: auto;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1646
1777
|
/* ─── Puck Drawer (Sidebar Component Preview) Settings ─── */
|
|
1647
1778
|
.tecof-drawer-item-group {
|
|
1648
1779
|
position: relative;
|
|
@@ -2035,46 +2166,59 @@
|
|
|
2035
2166
|
|
|
2036
2167
|
/* ─── CmsCollectionField ─── */
|
|
2037
2168
|
|
|
2169
|
+
/* ─── CmsCollectionField ─── */
|
|
2170
|
+
|
|
2038
2171
|
.tecof-cms-col-container {
|
|
2039
2172
|
width: 100%;
|
|
2040
2173
|
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
|
2041
2174
|
display: flex;
|
|
2042
2175
|
flex-direction: column;
|
|
2043
|
-
gap:
|
|
2176
|
+
gap: 10px;
|
|
2044
2177
|
}
|
|
2045
2178
|
|
|
2046
2179
|
.tecof-cms-col-loading {
|
|
2047
2180
|
display: flex;
|
|
2048
2181
|
align-items: center;
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2182
|
+
justify-content: center;
|
|
2183
|
+
gap: 10px;
|
|
2184
|
+
padding: 12px 14px;
|
|
2185
|
+
font-size: 13px;
|
|
2186
|
+
color: #71717a;
|
|
2187
|
+
background: #f4f4f5;
|
|
2188
|
+
border-radius: 10px;
|
|
2053
2189
|
}
|
|
2054
2190
|
|
|
2055
2191
|
.tecof-cms-col-error {
|
|
2056
2192
|
display: flex;
|
|
2057
2193
|
align-items: center;
|
|
2058
|
-
gap:
|
|
2059
|
-
padding:
|
|
2060
|
-
font-size:
|
|
2194
|
+
gap: 10px;
|
|
2195
|
+
padding: 12px 14px;
|
|
2196
|
+
font-size: 13px;
|
|
2061
2197
|
color: #ef4444;
|
|
2062
2198
|
background: #fef2f2;
|
|
2063
|
-
border
|
|
2199
|
+
border: 1px solid #fee2e2;
|
|
2200
|
+
border-radius: 10px;
|
|
2064
2201
|
}
|
|
2065
2202
|
|
|
2066
2203
|
.tecof-cms-col-retry {
|
|
2067
2204
|
display: inline-flex;
|
|
2068
2205
|
align-items: center;
|
|
2069
|
-
gap:
|
|
2070
|
-
padding:
|
|
2206
|
+
gap: 6px;
|
|
2207
|
+
padding: 6px 12px;
|
|
2071
2208
|
font-size: 11px;
|
|
2072
|
-
|
|
2209
|
+
font-weight: 500;
|
|
2210
|
+
background: #ffffff;
|
|
2073
2211
|
border: 1px solid #fca5a5;
|
|
2074
|
-
border-radius:
|
|
2212
|
+
border-radius: 6px;
|
|
2075
2213
|
cursor: pointer;
|
|
2076
2214
|
color: #ef4444;
|
|
2077
2215
|
margin-left: auto;
|
|
2216
|
+
transition: all 0.2s;
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
.tecof-cms-col-retry:hover {
|
|
2220
|
+
background: #fef2f2;
|
|
2221
|
+
transform: scale(1.02);
|
|
2078
2222
|
}
|
|
2079
2223
|
|
|
2080
2224
|
/* ── Selector Trigger ── */
|
|
@@ -2088,35 +2232,43 @@
|
|
|
2088
2232
|
align-items: center;
|
|
2089
2233
|
justify-content: space-between;
|
|
2090
2234
|
width: 100%;
|
|
2091
|
-
padding:
|
|
2092
|
-
background: #
|
|
2093
|
-
border: 1px solid
|
|
2094
|
-
border-radius:
|
|
2235
|
+
padding: 10px 14px;
|
|
2236
|
+
background: #ffffff;
|
|
2237
|
+
border: 1px solid rgba(228, 228, 231, 0.8);
|
|
2238
|
+
border-radius: 10px;
|
|
2095
2239
|
cursor: pointer;
|
|
2096
|
-
transition: all 0.
|
|
2240
|
+
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2097
2241
|
font-size: 13px;
|
|
2098
|
-
color: #
|
|
2242
|
+
color: #18181b;
|
|
2243
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
|
|
2099
2244
|
}
|
|
2100
2245
|
|
|
2101
2246
|
.tecof-cms-col-trigger:hover {
|
|
2102
2247
|
border-color: #d4d4d8;
|
|
2248
|
+
background: #fafafa;
|
|
2103
2249
|
}
|
|
2104
2250
|
|
|
2105
2251
|
.tecof-cms-col-trigger.open {
|
|
2106
2252
|
border-color: var(--tecof-primary-500, #3b82f6);
|
|
2107
|
-
box-shadow: 0 0 0
|
|
2253
|
+
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
|
|
2254
|
+
background: #ffffff;
|
|
2108
2255
|
}
|
|
2109
2256
|
|
|
2110
2257
|
.tecof-cms-col-trigger-left {
|
|
2111
2258
|
display: flex;
|
|
2112
2259
|
align-items: center;
|
|
2113
|
-
gap:
|
|
2260
|
+
gap: 10px;
|
|
2114
2261
|
min-width: 0;
|
|
2115
2262
|
flex: 1;
|
|
2263
|
+
color: #52525b;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
.tecof-cms-col-trigger-left svg {
|
|
2116
2267
|
color: #71717a;
|
|
2117
2268
|
}
|
|
2118
2269
|
|
|
2119
2270
|
.tecof-cms-col-trigger-left span {
|
|
2271
|
+
font-weight: 500;
|
|
2120
2272
|
white-space: nowrap;
|
|
2121
2273
|
overflow: hidden;
|
|
2122
2274
|
text-overflow: ellipsis;
|
|
@@ -2125,7 +2277,7 @@
|
|
|
2125
2277
|
.tecof-cms-col-trigger-right {
|
|
2126
2278
|
display: flex;
|
|
2127
2279
|
align-items: center;
|
|
2128
|
-
gap:
|
|
2280
|
+
gap: 6px;
|
|
2129
2281
|
flex-shrink: 0;
|
|
2130
2282
|
}
|
|
2131
2283
|
|
|
@@ -2133,14 +2285,15 @@
|
|
|
2133
2285
|
display: inline-flex;
|
|
2134
2286
|
align-items: center;
|
|
2135
2287
|
justify-content: center;
|
|
2136
|
-
width:
|
|
2137
|
-
height:
|
|
2138
|
-
background:
|
|
2288
|
+
width: 22px;
|
|
2289
|
+
height: 22px;
|
|
2290
|
+
background: transparent;
|
|
2139
2291
|
border: none;
|
|
2140
|
-
border-radius:
|
|
2292
|
+
border-radius: 6px;
|
|
2141
2293
|
cursor: pointer;
|
|
2142
|
-
color: #
|
|
2294
|
+
color: #71717a;
|
|
2143
2295
|
padding: 0;
|
|
2296
|
+
transition: all 0.2s;
|
|
2144
2297
|
}
|
|
2145
2298
|
|
|
2146
2299
|
.tecof-cms-col-clear:hover {
|
|
@@ -2149,8 +2302,8 @@
|
|
|
2149
2302
|
}
|
|
2150
2303
|
|
|
2151
2304
|
.tecof-cms-col-chevron {
|
|
2152
|
-
color: #
|
|
2153
|
-
transition: transform 0.2s
|
|
2305
|
+
color: #71717a;
|
|
2306
|
+
transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2154
2307
|
}
|
|
2155
2308
|
|
|
2156
2309
|
.tecof-cms-col-chevron.rotated {
|
|
@@ -2161,65 +2314,89 @@
|
|
|
2161
2314
|
|
|
2162
2315
|
.tecof-cms-col-dropdown {
|
|
2163
2316
|
position: absolute;
|
|
2164
|
-
top: calc(100% +
|
|
2317
|
+
top: calc(100% + 6px);
|
|
2165
2318
|
left: 0;
|
|
2166
2319
|
right: 0;
|
|
2167
|
-
background: #
|
|
2168
|
-
border: 1px solid
|
|
2169
|
-
border-radius:
|
|
2170
|
-
box-shadow: 0
|
|
2320
|
+
background: #ffffff;
|
|
2321
|
+
border: 1px solid rgba(228, 228, 231, 0.9);
|
|
2322
|
+
border-radius: 12px;
|
|
2323
|
+
box-shadow: 0 10px 30px rgba(9, 9, 11, 0.08);
|
|
2171
2324
|
z-index: 100;
|
|
2172
2325
|
overflow: hidden;
|
|
2326
|
+
animation: tecof-pop 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
2173
2327
|
}
|
|
2174
2328
|
|
|
2175
2329
|
.tecof-cms-col-search {
|
|
2176
2330
|
display: flex;
|
|
2177
2331
|
align-items: center;
|
|
2178
|
-
gap:
|
|
2179
|
-
padding:
|
|
2332
|
+
gap: 8px;
|
|
2333
|
+
padding: 10px 14px;
|
|
2180
2334
|
border-bottom: 1px solid #f4f4f5;
|
|
2181
|
-
color: #
|
|
2335
|
+
color: #71717a;
|
|
2336
|
+
background: #fafafa;
|
|
2182
2337
|
}
|
|
2183
2338
|
|
|
2184
2339
|
.tecof-cms-col-search-input {
|
|
2185
2340
|
flex: 1;
|
|
2186
2341
|
border: none;
|
|
2187
2342
|
outline: none;
|
|
2188
|
-
font-size:
|
|
2343
|
+
font-size: 13px;
|
|
2189
2344
|
background: transparent;
|
|
2190
|
-
color: #
|
|
2345
|
+
color: #09090b;
|
|
2346
|
+
font-family: 'Inter', system-ui, sans-serif;
|
|
2347
|
+
font-weight: 500;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
.tecof-cms-col-search-input::placeholder {
|
|
2351
|
+
color: #a1a1aa;
|
|
2191
2352
|
}
|
|
2192
2353
|
|
|
2193
2354
|
.tecof-cms-col-options {
|
|
2194
|
-
max-height:
|
|
2355
|
+
max-height: 220px;
|
|
2195
2356
|
overflow-y: auto;
|
|
2196
|
-
padding:
|
|
2357
|
+
padding: 6px;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
/* Custom Scrollbar for Options */
|
|
2361
|
+
.tecof-cms-col-options::-webkit-scrollbar {
|
|
2362
|
+
width: 5px;
|
|
2363
|
+
}
|
|
2364
|
+
.tecof-cms-col-options::-webkit-scrollbar-track {
|
|
2365
|
+
background: transparent;
|
|
2366
|
+
}
|
|
2367
|
+
.tecof-cms-col-options::-webkit-scrollbar-thumb {
|
|
2368
|
+
background: #e4e4e7;
|
|
2369
|
+
border-radius: 9999px;
|
|
2370
|
+
}
|
|
2371
|
+
.tecof-cms-col-options::-webkit-scrollbar-thumb:hover {
|
|
2372
|
+
background: #d4d4d8;
|
|
2197
2373
|
}
|
|
2198
2374
|
|
|
2199
2375
|
.tecof-cms-col-empty {
|
|
2200
|
-
padding:
|
|
2376
|
+
padding: 24px;
|
|
2201
2377
|
text-align: center;
|
|
2202
|
-
font-size:
|
|
2203
|
-
color: #
|
|
2378
|
+
font-size: 13px;
|
|
2379
|
+
color: #71717a;
|
|
2204
2380
|
}
|
|
2205
2381
|
|
|
2206
2382
|
.tecof-cms-col-option {
|
|
2207
2383
|
display: flex;
|
|
2208
2384
|
align-items: center;
|
|
2209
|
-
gap:
|
|
2385
|
+
gap: 10px;
|
|
2210
2386
|
width: 100%;
|
|
2211
|
-
padding: 8px
|
|
2212
|
-
background:
|
|
2387
|
+
padding: 8px 12px;
|
|
2388
|
+
background: transparent;
|
|
2213
2389
|
border: none;
|
|
2214
|
-
border-radius:
|
|
2390
|
+
border-radius: 8px;
|
|
2215
2391
|
cursor: pointer;
|
|
2216
|
-
transition:
|
|
2392
|
+
transition: all 0.2s;
|
|
2217
2393
|
text-align: left;
|
|
2218
|
-
color: #
|
|
2394
|
+
color: #52525b;
|
|
2219
2395
|
}
|
|
2220
2396
|
|
|
2221
2397
|
.tecof-cms-col-option:hover {
|
|
2222
2398
|
background: #f4f4f5;
|
|
2399
|
+
color: #09090b;
|
|
2223
2400
|
}
|
|
2224
2401
|
|
|
2225
2402
|
.tecof-cms-col-option.selected {
|
|
@@ -2230,14 +2407,14 @@
|
|
|
2230
2407
|
.tecof-cms-col-option-info {
|
|
2231
2408
|
display: flex;
|
|
2232
2409
|
flex-direction: column;
|
|
2233
|
-
gap:
|
|
2410
|
+
gap: 2px;
|
|
2234
2411
|
min-width: 0;
|
|
2235
2412
|
}
|
|
2236
2413
|
|
|
2237
2414
|
.tecof-cms-col-option-name {
|
|
2238
2415
|
font-size: 13px;
|
|
2239
|
-
font-weight:
|
|
2240
|
-
color: #
|
|
2416
|
+
font-weight: 600;
|
|
2417
|
+
color: #27272a;
|
|
2241
2418
|
}
|
|
2242
2419
|
|
|
2243
2420
|
.tecof-cms-col-option.selected .tecof-cms-col-option-name {
|
|
@@ -2245,78 +2422,87 @@
|
|
|
2245
2422
|
}
|
|
2246
2423
|
|
|
2247
2424
|
.tecof-cms-col-option-slug {
|
|
2248
|
-
font-size:
|
|
2249
|
-
color: #
|
|
2425
|
+
font-size: 11px;
|
|
2426
|
+
color: #71717a;
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
.tecof-cms-col-option.selected .tecof-cms-col-option-slug {
|
|
2430
|
+
color: var(--tecof-primary-400, #60a5fa);
|
|
2250
2431
|
}
|
|
2251
2432
|
|
|
2252
2433
|
/* ── Settings ── */
|
|
2253
2434
|
|
|
2254
2435
|
.tecof-cms-col-settings {
|
|
2255
2436
|
display: flex;
|
|
2256
|
-
gap:
|
|
2437
|
+
gap: 12px;
|
|
2438
|
+
margin-top: 4px;
|
|
2257
2439
|
}
|
|
2258
2440
|
|
|
2259
2441
|
.tecof-cms-col-setting {
|
|
2260
2442
|
flex: 1;
|
|
2261
2443
|
display: flex;
|
|
2262
2444
|
flex-direction: column;
|
|
2263
|
-
gap:
|
|
2445
|
+
gap: 6px;
|
|
2264
2446
|
}
|
|
2265
2447
|
|
|
2266
2448
|
.tecof-cms-col-setting-label {
|
|
2267
2449
|
font-size: 10px;
|
|
2268
|
-
font-weight:
|
|
2269
|
-
color: #
|
|
2450
|
+
font-weight: 700;
|
|
2451
|
+
color: #71717a;
|
|
2270
2452
|
text-transform: uppercase;
|
|
2271
|
-
letter-spacing: 0.
|
|
2453
|
+
letter-spacing: 0.05em;
|
|
2454
|
+
margin-left: 2px;
|
|
2272
2455
|
}
|
|
2273
2456
|
|
|
2274
2457
|
.tecof-cms-col-setting-input {
|
|
2275
|
-
padding:
|
|
2276
|
-
font-size:
|
|
2277
|
-
border: 1px solid
|
|
2278
|
-
border-radius:
|
|
2458
|
+
padding: 8px 12px;
|
|
2459
|
+
font-size: 13px;
|
|
2460
|
+
border: 1px solid rgba(228, 228, 231, 0.8);
|
|
2461
|
+
border-radius: 8px;
|
|
2279
2462
|
outline: none;
|
|
2280
2463
|
width: 100%;
|
|
2281
|
-
transition:
|
|
2464
|
+
transition: all 0.2s ease;
|
|
2465
|
+
color: #09090b;
|
|
2466
|
+
font-weight: 500;
|
|
2282
2467
|
}
|
|
2283
2468
|
|
|
2284
2469
|
.tecof-cms-col-setting-input:focus {
|
|
2285
2470
|
border-color: var(--tecof-primary-500, #3b82f6);
|
|
2471
|
+
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
|
|
2286
2472
|
}
|
|
2287
2473
|
|
|
2288
2474
|
.tecof-cms-col-sort-btns {
|
|
2289
2475
|
display: flex;
|
|
2290
|
-
gap:
|
|
2291
|
-
|
|
2292
|
-
border
|
|
2293
|
-
|
|
2476
|
+
gap: 2px;
|
|
2477
|
+
background: #f4f4f5;
|
|
2478
|
+
border: none;
|
|
2479
|
+
padding: 3px;
|
|
2480
|
+
border-radius: 10px;
|
|
2294
2481
|
}
|
|
2295
2482
|
|
|
2296
2483
|
.tecof-cms-col-sort-btn {
|
|
2297
2484
|
flex: 1;
|
|
2298
|
-
padding:
|
|
2485
|
+
padding: 6px 8px;
|
|
2299
2486
|
font-size: 11px;
|
|
2300
2487
|
font-weight: 500;
|
|
2301
|
-
background:
|
|
2488
|
+
background: transparent;
|
|
2302
2489
|
border: none;
|
|
2490
|
+
border-radius: 8px;
|
|
2303
2491
|
cursor: pointer;
|
|
2304
2492
|
color: #71717a;
|
|
2305
|
-
transition: all 0.
|
|
2306
|
-
}
|
|
2307
|
-
|
|
2308
|
-
.tecof-cms-col-sort-btn:first-child {
|
|
2309
|
-
border-right: 1px solid #e4e4e7;
|
|
2493
|
+
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2310
2494
|
}
|
|
2311
2495
|
|
|
2312
2496
|
.tecof-cms-col-sort-btn.active {
|
|
2313
|
-
background:
|
|
2497
|
+
background: #ffffff;
|
|
2314
2498
|
color: var(--tecof-primary-600, #2563eb);
|
|
2499
|
+
box-shadow: 0 2px 6px rgba(9, 9, 11, 0.06);
|
|
2315
2500
|
font-weight: 600;
|
|
2316
2501
|
}
|
|
2317
2502
|
|
|
2318
2503
|
.tecof-cms-col-sort-btn:hover:not(.active) {
|
|
2319
|
-
|
|
2504
|
+
color: #09090b;
|
|
2505
|
+
background: rgba(0, 0, 0, 0.03);
|
|
2320
2506
|
}
|
|
2321
2507
|
|
|
2322
2508
|
/* ── Badge ── */
|
|
@@ -2325,41 +2511,53 @@
|
|
|
2325
2511
|
display: inline-flex;
|
|
2326
2512
|
align-items: center;
|
|
2327
2513
|
gap: 6px;
|
|
2328
|
-
padding:
|
|
2514
|
+
padding: 6px 12px;
|
|
2329
2515
|
font-size: 11px;
|
|
2330
|
-
font-weight:
|
|
2516
|
+
font-weight: 600;
|
|
2331
2517
|
color: var(--tecof-primary-600, #2563eb);
|
|
2332
2518
|
background: var(--tecof-primary-50, #eff6ff);
|
|
2333
|
-
border-radius:
|
|
2519
|
+
border-radius: 8px;
|
|
2334
2520
|
align-self: flex-start;
|
|
2521
|
+
box-shadow: 0 1px 2px rgba(59, 130, 246, 0.04);
|
|
2522
|
+
}
|
|
2523
|
+
|
|
2524
|
+
.tecof-cms-col-badge svg {
|
|
2525
|
+
color: var(--tecof-primary-500, #3b82f6);
|
|
2335
2526
|
}
|
|
2336
2527
|
|
|
2337
2528
|
.tecof-cms-col-badge-count {
|
|
2338
2529
|
font-size: 10px;
|
|
2339
|
-
color: #
|
|
2340
|
-
font-weight:
|
|
2530
|
+
color: var(--tecof-primary-400, #60a5fa);
|
|
2531
|
+
font-weight: 500;
|
|
2532
|
+
margin-left: 2px;
|
|
2341
2533
|
}
|
|
2342
2534
|
|
|
2343
2535
|
/* ── Field Mapping ── */
|
|
2344
2536
|
|
|
2345
2537
|
.tecof-cms-col-mapping {
|
|
2346
|
-
border: 1px solid
|
|
2347
|
-
border-radius:
|
|
2538
|
+
border: 1px solid rgba(228, 228, 231, 0.8);
|
|
2539
|
+
border-radius: 12px;
|
|
2348
2540
|
overflow: hidden;
|
|
2541
|
+
background: #ffffff;
|
|
2542
|
+
margin-top: 4px;
|
|
2349
2543
|
}
|
|
2350
2544
|
|
|
2351
2545
|
.tecof-cms-col-mapping-header {
|
|
2352
2546
|
display: flex;
|
|
2353
2547
|
align-items: center;
|
|
2354
|
-
gap:
|
|
2355
|
-
padding:
|
|
2548
|
+
gap: 8px;
|
|
2549
|
+
padding: 10px 14px;
|
|
2356
2550
|
font-size: 10px;
|
|
2357
|
-
font-weight:
|
|
2358
|
-
color: #
|
|
2551
|
+
font-weight: 700;
|
|
2552
|
+
color: #52525b;
|
|
2359
2553
|
background: #fafafa;
|
|
2360
2554
|
border-bottom: 1px solid #f4f4f5;
|
|
2361
2555
|
text-transform: uppercase;
|
|
2362
|
-
letter-spacing: 0.
|
|
2556
|
+
letter-spacing: 0.05em;
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
.tecof-cms-col-mapping-header svg {
|
|
2560
|
+
color: #71717a;
|
|
2363
2561
|
}
|
|
2364
2562
|
|
|
2365
2563
|
.tecof-cms-col-mapping-rows {
|
|
@@ -2371,8 +2569,8 @@
|
|
|
2371
2569
|
.tecof-cms-col-mapping-row {
|
|
2372
2570
|
display: flex;
|
|
2373
2571
|
align-items: center;
|
|
2374
|
-
gap:
|
|
2375
|
-
padding:
|
|
2572
|
+
gap: 12px;
|
|
2573
|
+
padding: 10px 14px;
|
|
2376
2574
|
border-bottom: 1px solid #f4f4f5;
|
|
2377
2575
|
}
|
|
2378
2576
|
|
|
@@ -2382,28 +2580,30 @@
|
|
|
2382
2580
|
|
|
2383
2581
|
.tecof-cms-col-mapping-label {
|
|
2384
2582
|
flex-shrink: 0;
|
|
2385
|
-
width:
|
|
2386
|
-
font-size:
|
|
2387
|
-
font-weight:
|
|
2388
|
-
color: #
|
|
2583
|
+
width: 90px;
|
|
2584
|
+
font-size: 13px;
|
|
2585
|
+
font-weight: 600;
|
|
2586
|
+
color: #27272a;
|
|
2389
2587
|
}
|
|
2390
2588
|
|
|
2391
2589
|
.tecof-cms-col-mapping-select {
|
|
2392
2590
|
flex: 1;
|
|
2393
|
-
padding:
|
|
2394
|
-
font-size:
|
|
2395
|
-
border: 1px solid
|
|
2396
|
-
border-radius:
|
|
2397
|
-
background: #
|
|
2398
|
-
color: #
|
|
2591
|
+
padding: 6px 10px;
|
|
2592
|
+
font-size: 13px;
|
|
2593
|
+
border: 1px solid rgba(228, 228, 231, 0.8);
|
|
2594
|
+
border-radius: 8px;
|
|
2595
|
+
background: #ffffff;
|
|
2596
|
+
color: #18181b;
|
|
2399
2597
|
outline: none;
|
|
2400
2598
|
cursor: pointer;
|
|
2401
|
-
transition:
|
|
2599
|
+
transition: all 0.2s;
|
|
2402
2600
|
appearance: auto;
|
|
2601
|
+
font-weight: 500;
|
|
2403
2602
|
}
|
|
2404
2603
|
|
|
2405
2604
|
.tecof-cms-col-mapping-select:focus {
|
|
2406
2605
|
border-color: var(--tecof-primary-500, #3b82f6);
|
|
2606
|
+
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
|
|
2407
2607
|
}
|
|
2408
2608
|
|
|
2409
2609
|
.tecof-cms-col-mapping-select:disabled {
|