@appscode/design-system 2.0.19-alpha.9 → 2.0.19
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 +1 -1
- package/vue-components/styles/base/utilities/_global.scss +23 -0
- package/vue-components/styles/components/cards/_cluster.scss +3 -3
- package/vue-components/styles/components/select-box/_multi-select.scss +4 -3
- package/vue-components/v3/cards/FeatureCard.vue +1 -1
- package/vue-components/v3/editor/FilteredFileEditor.vue +1 -1
package/package.json
CHANGED
|
@@ -24,6 +24,29 @@ $positions: (
|
|
|
24
24
|
border: 1px solid $primary-90;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
.is-rounded-0 {
|
|
28
|
+
border-radius: 0;
|
|
29
|
+
}
|
|
30
|
+
.is-rounded-2 {
|
|
31
|
+
border-radius: 2px;
|
|
32
|
+
}
|
|
33
|
+
.is-rounded-4 {
|
|
34
|
+
border-radius: 4px;
|
|
35
|
+
}
|
|
36
|
+
.is-rounded-8 {
|
|
37
|
+
border-radius: 8px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.is-rounded-12 {
|
|
41
|
+
border-radius: 12px;
|
|
42
|
+
}
|
|
43
|
+
.is-rounded-16 {
|
|
44
|
+
border-radius: 16px;
|
|
45
|
+
}
|
|
46
|
+
.is-rounded-50 {
|
|
47
|
+
border-radius: 50px;
|
|
48
|
+
}
|
|
49
|
+
|
|
27
50
|
.is-fullwidth {
|
|
28
51
|
width: 100%;
|
|
29
52
|
}
|
|
@@ -255,12 +255,12 @@
|
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
.multiselect--active {
|
|
258
|
-
height:
|
|
258
|
+
height: 32px !important;
|
|
259
259
|
z-index: 50;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
.multiselect .multiselect__tags {
|
|
263
|
-
min-height:
|
|
263
|
+
min-height: 32px !important;
|
|
264
264
|
padding: 4px 30px 4px 20px;
|
|
265
265
|
font-size: 13px;
|
|
266
266
|
|
|
@@ -295,7 +295,8 @@
|
|
|
295
295
|
&.is-extra-small {
|
|
296
296
|
label {
|
|
297
297
|
font-size: 13px;
|
|
298
|
-
top:
|
|
298
|
+
top: 6px;
|
|
299
|
+
font-weight: 500;
|
|
299
300
|
|
|
300
301
|
&.show-label {
|
|
301
302
|
font-size: 12px;
|