@appscode/design-system 1.0.43-alpha.16 → 1.0.43-alpha.162

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.
Files changed (109) hide show
  1. package/base/utilities/_default.scss +269 -4
  2. package/base/utilities/_derived-variables.scss +0 -1
  3. package/base/utilities/_initial-variables.scss +17 -176
  4. package/base/utilities/_mixin.scss +1 -17
  5. package/base/utilities/_typography.scss +14 -4
  6. package/base/utilities/dark-theme.scss +25 -0
  7. package/components/_ac-alert-box.scss +13 -5
  8. package/components/_ac-card.scss +44 -8
  9. package/components/_ac-code-highlight.scss +5 -1
  10. package/components/_ac-content-layout.scss +2 -2
  11. package/components/_ac-input.scss +63 -23
  12. package/components/_ac-multi-select.scss +187 -5
  13. package/components/_ac-options.scss +24 -9
  14. package/components/_ac-select-box.scss +14 -4
  15. package/components/_ac-table.scss +5 -3
  16. package/components/_ac-tabs.scss +39 -3
  17. package/components/_ac-terminal.scss +270 -0
  18. package/components/_app-drawer.scss +2 -2
  19. package/components/_breadcumb.scss +2 -0
  20. package/components/_buttons.scss +39 -7
  21. package/components/_card-body-wrapper.scss +2 -2
  22. package/components/_dashboard-header.scss +32 -0
  23. package/components/_direct-deploy.scss +69 -0
  24. package/components/_go-to-top.scss +1 -1
  25. package/components/_graph.scss +45 -0
  26. package/components/_image-upload.scss +5 -3
  27. package/components/_left-sidebar-menu.scss +193 -39
  28. package/components/_monaco-editor.scss +1 -1
  29. package/components/_navbar.scss +108 -7
  30. package/components/_overview-info.scss +4 -4
  31. package/components/_pagination.scss +8 -0
  32. package/components/_payment-card.scss +10 -1
  33. package/components/_preview-modal.scss +15 -4
  34. package/components/_pricing-table.scss +1 -1
  35. package/components/_progress-bar.scss +4 -4
  36. package/components/_subscription-card.scss +12 -5
  37. package/components/_table-of-content.scss +1 -1
  38. package/components/_tfa.scss +69 -0
  39. package/components/_transitions.scss +261 -0
  40. package/components/_wizard.scss +15 -3
  41. package/components/ac-toaster/_ac-toasted.scss +1 -1
  42. package/components/bbum/_card-team.scss +15 -7
  43. package/components/bbum/_information-center.scss +15 -1
  44. package/components/bbum/_mobile-desktop.scss +1 -1
  45. package/components/bbum/_sign-up-notification.scss +3 -3
  46. package/components/bbum/_single-post-preview.scss +1 -1
  47. package/components/bbum/_user-profile.scss +97 -90
  48. package/components/ui-builder/_ui-builder.scss +19 -2
  49. package/components/ui-builder/_vue-open-api.scss +104 -0
  50. package/main.scss +4 -0
  51. package/package.json +2 -7
  52. package/plugins/theme.js +4 -0
  53. package/plugins/vue-toaster.js +3 -0
  54. package/vue-components/v2/banner/Banner.vue +2 -2
  55. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  56. package/vue-components/v2/button/Button.vue +5 -0
  57. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  58. package/vue-components/v2/card/PaymentCards.vue +11 -2
  59. package/vue-components/v2/content/ContentTable.vue +12 -7
  60. package/vue-components/v2/editor/Editor.vue +36 -5
  61. package/vue-components/v2/editor/FilteredFileEditor.vue +188 -0
  62. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  63. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  64. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  65. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  66. package/vue-components/v2/modal/Modal.vue +38 -13
  67. package/vue-components/v2/modals/DeleteConfirmationModal.vue +77 -0
  68. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  69. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  70. package/vue-components/v2/navbar/ThemeMode.vue +120 -0
  71. package/vue-components/v2/navbar/User.vue +202 -19
  72. package/vue-components/v2/preloader/Preloader.vue +5 -5
  73. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  74. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  75. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  76. package/vue-components/v2/table/Table.vue +44 -8
  77. package/vue-components/v2/table/TableRow.vue +17 -8
  78. package/vue-components/v2/table/table-cell/CellValue.vue +31 -4
  79. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  80. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  81. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  82. package/vue-components/v3/button/Button.vue +5 -0
  83. package/vue-components/v3/content/ContentTable.vue +5 -0
  84. package/vue-components/v3/editor/Editor.vue +50 -30
  85. package/vue-components/v3/editor/FilteredFileEditor.vue +166 -0
  86. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  87. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +124 -0
  88. package/vue-components/v3/form/Form.vue +63 -0
  89. package/vue-components/v3/form-fields/Input.vue +10 -10
  90. package/vue-components/v3/header/HeaderItem.vue +5 -0
  91. package/vue-components/v3/header/HeaderItems.vue +5 -0
  92. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  93. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  94. package/vue-components/v3/modal/Modal.vue +39 -16
  95. package/vue-components/v3/modals/DeleteConfirmationModal.vue +83 -0
  96. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  97. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  98. package/vue-components/v3/navbar/ThemeMode.vue +123 -0
  99. package/vue-components/v3/navbar/User.vue +176 -16
  100. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  101. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  102. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  103. package/vue-components/v3/table/Table.vue +34 -11
  104. package/vue-components/v3/table/TableContainer.vue +34 -0
  105. package/vue-components/v3/table/TableRow.vue +1 -1
  106. package/vue-components/v3/table/table-cell/CellValue.vue +26 -3
  107. package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
  108. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  109. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
