@appscode/design-system 1.0.43-alpha.193 → 1.0.43-alpha.195
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/base/utilities/_default.scss +41 -40
- package/components/_ac-modal.scss +1 -1
- package/components/_buttons.scss +1 -1
- package/components/_navbar.scss +2 -1
- package/components/_preview-modal.scss +3 -1
- package/package.json +1 -1
- package/vue-components/v2/editor/FilteredFileEditor.vue +1 -1
- package/vue-components/v3/editor/FilteredFileEditor.vue +1 -1
- package/vue-components/v3/navbar/User.vue +1 -1
|
@@ -143,11 +143,13 @@
|
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
145
|
}
|
|
146
|
+
|
|
146
147
|
.ac-system-body {
|
|
147
148
|
&.is-preview-step {
|
|
148
149
|
grid-template-columns: calc(100% - 270px) 270px !important;
|
|
149
150
|
}
|
|
150
151
|
}
|
|
152
|
+
|
|
151
153
|
.form-content {
|
|
152
154
|
width: 720px;
|
|
153
155
|
}
|
|
@@ -168,18 +170,22 @@ input[type="color"] {
|
|
|
168
170
|
padding: 2px;
|
|
169
171
|
cursor: pointer;
|
|
170
172
|
}
|
|
173
|
+
|
|
171
174
|
input[type="color"]::-webkit-color-swatch-wrapper {
|
|
172
175
|
padding: 0;
|
|
173
176
|
}
|
|
177
|
+
|
|
174
178
|
// input[type="color"]::-moz-color-swatch,
|
|
175
179
|
input[type="color"]::-webkit-color-swatch {
|
|
176
180
|
border: none;
|
|
177
181
|
border-radius: 50%;
|
|
178
182
|
}
|
|
183
|
+
|
|
179
184
|
input[type="color"]::-moz-color-swatch {
|
|
180
185
|
border: none;
|
|
181
186
|
border-radius: 50%;
|
|
182
187
|
}
|
|
188
|
+
|
|
183
189
|
// color swatch end
|
|
184
190
|
|
|
185
191
|
.is-dark-theme {
|
|
@@ -226,45 +232,47 @@ input[type="color"]::-moz-color-swatch {
|
|
|
226
232
|
position: inherit !important;
|
|
227
233
|
}
|
|
228
234
|
|
|
229
|
-
.b-1 {
|
|
230
|
-
border: 1px solid $ac-white-light;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.b-t-1 {
|
|
234
|
-
border-top: 1px solid $ac-white-light;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.b-b-1 {
|
|
238
|
-
border-bottom: 1px solid $ac-white-light;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.b-l-1 {
|
|
242
|
-
border-left: 1px solid $ac-white-light;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.b-r-1 {
|
|
246
|
-
border-right: 1px solid $ac-white-light;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
235
|
// border none
|
|
250
236
|
.is-border-none {
|
|
251
237
|
border: none !important;
|
|
252
238
|
}
|
|
253
239
|
|
|
254
|
-
.b-
|
|
255
|
-
border
|
|
240
|
+
.b-1 {
|
|
241
|
+
border: 1px solid $ac-white-light;
|
|
256
242
|
}
|
|
257
243
|
|
|
258
|
-
|
|
259
|
-
|
|
244
|
+
// border left, right, top, bottom none
|
|
245
|
+
$positions: (
|
|
246
|
+
"b": "bottom",
|
|
247
|
+
"t": "top",
|
|
248
|
+
"l": "left",
|
|
249
|
+
"r": "right",
|
|
250
|
+
);
|
|
251
|
+
|
|
252
|
+
@each $key, $position in $positions {
|
|
253
|
+
.b-#{$key}-n {
|
|
254
|
+
border-#{$position}: none !important;
|
|
255
|
+
}
|
|
260
256
|
}
|
|
261
257
|
|
|
262
|
-
|
|
263
|
-
|
|
258
|
+
// border 1px
|
|
259
|
+
@each $key, $position in $positions {
|
|
260
|
+
.b-#{$key}-1 {
|
|
261
|
+
border-#{$position}: 1px solid $ac-white-light;
|
|
262
|
+
}
|
|
264
263
|
}
|
|
265
264
|
|
|
266
|
-
|
|
267
|
-
|
|
265
|
+
// for ellipsis
|
|
266
|
+
@for $i from 0 through 10 {
|
|
267
|
+
.is-ellipsis-#{$i} {
|
|
268
|
+
overflow: hidden;
|
|
269
|
+
text-overflow: ellipsis;
|
|
270
|
+
display: -webkit-box;
|
|
271
|
+
line-clamp: #{$i};
|
|
272
|
+
-webkit-line-clamp: #{$i};
|
|
273
|
+
box-orient: vertical;
|
|
274
|
+
-webkit-box-orient: vertical;
|
|
275
|
+
}
|
|
268
276
|
}
|
|
269
277
|
|
|
270
278
|
.is-disabled {
|
|
@@ -280,28 +288,18 @@ input[type="color"]::-moz-color-swatch {
|
|
|
280
288
|
}
|
|
281
289
|
}
|
|
282
290
|
|
|
283
|
-
// for ellipsis
|
|
284
|
-
@for $i from 0 through 10 {
|
|
285
|
-
.is-ellipsis-#{$i} {
|
|
286
|
-
overflow: hidden;
|
|
287
|
-
text-overflow: ellipsis;
|
|
288
|
-
display: -webkit-box;
|
|
289
|
-
line-clamp: #{$i};
|
|
290
|
-
-webkit-line-clamp: #{$i};
|
|
291
|
-
box-orient: vertical;
|
|
292
|
-
-webkit-box-orient: vertical;
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
291
|
// toast css third-party
|
|
296
292
|
|
|
297
293
|
.toasted-container {
|
|
298
294
|
.ac-toast-action.mr-10 {
|
|
299
295
|
text-decoration: underline !important;
|
|
300
296
|
}
|
|
297
|
+
|
|
301
298
|
.has-report-issue {
|
|
302
299
|
padding-right: 140px !important;
|
|
303
300
|
}
|
|
304
301
|
}
|
|
302
|
+
|
|
305
303
|
.is-dark-theme {
|
|
306
304
|
.toasted-container {
|
|
307
305
|
i.fa {
|
|
@@ -492,9 +490,11 @@ input[type="color"]::-moz-color-swatch {
|
|
|
492
490
|
color: $ac-red;
|
|
493
491
|
text-align: left;
|
|
494
492
|
}
|
|
493
|
+
|
|
495
494
|
p.is-error {
|
|
496
495
|
color: $ac-red;
|
|
497
496
|
}
|
|
497
|
+
|
|
498
498
|
code {
|
|
499
499
|
color: $ac-color-heading;
|
|
500
500
|
}
|
|
@@ -767,6 +767,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
767
767
|
}
|
|
768
768
|
}
|
|
769
769
|
}
|
|
770
|
+
|
|
770
771
|
// tooltip in vue-open-api
|
|
771
772
|
.tooltip {
|
|
772
773
|
display: block !important;
|
package/components/_buttons.scss
CHANGED
package/components/_navbar.scss
CHANGED
package/package.json
CHANGED
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
<a :href="`${serverDomain}/dashboard`"> Dashboard </a>
|
|
110
110
|
</li>
|
|
111
111
|
<li key="signout" @click="$emit('on-logout')">
|
|
112
|
-
<a :href="`${accountsDomain}/user/logout`"> Sign out </a>
|
|
112
|
+
<a data-testid="user-logout-link" :href="`${accountsDomain}/user/logout`"> Sign out </a>
|
|
113
113
|
</li>
|
|
114
114
|
<li key="theme" v-if="showThemeMode">
|
|
115
115
|
<theme-mode @set:theme="setTheme" />
|