@appscode/design-system 2.4.5 → 2.4.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.4.5",
3
+ "version": "2.4.7",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -1,3 +1,4 @@
1
+ // for spin
1
2
  .is-spin {
2
3
  animation: spin 1000ms linear infinite;
3
4
  }
@@ -9,3 +10,19 @@
9
10
  transform: rotate(360deg);
10
11
  }
11
12
  }
13
+
14
+ // for shake
15
+ .shake {
16
+ animation: shake 150ms 4 linear;
17
+ }
18
+ @keyframes shake {
19
+ 0% {
20
+ transform: translate(3px, 0);
21
+ }
22
+ 50% {
23
+ transform: translate(-3px, 0);
24
+ }
25
+ 100% {
26
+ transform: translate(0, 0);
27
+ }
28
+ }
@@ -156,6 +156,7 @@ hr {
156
156
  .is-disabled {
157
157
  opacity: 0.5;
158
158
  cursor: not-allowed;
159
+ pointer-events: none;
159
160
  }
160
161
 
161
162
  .no-data-image {
@@ -1,6 +1,6 @@
1
1
  .single-accordion-item {
2
2
  background-color: $white-100;
3
- margin-bottom: 12px;
3
+ margin-bottom: 16px;
4
4
  border-radius: 4px;
5
5
 
6
6
  &:last-child {
@@ -17,8 +17,11 @@
17
17
  background-color: $white-100;
18
18
  }
19
19
 
20
- &.is-disable {
20
+ &.is-disable,
21
+ &.is-disabled {
21
22
  opacity: 0.5;
23
+ pointer-events: none;
24
+ cursor: no-drop;
22
25
 
23
26
  input,
24
27
  .button.is-information,