@@ -52,7 +52,7 @@
52
52
  color: $ac-white;
53
53
  font-size: $font-size-small;
54
54
  font-weight: 600;
55
- font-family: raleway;
55
+ font-family: $ac-family-heading;
56
56
  width: 100%;
57
57
  padding-left: 15px;
58
58
 
@@ -131,8 +131,35 @@
131
131
  .ac-menu-content {
132
132
  opacity: 1;
133
133
  visibility: visible;
134
- top: 45px;
134
+ top: 40px;
135
+ &.theme-choice {
136
+ transition: none;
137
+ padding: 10px 10px;
138
+ min-width: 150px !important;
139
+ max-height: 150px;
140
+ overflow-y: auto;
141
+ border-radius: 4px;
142
+ left: 0;
143
+ background-color: $ac-white;
144
+ ul {
145
+ li {
146
+ width: 40px;
147
+ height: 40px;
148
+ line-height: 42px;
149
+ border-radius: 4px;
150
+ text-align: center;
151
+ cursor: pointer;
135
152
 
153
+ &.is-active {
154
+ color: $ac-white;
155
+ background: $ac-primary;
156
+ }
157
+ }
158
+ }
159
+ // &::after {
160
+ // right: 90px;
161
+ // }
162
+ }
136
163
  &::after {
137
164
  position: absolute;
138
165
  content: "";
@@ -216,7 +243,10 @@
216
243
  min-width: 180px;
217
244
  opacity: 0;
218
245
  visibility: hidden;
219
- transition: 0.3s ease-in-out;
246
+ transition: 0.3s ease-in;
247
+ &.theme-choice {
248
+ left: 0;
249
+ }
220
250
 
221
251
  .user-profile-wrapper {
222
252
  background-color: $ac-white;
@@ -370,9 +400,9 @@
370
400
  background-color: $ac-gray-light;
371
401
  }
372
402
 
373
- &:last-child {
374
- right: 0;
375
- }
403
+ // &:last-child {
404
+ // right: 0;
405
+ // }
376
406
 
377
407
  &.is-notification {
378
408
  right: 0;
@@ -465,7 +495,7 @@
465
495
 
466
496
  p {
467
497
  font-size: $font-size-tiny;
468
- color: $ac-border;
498
+ color: $ac-label-text;
469
499
 
470
500
  &.is-success {
471
501
  color: $ac-success;
@@ -521,6 +551,77 @@
521
551
  }
522
552
  }
523
553
 
554
+ .ac-menu-item {
555
+ li {
556
+ &.is-close {
557
+ ul {
558
+ max-height: 0;
559
+ visibility: hidden;
560
+ transition: max-height 0.25s ease-out;
561
+ }
562
+ }
563
+ &.is-open {
564
+ ul {
565
+ max-height: 200px;
566
+ visibility: visible;
567
+ transition: max-height 0.25s ease-out;
568
+ }
569
+ }
570
+ }
571
+ .is-fullwidth {
572
+ width: 100%;
573
+ }
574
+ .navbar-dropdown-wrapper {
575
+ width: 300px;
576
+ transition: width 0.9s ease-in-out;
577
+ }
578
+ }
579
+
580
+ // start dark theme
581
+ .is-dark-theme {
582
+ body {
583
+ .ac-navbar-area {
584
+ background-color: var(--dark-bg-light);
585
+ --ac-white: #ffffff;
586
+ --ac-white-lighter: #f1f1f1;
587
+
588
+ .ac-navbar {
589
+ .search-item {
590
+ background-color: rgba(0, 0, 0, 0.2);
591
+ }
592
+
593
+ .ac-navbar-menu {
594
+ .ac-menu-item {
595
+ .quick-access {
596
+ --ac-white: var(--dark-bg-light);
597
+ }
598
+
599
+ .ac-menu-content {
600
+ &.theme-choice {
601
+ background-color: var(--dark-bg-light);
602
+ }
603
+ background-color: var(--dark-bg-light);
604
+
605
+ ul {
606
+ background-color: var(--dark-bg-light);
607
+ }
608
+
609
+ &::after {
610
+ --ac-white: var(--dark-bg-light);
611
+ }
612
+
613
+ .user-profile-wrapper {
614
+ --ac-white: var(--dark-bg-light);
615
+ }
616
+ }
617
+ }
618
+ }
619
+ }
620
+ }
621
+ }
622
+ }
623
+ // end dark theme code
624
+
524
625
  /****************************************
525
626
  Responsive Classes
526
627
  *****************************************/
@@ -9,7 +9,7 @@
9
9
  color: $ac-color-heading;
10
10
  font-weight: 500;
11
11
  padding: 20px;
12
- border-bottom: 1px solid $table-header;
12
+ border-bottom: 1px solid $ac-white-light;
13
13
  }
14
14
  }
15
15
 
@@ -41,13 +41,13 @@
41
41
 
42
42
  h4 {
43
43
  font-size: 12px;
44
- color: #6f6f8d;
44
+ color: $ac-color-value;
45
45
  font-weight: 500;
46
46
  opacity: 0.5;
47
47
  }
48
48
 
49
49
  .button {
50
- color: #6f6f8d;
50
+ color: $ac-color-value;
51
51
  text-decoration: underline;
52
52
  }
53
53
  }
