@appscode/design-system 1.1.0-beta.16 → 1.1.0-beta.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.
@@ -121,7 +121,7 @@
121
121
  transition: 0.3s ease-in-out;
122
122
  position: relative;
123
123
  z-index: 1;
124
- max-width: 250px;
124
+ width: 250px;
125
125
 
126
126
  &.is-active-require-field {
127
127
  &:after {
@@ -366,6 +366,7 @@
366
366
  width: 16px;
367
367
  height: 16px;
368
368
  top: 4px;
369
+ background: $primary;
369
370
  }
370
371
 
371
372
  &:after {
@@ -198,6 +198,7 @@
198
198
  }
199
199
 
200
200
  .is-collapsed {
201
+
201
202
  &.ac-nested-elements::before,
202
203
  &.ac-nested-elements::after {
203
204
  display: none;
@@ -206,9 +207,9 @@
206
207
 
207
208
  // details with checkradio
208
209
  .details-with-checkradio-wrapper {
209
- display: grid;
210
- grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
211
- grid-gap: 15px;
210
+ display: flex;
211
+ flex-wrap: wrap;
212
+ gap: 15px;
212
213
  }
213
214
 
214
215
  // dark theme start
@@ -248,21 +249,16 @@
248
249
  Responsive Classes
249
250
  *****************************************/
250
251
  // Extra small devices (portrait phones, less than 576px)
251
- @media (max-width: 575.98px) {
252
- }
252
+ @media (max-width: 575.98px) {}
253
253
 
254
254
  // Small devices (landscape phones, 576px and up)
255
- @media (min-width: 576px) and (max-width: 767.98px) {
256
- }
255
+ @media (min-width: 576px) and (max-width: 767.98px) {}
257
256
 
258
257
  // Medium devices (tablets, 768px and up)
259
- @media (min-width: 768px) and (max-width: 991.98px) {
260
- }
258
+ @media (min-width: 768px) and (max-width: 991.98px) {}
261
259
 
262
260
  // Large devices (desktops, 992px and up)
263
- @media (min-width: 992px) and (max-width: 1199.98px) {
264
- }
261
+ @media (min-width: 992px) and (max-width: 1199.98px) {}
265
262
 
266
263
  // Extra large devices (large desktops, 1200px and up)
267
- @media (min-width: 1200px) {
268
- }
264
+ @media (min-width: 1200px) {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.1.0-beta.16",
3
+ "version": "1.1.0-beta.19",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -34,7 +34,7 @@ withDefaults(defineProps<Props>(), {
34
34
  flex-direction: column;
35
35
  justify-content: space-between;
36
36
  background-color: $primary-97;
37
- min-width: 220px;
37
+ min-width: 215px;
38
38
  padding: 30px 20px 20px;
39
39
  cursor: pointer;
40
40
 
@@ -288,6 +288,10 @@ watch(
288
288
 
289
289
  .ac-files {
290
290
  ul {
291
+ margin: 0;
292
+ padding: 0;
293
+ list-style: none;
294
+
291
295
  li {
292
296
  &.is-active {
293
297
  a {
@@ -22,9 +22,6 @@ withDefaults(defineProps<Props>(), {
22
22
  <div class="form-wrapper">
23
23
  <div
24
24
  :class="{
25
- 'pt-20': !reducePaddingTop,
26
- 'pt-10': reducePaddingTop,
27
- 'pl-20': !isContainer,
28
25
  'form-content': !isContainer,
29
26
  container: isContainer,
30
27
  }"
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import { ref, computed, watch } from "vue";
2
+ import { computed, ref, watch } from "vue";
3
3
 
4
4
  interface Props {
5
5
  hideRowsPerPageSelection?: boolean;
@@ -224,6 +224,7 @@ watch(selectedItemCountPerPage, () => {
224
224
  &:active,
225
225
  &:focus-visible {
226
226
  border: 1px solid $primary;
227
+ outline: none;
227
228
  }
228
229
  }
229
230
  }
@@ -245,6 +245,9 @@ watch(
245
245
  &.multiselect__option--highlight {
246
246
  background-color: $white-100;
247
247
  color: $primary;
248
+ &:hover {
249
+ background-color: $primary-97;
250
+ }
248
251
 
249
252
  &:after {
250
253
  background-color: hsla(
@@ -351,7 +351,7 @@ onUpdated(() => {
351
351
  color: $ac-black;
352
352
  transition: 0.3s ease-in-out;
353
353
  .tag {
354
- background-color: $primary-90;
354
+ background-color: $primary-50;
355
355
  }
356
356
  &:hover {
357
357
  background-color: $primary-95 !important;