@appscode/design-system 2.0.55-alpha.1 → 2.0.56
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 +6 -0
- package/vue-components/styles/components/_dropdown.scss +2 -2
- package/vue-components/styles/components/_table.scss +1 -1
- package/vue-components/styles/components/_terminal.scss +5 -2
- package/vue-components/styles/components/navbar/_menu-content.scss +4 -4
- package/vue-components/styles/components/navbar/_notification.scss +2 -2
- package/vue-components/styles/components/select-box/_multi-select.scss +6 -16
- package/vue-components/styles/components/ui-builder/_vue-open-api.scss +1 -1
- package/vue-components/v3/table/table-cell/ObjectCell.vue +1 -1
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
position: fixed;
|
|
7
7
|
width: calc(100% - 250px);
|
|
8
8
|
bottom: 0;
|
|
9
|
-
background-color:
|
|
9
|
+
background-color: rgb(28, 28, 28);
|
|
10
10
|
color: $white-100;
|
|
11
11
|
font-size: 13px;
|
|
12
12
|
height: 360px;
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
.terminal-setting {
|
|
212
|
-
background-color: $
|
|
212
|
+
background-color: $secondary-5;
|
|
213
213
|
padding: 5px 20px;
|
|
214
214
|
|
|
215
215
|
.left-content {
|
|
@@ -283,6 +283,9 @@
|
|
|
283
283
|
.multiselect .multiselect__tags {
|
|
284
284
|
background-color: $ac-secondary;
|
|
285
285
|
border: 1px solid $secondary-30;
|
|
286
|
+
&:hover {
|
|
287
|
+
border-color: $secondary-40;
|
|
288
|
+
}
|
|
286
289
|
|
|
287
290
|
span {
|
|
288
291
|
color: $white-100;
|
|
@@ -374,8 +374,8 @@
|
|
|
374
374
|
gap: 8px;
|
|
375
375
|
|
|
376
376
|
&:hover {
|
|
377
|
-
background-color: $primary-
|
|
378
|
-
color: $ac-
|
|
377
|
+
background-color: $primary-light-grey;
|
|
378
|
+
color: $ac-secondary;
|
|
379
379
|
}
|
|
380
380
|
}
|
|
381
381
|
}
|
|
@@ -433,14 +433,14 @@
|
|
|
433
433
|
font-size: 13px;
|
|
434
434
|
a {
|
|
435
435
|
display: block;
|
|
436
|
-
color: $
|
|
436
|
+
color: $color-heading !important;
|
|
437
437
|
padding: 10px 20px !important;
|
|
438
438
|
font-size: 13px !important;
|
|
439
439
|
transition: 0.2s;
|
|
440
440
|
border-bottom: 1px solid $color-border;
|
|
441
441
|
|
|
442
442
|
&:hover {
|
|
443
|
-
background-color: $primary-
|
|
443
|
+
background-color: $primary-light-grey !important;
|
|
444
444
|
}
|
|
445
445
|
|
|
446
446
|
span {
|
|
@@ -115,30 +115,20 @@
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
&:hover {
|
|
118
|
-
background-color:
|
|
119
|
-
|
|
120
|
-
var(--hsl-saturation),
|
|
121
|
-
var(--hsl-lightness),
|
|
122
|
-
0.2
|
|
123
|
-
);
|
|
124
|
-
color: $ac-primary;
|
|
118
|
+
background-color: $secondary-light-grey;
|
|
119
|
+
color: $ac-secondary;
|
|
125
120
|
}
|
|
126
121
|
|
|
127
122
|
&.multiselect__option--highlight {
|
|
128
123
|
background-color: $white-100;
|
|
129
|
-
color: $ac-
|
|
124
|
+
color: $ac-secondary;
|
|
130
125
|
&:hover {
|
|
131
|
-
background-color: $primary-
|
|
126
|
+
background-color: $primary-light-grey;
|
|
132
127
|
}
|
|
133
128
|
|
|
134
129
|
&:after {
|
|
135
|
-
background-color:
|
|
136
|
-
|
|
137
|
-
var(--hsl-saturation),
|
|
138
|
-
var(--hsl-lightness),
|
|
139
|
-
0.2
|
|
140
|
-
);
|
|
141
|
-
color: $ac-primary;
|
|
130
|
+
background-color: $secondary-light-grey;
|
|
131
|
+
color: $ac-secondary;
|
|
142
132
|
}
|
|
143
133
|
}
|
|
144
134
|
}
|
|
@@ -81,7 +81,7 @@ const indexOfCharacterLengthExceed = computed(() => {
|
|
|
81
81
|
</tag>
|
|
82
82
|
|
|
83
83
|
<tag
|
|
84
|
-
modifierClasses="is-
|
|
84
|
+
modifierClasses="is-secondary is-light"
|
|
85
85
|
v-if="indexOfCharacterLengthExceed !== printableStringObjs.length"
|
|
86
86
|
>
|
|
87
87
|
<a @click.prevent.stop="showFullData = true">
|