@@ -70,7 +70,7 @@
70
70
  font-size: 16px;
71
71
  color: #f99a00;
72
72
  font-weight: 500;
73
- font-family: Raleway;
73
+ font-family: $ac-family-heading;
74
74
  }
75
75
  }
76
76
  }
@@ -114,3 +114,11 @@ ul > li > a.next {
114
114
  1
115
115
  );
116
116
  }
117
+
118
+ .is-dark-theme {
119
+ .pagination-filter {
120
+ label {
121
+ $ac-gray-darker: $ac-color-value;
122
+ }
123
+ }
124
+ }
@@ -34,7 +34,7 @@
34
34
  &.add-card {
35
35
  background-color: transparent;
36
36
  box-shadow: none;
37
- border: 2px dashed #caced5;
37
+ border: 2px dashed $ac-white-light;
38
38
  display: flex;
39
39
  align-items: center;
40
40
  justify-content: center;
@@ -218,6 +218,15 @@
218
218
  }
219
219
  }
220
220
 
221
+ // dark theme start
222
+ .is-dark-theme {
223
+ .ac-payment-card,
224
+ .ac-single-card,
225
+ .option-dots {
226
+ --ac-white: var(--ac-white-text);
227
+ }
228
+ }
229
+ // dark theme end
221
230
  /****************************************
222
231
  Responsive Classes
223
232
  *****************************************/
