@appscode/design-system 2.0.19-alpha.3 → 2.0.19-alpha.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/package.json
CHANGED
|
@@ -83,6 +83,13 @@
|
|
|
83
83
|
overflow: hidden;
|
|
84
84
|
font-weight: 500;
|
|
85
85
|
transition: 0.3s ease-in-out;
|
|
86
|
+
text-overflow: ellipsis;
|
|
87
|
+
display: -webkit-box;
|
|
88
|
+
line-clamp: 1;
|
|
89
|
+
-webkit-line-clamp: 1;
|
|
90
|
+
box-orient: vertical;
|
|
91
|
+
-webkit-box-orient: vertical;
|
|
92
|
+
transition: 0.3s ease-in-out;
|
|
86
93
|
}
|
|
87
94
|
|
|
88
95
|
&.ac-dropdown-button {
|
|
@@ -178,9 +185,23 @@
|
|
|
178
185
|
span {
|
|
179
186
|
margin: 0;
|
|
180
187
|
}
|
|
188
|
+
.ac-arrow-down {
|
|
189
|
+
display: none;
|
|
190
|
+
// change
|
|
191
|
+
}
|
|
181
192
|
strong {
|
|
182
193
|
opacity: 0;
|
|
183
194
|
visibility: hidden;
|
|
195
|
+
display: none;
|
|
196
|
+
overflow: hidden;
|
|
197
|
+
text-overflow: ellipsis;
|
|
198
|
+
display: -webkit-box;
|
|
199
|
+
line-clamp: 1;
|
|
200
|
+
-webkit-line-clamp: 1;
|
|
201
|
+
box-orient: vertical;
|
|
202
|
+
-webkit-box-orient: vertical;
|
|
203
|
+
transition: 0.3s ease-in-out;
|
|
204
|
+
// change
|
|
184
205
|
}
|
|
185
206
|
}
|
|
186
207
|
ul {
|