@appscode/design-system 1.1.0-beta.49 → 1.1.0-beta.50

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.
@@ -24,6 +24,13 @@ $positions: (
24
24
  border: 1px solid $primary-90;
25
25
  }
26
26
 
27
+ .is-fullwidth {
28
+ width: 100%;
29
+ }
30
+ .is-fullheight {
31
+ height: 100%;
32
+ }
33
+
27
34
  // for ellipsis
28
35
  @for $i from 0 through 10 {
29
36
  .is-ellipsis-#{$i} {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.1.0-beta.49",
3
+ "version": "1.1.0-beta.50",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -166,9 +166,8 @@ const OptionDots = defineAsyncComponent(
166
166
  .header {
167
167
  display: flex;
168
168
  align-items: center;
169
- padding: 8px 16px;
169
+ padding: 12px 16px;
170
170
  border-bottom: 1px dashed $primary-90;
171
- background-color: $primary-97;
172
171
 
173
172
  .logo {
174
173
  display: flex;
@@ -142,7 +142,7 @@ withDefaults(defineProps<Props>(), {
142
142
 
143
143
  &.show-label {
144
144
  font-size: 12px;
145
- color: $black-40;
145
+ color: $primary-20;
146
146
  top: -9px;
147
147
  font-weight: 500;
148
148
  background-color: $white-100;
@@ -394,12 +394,7 @@ withDefaults(defineProps<Props>(), {
394
394
  transition: 0.3s;
395
395
 
396
396
  &:hover {
397
- background-color: hsla(
398
- var(--hsl-hue),
399
- var(--hsl-saturation),
400
- var(--hsl-lightness),
401
- 0.2
402
- );
397
+ background-color: $primary-30;
403
398
  color: $primary;
404
399
  }
405
400
  }
@@ -494,7 +489,7 @@ withDefaults(defineProps<Props>(), {
494
489
 
495
490
  span.eye {
496
491
  i.fa {
497
- color: $primary-80;
492
+ color: $primary-70;
498
493
  position: absolute;
499
494
  cursor: pointer;
500
495
  padding: 15px;
@@ -1,65 +1,23 @@
1
- <script setup lang="ts">
1
+ <script>
2
2
  import { ContentLoader } from "vue-content-loader";
3
+
4
+ export default {
5
+ components: { ContentLoader },
6
+ };
3
7
  </script>
4
8
 
5
9
  <template>
6
- <div>
7
- <svg
8
- role="img"
9
- width="230"
10
- height="115"
11
- aria-labelledby="loading-aria"
12
- viewBox="0 0 230 115"
13
- preserveAspectRatio="none"
14
- >
15
- <title id="loading-aria">Loading...</title>
16
- <rect
17
- x="0"
18
- y="0"
19
- width="100%"
20
- height="100%"
21
- clip-path="url(#clip-path)"
22
- style="fill: url('#fill')"
23
- ></rect>
24
- <defs>
25
- <clipPath id="clip-path">
26
- <rect x="150" y="40" rx="3" ry="3" width="60" height="50" />
27
- <rect x="10" y="70" rx="3" ry="3" width="120" height="11" />
28
- <rect x="10" y="100" rx="3" ry="3" width="120" height="11" />
29
- <rect x="150" y="100" rx="3" ry="3" width="60" height="11" />
30
- <rect x="10" y="1" rx="3" ry="3" width="200" height="22" />
31
- <rect x="10" y="40" rx="3" ry="3" width="120" height="11" />
32
- </clipPath>
33
- <linearGradient id="fill">
34
- <stop offset="0.599964" stop-color="#cfcfcf" stop-opacity="1">
35
- <animate
36
- attributeName="offset"
37
- values="-2; -2; 1"
38
- keyTimes="0; 0.25; 1"
39
- dur="2s"
40
- repeatCount="indefinite"
41
- ></animate>
42
- </stop>
43
- <stop offset="1.59996" stop-color="#ecebeb" stop-opacity="1">
44
- <animate
45
- attributeName="offset"
46
- values="-1; -1; 2"
47
- keyTimes="0; 0.25; 1"
48
- dur="2s"
49
- repeatCount="indefinite"
50
- ></animate>
51
- </stop>
52
- <stop offset="2.59996" stop-color="#cfcfcf" stop-opacity="1">
53
- <animate
54
- attributeName="offset"
55
- values="0; 0; 3"
56
- keyTimes="0; 0.25; 1"
57
- dur="2s"
58
- repeatCount="indefinite"
59
- ></animate>
60
- </stop>
61
- </linearGradient>
62
- </defs>
63
- </svg>
64
- </div>
10
+ <content-loader
11
+ viewBox="0 0 230 115"
12
+ :speed="2"
13
+ primaryColor="#f5f5f5"
14
+ secondaryColor="#ecebeb"
15
+ >
16
+ <rect x="0" y="0" rx="0" ry="0" width="NaN" height="NaN" />
17
+ <rect x="10" y="70" rx="3" ry="3" width="120" height="11" />
18
+ <rect x="10" y="100" rx="3" ry="3" width="120" height="11" />
19
+ <rect x="150" y="100" rx="3" ry="3" width="60" height="11" />
20
+ <rect x="10" y="1" rx="3" ry="3" width="216" height="22" />
21
+ <rect x="10" y="40" rx="3" ry="3" width="120" height="11" />
22
+ </content-loader>
65
23
  </template>
@@ -0,0 +1,24 @@
1
+ <script>
2
+ import { ContentLoader } from "vue-content-loader";
3
+
4
+ export default {
5
+ components: { ContentLoader },
6
+ };
7
+ </script>
8
+
9
+ <template>
10
+ <content-loader
11
+ viewBox="0 0 1540 90"
12
+ :speed="2"
13
+ primaryColor="#f5f5f5"
14
+ secondaryColor="#ecebeb"
15
+ >
16
+ <rect x="0" y="0" rx="0" ry="0" width="NaN" height="NaN" />
17
+ <circle cx="47" cy="52" r="21" />
18
+ <rect x="86" y="64" rx="0" ry="0" width="95" height="11" />
19
+ <rect x="86" y="29" rx="0" ry="0" width="146" height="22" />
20
+ <rect x="1240" y="57" rx="0" ry="0" width="64" height="12" />
21
+ <rect x="1340" y="57" rx="0" ry="0" width="64" height="12" />
22
+ <rect x="1440" y="56" rx="0" ry="0" width="64" height="12" />
23
+ </content-loader>
24
+ </template>
@@ -16,5 +16,6 @@ withDefaults(defineProps<Props>(), {
16
16
  <style lang="scss" scoped>
17
17
  .tag {
18
18
  line-height: 1;
19
+ font-size: 11px;
19
20
  }
20
21
  </style>