@@ -55,7 +55,7 @@
55
55
  top: -50px;
56
56
  width: calc(100% + 90px);
57
57
  height: 100%;
58
- background-color: $ac-color-value;
58
+ background-color: $ac-white;
59
59
  opacity: 0.8;
60
60
  z-index: -1;
61
61
  }
@@ -138,7 +138,7 @@
138
138
  font-size: 14px;
139
139
  line-height: 100%;
140
140
  color: $ac-color-text;
141
- border-top: 1px solid #f5f7f9;
141
+ border-top: 1px solid $ac-white-light;
142
142
 
143
143
  span {
144
144
  img {
@@ -150,7 +150,7 @@
150
150
 
151
151
  &:last-child {
152
152
  a {
153
- border-bottom: 1px solid #f5f7f9;
153
+ border-bottom: 1px solid $ac-white-light;
154
154
  }
155
155
  }
156
156
  }
@@ -162,7 +162,7 @@
162
162
  width: 100%;
163
163
 
164
164
  .code-preview {
165
- background-color: #f5f7f9;
165
+ background-color: $ac-white-light;
166
166
  border-radius: 4px;
167
167
  display: flex;
168
168
 
@@ -178,3 +178,14 @@
178
178
  }
179
179
  }
180
180
  }
181
+ .left-content {
182
+ .ac-files {
183
+ max-height: 350px;
184
+ overflow-y: auto;
185
+ padding: 10px;
186
+ span {
187
+ width: 20px;
188
+ white-space: nowrap;
189
+ }
190
+ }
191
+ }
@@ -1,6 +1,6 @@
1
1
  .pricing-table {
2
2
  border: 1px solid $ac-white-light;
3
- background-color: #fafafa;
3
+ background-color: $ac-white-lighter;
4
4
  border-radius: 4px;
5
5
 
6
6
  .pricing-title {
@@ -15,9 +15,9 @@
15
15
  .progress-tooltip-info {
16
16
  align-items: center;
17
17
  background-color: $ac-bg-light-gray;
18
- border: 1px solid $ac-border;
18
+ border: 1px solid $ac-label-text;
19
19
  border-radius: 10px;
20
- box-shadow: 0 0 2px $ac-border;
20
+ box-shadow: 0 0 2px $ac-label-text;
21
21
  color: $ac-primary;
22
22
  display: inline-flex;
23
23
  font-family: sans-serif;
@@ -41,7 +41,7 @@
41
41
  left: 50%;
42
42
  transform: translateX(-50%);
43
43
  border-width: 8px;
44
- border-top-color: $ac-border;
44
+ border-top-color: $ac-label-text;
45
45
  bottom: -16px;
46
46
  left: 50%;
47
47
  }
@@ -200,7 +200,7 @@
200
200
  display: flex;
201
201
  justify-content: space-between;
202
202
  font-size: 12px;
203
- color: #6f6f8d;
203
+ color: $ac-color-value;
204
204
  margin-bottom: 5px;
205
205
  }
206
206
  .progress-line {
@@ -3,7 +3,7 @@
3
3
  }
4
4
 
5
5
  .single-subscription-card {
6
- border: 1px solid $ac-input-bg-color;
6
+ border: 1px solid $ac-blue-light;
7
7
  background-color: $ac-white;
8
8
  padding: 10px;
9
9
  transition: 0.3s ease-in-out;
@@ -50,7 +50,7 @@
50
50
  padding: 0;
51
51
 
52
52
  h5 {
53
- font-family: Raleway;
53
+ font-family: $ac-family-heading;
54
54
  font-style: normal;
55
55
  font-weight: 600;
56
56
  font-size: 14px;
@@ -71,7 +71,7 @@
71
71
  font-weight: normal;
72
72
  font-size: 12px;
73
73
  line-height: 14px;
74
- color: #6f6f8d;
74
+ color: $ac-color-value;
75
75
  }
76
76
 
77
77
  li {
@@ -81,10 +81,10 @@
81
81
  font-size: 14px;
82
82
  line-height: 16px;
83
83
  padding-bottom: 8px;
84
- color: #6f6f8d;
84
+ color: $ac-color-value;
85
85
 
86
86
  .fa {
87
- color: #6f6f8d;
87
+ color: $ac-color-value;
88
88
  margin-right: 10px;
89
89
  }
90
90
  }
@@ -121,6 +121,13 @@
121
121
  }
122
122
  }
