@tecof/theme-editor 0.0.26 → 0.0.27
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 +29 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +30 -7
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +4 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
display: flex;
|
|
105
105
|
align-items: center;
|
|
106
106
|
gap: 8px;
|
|
107
|
+
min-width: 0;
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
.tecof-color-swatch {
|
|
@@ -136,6 +137,7 @@
|
|
|
136
137
|
|
|
137
138
|
.tecof-color-hex-input {
|
|
138
139
|
flex: 1;
|
|
140
|
+
min-width: 0;
|
|
139
141
|
padding: 8px 12px;
|
|
140
142
|
font-size: 14px;
|
|
141
143
|
line-height: 1.5;
|
|
@@ -148,6 +150,8 @@
|
|
|
148
150
|
letter-spacing: 0.5px;
|
|
149
151
|
box-sizing: border-box;
|
|
150
152
|
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
|
153
|
+
overflow: hidden;
|
|
154
|
+
text-overflow: ellipsis;
|
|
151
155
|
}
|
|
152
156
|
|
|
153
157
|
.tecof-color-hex-input:focus {
|