123
123
 
124
+ // dark theme start
125
+ .is-dark-theme {
126
+ .single-subscription-card {
127
+ background-color: var(--dark-bg-light);
128
+ }
129
+ }
130
+ // dark theme end
124
131
  /****************************************
125
132
  Responsive Classes
126
133
  *****************************************/
@@ -1,6 +1,6 @@
1
1
  .ac-accordion-wrapper {
2
2
  &.table-of-content {
3
- background-color: #f5f7f9;
3
+ background-color: $ac-white-light;
4
4
  padding: 5px 15px;
5
5
  border-radius: 4px;
6
6
 
@@ -0,0 +1,69 @@
1
+ .qr-code-wrapper {
2
+ background: $ac-blue-light;
3
+ width: 240px;
4
+ height: 240px;
5
+ padding: 20px;
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: center;
9
+ border-radius: 4px;
10
+ .qr-code-inner {
11
+ position: relative;
12
+ z-index: 1;
13
+ padding: 20px;
14
+ height: 200px;
15
+ img {
16
+ object-fit: cover;
17
+ height: 160px;
18
+ width: 160px;
19
+ }
20
+ .scanner {
21
+ position: absolute;
22
+ content: "";
23
+ left: 0;
24
+ top: 0;
25
+ width: 100%;
26
+ height: 100%;
27
+ &.shape-1:after {
28
+ position: absolute;
29
+ content: "";
30
+ left: 0;
31
+ top: 0;
32
+ width: 20px;
33
+ height: 20px;
34
+ border-top: 1px solid $ac-color-heading;
35
+ border-left: 1px solid $ac-color-heading;
36
+ }
37
+ &.shape-1:before {
38
+ position: absolute;
39
+ content: "";
40
+ right: 0;
41
+ top: 0;
42
+ width: 20px;
43
+ height: 20px;
44
+ border-top: 1px solid $ac-color-heading;
45
+ border-right: 1px solid $ac-color-heading;
46
+ }
47
+ &.shape-2:after {
48
+ position: absolute;
49
+ content: "";
50
+ left: 0;
51
+ bottom: 0;
52
+ width: 20px;
53
+ height: 20px;
54
+ border-bottom: 1px solid $ac-color-heading;
55
+ border-left: 1px solid $ac-color-heading;
56
+ }
57
+ &.shape-2:before {
58
+ position: absolute;
59
+ content: "";
60
+ right: 0;
61
+ bottom: 0;
62
+ width: 20px;
63
+ height: 20px;
64
+ border-bottom: 1px solid $ac-color-heading;
65
+ border-right: 1px solid $ac-color-heading;
66
+ }
67
+ }
68
+ }
69
+ }
@@ -0,0 +1,261 @@
1
+ .sidebar-appear-enter-active,
2
+ .sidebar-appear-leave-active {
3
+ position: absolute;
4
+ width: 270px;
5
+ transition: all 0.2s ease;
6
+ }
7
+ .sidebar-appear-enter-from {
8
+ left: -100%;
9
+ opacity: 0;
10
+ }
11
+ .sidebar-appear-enter-to {
12
+ left: 0px;
13
+ opacity: 1;
14
+ }
15
+ .sidebar-appear-leave-from {
16
+ left: 0px;
17
+ opacity: 1;
18
+ }
19
+ .sidebar-appear-leave-to {
20
+ left: 100%;
21
+ opacity: 0;
22
+ }
23
+
24
+ .navbar-appear-enter-active,
25
+ .navbar-appear-leave-active {
26
+ position: absolute;
27
+ height: 50px;
28
+ transition: all 0.2s ease;
29
+ }
30
+ .navbar-appear-enter-from {
31
+ top: -100%;
32
+ opacity: 0;
33
+ }
34
+ .navbar-appear-enter-to {
35
+ top: 0px;
36
+ opacity: 1;
37
+ }
38
+ .navbar-appear-leave-from {
39
+ top: 0px;
40
+ opacity: 1;
41
+ }
42
+ .navbar-appear-leave-to {
43
+ top: 100%;
44
+ opacity: 0;
45
+ }
46
+
47
+ .nested-enter-active .inner,
48
+ .nested-leave-active .inner {
49
+ transition: all 0.2s ease-in-out;
50
+ }
51
+
52
+ .nested-enter-from .inner,
53
+ .nested-leave-to .inner {
54
+ transform: translateX(20px);
55
+ opacity: 0;
56
+ }
57
+
58
+ .slide-left-enter-active,
59
+ .slide-left-leave-active {
60
+ transition: all 0.3s ease-in-out;
61
+ }
62
+ .slide-left-enter-from {
63
+ transform: translateX(20px);
64
+ opacity: 0;
65
+ }
66
+ .slide-left-enter-to {
67
+ transform: translateX(0px);
68
+ opacity: 1;
69
+ }
70
+ .slide-left-leave-from {
71
+ transform: translateX(0px);
72
+ opacity: 1;
73
+ }
74
+ .slide-left-leave-to {
75
+ transform: translateX(-20px);
76
+ opacity: 0;
77
+ }
78
+
79
+ .slide-right-enter-active,
80
+ .slide-right-leave-active {
81
+ transition: all 0.2s ease-in-out;
82
+ }
83
+ .slide-right-enter-from {
84
+ transform: translateX(-20px);
85
+ opacity: 0;
86
+ }
87
+ .slide-right-enter-to {
88
+ transform: translateX(0px);
89
+ opacity: 1;
90
+ }
91
+ .slide-right-leave-from {
92
+ transform: translateX(0px);
93
+ opacity: 1;
94
+ }
95
+ .slide-right-leave-to {
96
+ transform: translateX(20px);
97
+ opacity: 0;
98
+ }
99
+
100
+ .slide-down-enter-active,
101
+ .slide-down-leave-active {
102
+ transition: all 0.2s ease-in-out;
103
+ }
104
+ .slide-down-enter-from {
105
+ transform: translateY(-10px);
106
+ opacity: 0;
107
+ }
108
+ .slide-down-enter-to {
109
+ transform: translateY(0px);
110
+ opacity: 1;
111
+ }
112
+ .slide-down-leave-from {
113
+ transform: translateY(0px);
114
+ opacity: 1;
115
+ }
116
+ .slide-down-leave-to {
117
+ transform: translateY(-10px);
118
+ opacity: 0;
119
+ }
120
+
121
+ .fade-enter-active,
122
+ .fade-leave-active {
123
+ transition: all 0.2s ease-in-out;
124
+ }
125
+ .fade-enter-from {
126
+ opacity: 0;
127
+ }
128
+ .fade-enter-to {
129
+ opacity: 1;
130
+ }
131
+ .fade-leave-from {
132
+ opacity: 1;
133
+ }
134
+ .fade-leave-to {
135
+ opacity: 0;
136
+ }
137
+
138
+ .list-move, /* apply transition to moving elements */
139
+ .list-enter-active,
140
+ .list-leave-active {
141
+ transition: all 0.5s ease;
142
+ }
143
+
144
+ .list-enter-from,
145
+ .list-leave-to {
146
+ opacity: 0;
147
+ transform: translateX(35px);
148
+ }
149
+
150
+ .list-leave-active {
151
+ position: absolute;
152
+ }
153
+
154
+ .overview-card-enter-active {
155
+ transition: all 0.2s ease-in-out;
156
+ }
157
+ .overview-card-leave-active {
158
+ transition: all 0.2s ease-in-out;
159
+ position: absolute;
160
+ }
161
+ .overview-card-enter-from {
162
+ transform: translateY(-20px);
163
+ opacity: 0;
164
+ }
165
+ .overview-card-enter-to {
166
+ transform: translateY(0px);
167
+ opacity: 1;
168
+ }
169
+ .overview-card-leave-from {
170
+ transform: translateY(0px);
171
+ opacity: 1;
172
+ }
173
+ .overview-card-leave-to {
174
+ transform: translateY(-10px);
175
+ opacity: 0;
176
+ }
177
+
178
+ .cluster-card-enter-active {
179
+ transition: all 0.2s ease-in-out;
180
+ }
181
+ .cluster-card-leave-active {
182
+ transition: all 0s;
183
+ position: absolute;
184
+ }
185
+ .cluster-card-enter-from {
186
+ transform: translateX(-20px);
187
+ opacity: 0;
188
+ }
189
+ .cluster-card-enter-to {
190
+ transform: translateX(0px);
191
+ opacity: 1;
192
+ }
193
+ .cluster-card-leave-from {
194
+ transform: translateX(0px);
195
+ opacity: 1;
196
+ }
197
+ .cluster-card-leave-to {
198
+ opacity: 0;
199
+ }
200
+
201
+ .dropdown-animate.dropdown-show-animation .dropdown-content {
202
+ animation: dropdownAnim 0.2s ease-in-out;
203
+ }
204
+ .dropdown-animate.dropdown-hide-animation .dropdown-content {
205
+ animation: dropdownAnim reverse 0.2s ease-in-out;
206
+ }
207
+
208
+ @keyframes dropdownAnim {
209
+ 0% {
210
+ opacity: 0;
211
+ transform: translateY(-10px);
212
+ }
213
+ 100% {
214
+ opacity: 1;
215
+ transform: translateY(0px);
216
+ }
217
+ }
218
+
219
+ .accordion-enter-active,
220
+ .accordion-leave-active {
221
+ transition: all 0.3s ease-in-out;
222
+ position: relative;
223
+ }
224
+ .accordion-enter-from {
225
+ top: -10px;
226
+ opacity: 0;
227
+ }
228
+ .accordion-enter-to {
229
+ top: 0px;
230
+ opacity: 1;
231
+ }
232
+ .accordion-leave-from {
233
+ top: 0px;
234
+ opacity: 1;
235
+ }
236
+ .accordion-leave-to {
237
+ top: -10px;
238
+ opacity: 0;
239
+ }
240
+
241
+ .fa.fa-spinner.spin {
242
+ -webkit-animation: spin 1s linear infinite;
243
+ -moz-animation: spinAnim 1s linear infinite;
244
+ animation: spinAnim 1s linear infinite;
245
+ }
246
+ @-moz-keyframes spinAnim {
247
+ 100% {
248
+ -moz-transform: rotate(360deg);
249
+ }
250
+ }
251
+ @-webkit-keyframes spinAnim {
252
+ 100% {
253
+ -webkit-transform: rotate(360deg);
254
+ }
255
+ }
256
+ @keyframes spinAnim {
257
+ 100% {
258
+ -webkit-transform: rotate(360deg);
259
+ transform: rotate(360deg);
260
+ }
261
+ }