@appscode/design-system 1.0.43-alpha.99 → 1.1.0-alpha.2

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 (100) hide show
  1. package/base/utilities/_all.scss +7 -0
  2. package/base/utilities/_customize-bulma.scss +191 -0
  3. package/base/utilities/_default.scss +58 -124
  4. package/base/utilities/_derived-variables.scss +6 -0
  5. package/base/utilities/_grid.scss +29 -0
  6. package/base/utilities/_initial-variables.scss +13 -9
  7. package/base/utilities/_typography.scss +6 -12
  8. package/base/utilities/dark-theme.scss +1 -0
  9. package/components/_ac-accordion.scss +14 -5
  10. package/components/_ac-alert-box.scss +32 -6
  11. package/components/_ac-card.scss +17 -5
  12. package/components/_ac-drag.scss +2 -0
  13. package/components/_ac-input.scss +19 -11
  14. package/components/_ac-modal.scss +1 -1
  15. package/components/_ac-multi-select.scss +60 -4
  16. package/components/_ac-report.scss +53 -0
  17. package/components/_ac-table.scss +60 -2
  18. package/components/_ac-tabs.scss +16 -2
  19. package/components/_ac-tags.scss +85 -0
  20. package/components/_ac-terminal.scss +1 -3
  21. package/components/_all.scss +28 -0
  22. package/components/_buttons.scss +14 -33
  23. package/components/_dashboard-header.scss +32 -0
  24. package/components/_left-sidebar-menu.scss +9 -9
  25. package/components/_navbar.scss +89 -4
  26. package/components/_preview-modal.scss +14 -1
  27. package/components/_transitions.scss +296 -0
  28. package/components/_wizard.scss +1 -0
  29. package/components/bbum/_all.scss +9 -0
  30. package/components/bbum/_single-post-preview.scss +1 -1
  31. package/components/ui-builder/_ui-builder.scss +58 -0
  32. package/components/ui-builder/_vue-open-api.scss +6 -0
  33. package/layouts/_all.scss +2 -0
  34. package/layouts/_code-preview.scss +5 -2
  35. package/main.scss +5 -56
  36. package/package.json +4 -2
  37. package/plugins/caching.ts +243 -0
  38. package/plugins/time-convert.js +49 -0
  39. package/plugins/vue-toaster.js +3 -0
  40. package/vue-components/v2/banner/Banner.vue +2 -2
  41. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  42. package/vue-components/v2/button/Button.vue +5 -0
  43. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  44. package/vue-components/v2/card/Card.vue +1 -0
  45. package/vue-components/v2/content/ContentTable.vue +12 -7
  46. package/vue-components/v2/editor/Editor.vue +37 -24
  47. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  48. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  49. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  50. package/vue-components/v2/form-fields/Input.vue +1 -1
  51. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  52. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  53. package/vue-components/v2/modal/Modal.vue +30 -5
  54. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  55. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  56. package/vue-components/v2/navbar/User.vue +229 -17
  57. package/vue-components/v2/notification/Notification.vue +101 -0
  58. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  59. package/vue-components/v2/pagination/Pagination.vue +16 -3
  60. package/vue-components/v2/preloader/Preloader.vue +1 -1
  61. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  62. package/vue-components/v2/tab/TabItem.vue +1 -1
  63. package/vue-components/v2/table/Table.vue +44 -8
  64. package/vue-components/v2/table/TableRow.vue +12 -2
  65. package/vue-components/v2/table/table-cell/CellValue.vue +29 -9
  66. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  67. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  68. package/vue-components/v3/button/Button.vue +6 -1
  69. package/vue-components/v3/content/ContentHeader.vue +2 -1
  70. package/vue-components/v3/content/ContentTable.vue +20 -2
  71. package/vue-components/v3/editor/Editor.vue +36 -33
  72. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  73. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  74. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  75. package/vue-components/v3/form/Form.vue +63 -0
  76. package/vue-components/v3/form-fields/Input.vue +11 -10
  77. package/vue-components/v3/header/HeaderItem.vue +5 -0
  78. package/vue-components/v3/header/HeaderItems.vue +5 -0
  79. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  80. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  81. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  82. package/vue-components/v3/modal/Modal.vue +30 -7
  83. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  84. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  85. package/vue-components/v3/modals/LongRunningTasksModal.vue +373 -0
  86. package/vue-components/v3/navbar/ThemeMode.vue +41 -49
  87. package/vue-components/v3/navbar/User.vue +242 -18
  88. package/vue-components/v3/notification/Notification.vue +98 -0
  89. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  90. package/vue-components/v3/pagination/Pagination.vue +16 -3
  91. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  92. package/vue-components/v3/tab/TabItem.vue +1 -1
  93. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  94. package/vue-components/v3/table/Table.vue +50 -14
  95. package/vue-components/v3/table/TableContainer.vue +34 -0
  96. package/vue-components/v3/table/TableRow.vue +93 -6
  97. package/vue-components/v3/table/table-cell/CellValue.vue +23 -7
  98. package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
  99. package/vue-components/v3/table/table-cell/ObjectCell.vue +7 -2
  100. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -54,14 +54,22 @@
54
54
  opacity: 0.5 !important;
55
55
  }
56
56
 
57
+ &.is-rounded {
58
+ border-radius: 9999px;
59
+ }
60
+
57
61
  .ac-icon {
58
62
  margin-left: 25px;
59
63
  background-color: $ac-white;
60
64
  color: $ac-primary;
61
65
  padding: 2px 6px;
62
66
  border-radius: 4px;
63
- width: 28px;
64
- height: 28px;
67
+ width: 20px;
68
+ height: 20px;
69
+ display: flex;
70
+ align-items: center;
71
+ justify-content: center;
72
+ font-size: 12px;
65
73
  }
66
74
 
67
75
  &.is-small {
@@ -127,8 +135,8 @@
127
135
  width: 52px;
128
136
  height: 52px;
129
137
  padding: 0;
130
- &:hover{
131
- svg{
138
+ &:hover {
139
+ svg {
132
140
  color: $ac-white;
133
141
  }
134
142
  }
@@ -215,7 +223,7 @@
215
223
  font-size: 14px;
216
224
  font-weight: 500;
217
225
  background-color: transparent;
218
- color: $ac-gray-lightest;
226
+ color: $ac-color-text;
219
227
 
220
228
  &.is-primary {
221
229
  background-color: transparent;
@@ -410,33 +418,6 @@
410
418
  }
411
419
  }
412
420
 
413
- // group buttons
414
- .buttons {
415
- &.are-medium {
416
- .button {
417
- &.ac-button {
418
- @extend .is-medium;
419
- }
420
- }
421
- }
422
-
423
- &.are-small {
424
- .button {
425
- &.ac-button {
426
- @extend .is-small;
427
- }
428
- }
429
- }
430
-
431
- &.are-large {
432
- .button {
433
- &.ac-button {
434
- @extend .is-large;
435
- }
436
- }
437
- }
438
- }
439
-
440
421
  .ac-play-button-wrapper {
441
422
  display: flex;
442
423
  align-items: center;
@@ -628,7 +609,7 @@
628
609
  --ac-white: #2e323c;
629
610
  }
630
611
  }
631
- .button.ac-button.is-text{
612
+ .button.ac-button.is-text {
632
613
  background-color: transparent;
633
614
  }
634
615
  }
@@ -81,3 +81,35 @@
81
81
  }
82
82
  }
83
83
  }
84
+
85
+ .resource {
86
+ display: flex;
87
+ align-items: center;
88
+ border-left: 1px solid $ac-white-light;
89
+ padding: 0 1.5rem;
90
+ margin-top: -10px;
91
+ margin-bottom: -10px;
92
+ .r-icon {
93
+ display: flex;
94
+ align-items: center;
95
+ max-width: 40px;
96
+ }
97
+
98
+ .r-data {
99
+ margin-left: 0.8rem;
100
+ .request,
101
+ .limit {
102
+ font-weight: 500;
103
+ min-width: 50px;
104
+ text-align: center;
105
+ }
106
+ .request {
107
+ font-weight: 300;
108
+ }
109
+ hr {
110
+ margin: 0;
111
+ padding: 0;
112
+ background-color: $ac-white-light;
113
+ }
114
+ }
115
+ }
@@ -43,7 +43,7 @@
43
43
  }
44
44
 
45
45
  .ac-left-sidebar-wrapper {
46
- background-color: $ac-white;
46
+ background-color: $ac-white-lightest;
47
47
  width: 100%;
48
48
  position: sticky;
49
49
  top: 50px;
@@ -87,7 +87,7 @@
87
87
  li {
88
88
  a {
89
89
  padding: 12px 15px 12px 26px !important;
90
- font-weight: 400;
90
+ font-weight: 500;
91
91
 
92
92
  &:hover {
93
93
  &::after {
@@ -95,7 +95,7 @@
95
95
  }
96
96
 
97
97
  span {
98
- color: $ac-black;
98
+ color: $ac-link-black;
99
99
  }
100
100
  }
101
101
 
@@ -183,7 +183,7 @@
183
183
  li {
184
184
  a {
185
185
  strong {
186
- font-weight: 400;
186
+ font-weight: 500;
187
187
  }
188
188
  }
189
189
  }
@@ -192,10 +192,10 @@
192
192
 
193
193
  a {
194
194
  font-style: normal;
195
- font-weight: 400;
195
+ font-weight: 500;
196
196
  font-size: $font-size-small;
197
197
  line-height: 16px;
198
- color: $ac-black;
198
+ color: $ac-link-black;
199
199
  position: relative;
200
200
  z-index: 1;
201
201
  padding: 10px 15px 10px 24px;
@@ -223,7 +223,7 @@
223
223
  display: flex;
224
224
  align-items: center;
225
225
  overflow: hidden;
226
- font-weight: 400;
226
+ font-weight: 500;
227
227
  }
228
228
 
229
229
  &.ac-dropdown-button {
@@ -247,7 +247,7 @@
247
247
  }
248
248
 
249
249
  span {
250
- color: $ac-black;
250
+ color: $ac-link-black;
251
251
 
252
252
  img {
253
253
  filter: grayscale(0);
@@ -569,7 +569,7 @@ Responsive Classes
569
569
  }
570
570
 
571
571
  span {
572
- color: $ac-black;
572
+ color: $ac-link-black;
573
573
  }
574
574
  }
575
575
  }
@@ -5,6 +5,7 @@
5
5
  width: 100%;
6
6
  top: 0;
7
7
  z-index: 999;
8
+
8
9
  &.is-light {
9
10
  background-color: $ac-white;
10
11
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
@@ -12,10 +13,12 @@
12
13
  .ac-navbar-menu .ac-menu-item .ac-nav-button.ac-profile-button {
13
14
  color: #3a3a3a !important;
14
15
  }
16
+
15
17
  .drawer-icon svg {
16
18
  fill: $ac-color-text !important;
17
19
  }
18
20
  }
21
+
19
22
  .ac-navbar {
20
23
  display: inline-grid;
21
24
  grid-template-columns: 255px auto auto;
@@ -31,10 +34,12 @@
31
34
  font-weight: 600;
32
35
  color: $ac-white;
33
36
  }
37
+
34
38
  img {
35
39
  height: 30px;
36
40
  }
37
41
  }
42
+
38
43
  .search-item {
39
44
  display: flex;
40
45
  align-items: center;
@@ -119,10 +124,31 @@
119
124
  position: relative;
120
125
  z-index: 1;
121
126
 
127
+ // width: 30px;
128
+ // height: 30px;
129
+ // border-radius: 50%;
130
+ .ac-nav-button:not(.ac-profile-button) {
131
+ &:after {
132
+ content: "";
133
+ border-radius: 50%;
134
+ width: 30px;
135
+ height: 30px;
136
+ position: absolute;
137
+ z-index: -1;
138
+ left: 50%;
139
+ transition: 0.3s ease-in-out;
140
+ margin-left: -15px;
141
+ }
142
+
143
+ &:hover {
144
+ &:after {
145
+ background-color: rgba(255, 255, 255, 0.2) !important;
146
+ }
147
+ }
148
+ }
149
+
122
150
  &:hover {
123
151
  .ac-nav-button:not(.ac-profile-button) {
124
- background-color: $ac-primary;
125
-
126
152
  i.fa {
127
153
  color: $ac-white;
128
154
  }
@@ -132,6 +158,7 @@
132
158
  opacity: 1;
133
159
  visibility: visible;
134
160
  top: 40px;
161
+
135
162
  &.theme-choice {
136
163
  transition: none;
137
164
  padding: 10px 10px;
@@ -141,6 +168,7 @@
141
168
  border-radius: 4px;
142
169
  left: 0;
143
170
  background-color: $ac-white;
171
+
144
172
  ul {
145
173
  li {
146
174
  width: 40px;
@@ -156,10 +184,12 @@
156
184
  }
157
185
  }
158
186
  }
187
+
159
188
  // &::after {
160
189
  // right: 90px;
161
190
  // }
162
191
  }
192
+
163
193
  &::after {
164
194
  position: absolute;
165
195
  content: "";
@@ -216,8 +246,8 @@
216
246
  &.ac-profile-button {
217
247
  strong {
218
248
  color: $ac-white;
219
- margin-left: 45px;
220
- font-weight: 400;
249
+ margin-left: 16px;
250
+ font-weight: 500;
221
251
  font-size: $font-size-small;
222
252
  }
223
253
 
@@ -244,6 +274,7 @@
244
274
  opacity: 0;
245
275
  visibility: hidden;
246
276
  transition: 0.3s ease-in;
277
+
247
278
  &.theme-choice {
248
279
  left: 0;
249
280
  }
@@ -551,6 +582,58 @@
551
582
  }
552
583
  }
553
584
 
585
+ .ac-menu-item {
586
+ li {
587
+ &.is-close {
588
+ ul {
589
+ max-height: 0;
590
+ visibility: hidden;
591
+ transition: max-height 0.25s ease-out;
592
+ }
593
+ }
594
+
595
+ &.is-open {
596
+ ul {
597
+ max-height: 200px;
598
+ visibility: visible;
599
+ transition: max-height 0.25s ease-out;
600
+ }
601
+ }
602
+ }
603
+
604
+ .is-fullwidth {
605
+ width: 100%;
606
+ }
607
+
608
+ .navbar-dropdown-wrapper {
609
+ width: 300px;
610
+ transition: width 0.9s ease-in-out;
611
+ }
612
+ }
613
+
614
+ .theme-choicee {
615
+ border: 1px solid $ac-white-light;
616
+
617
+ li {
618
+ border-right: 1px solid $ac-white-light;
619
+ cursor: pointer;
620
+ transition: 0.3s ease-in-out;
621
+
622
+ &:last-child {
623
+ border-right: none;
624
+ }
625
+
626
+ &:hover {
627
+ color: $ac-black;
628
+ }
629
+
630
+ &.is-active {
631
+ background-color: $ac-primary;
632
+ color: $ac-white;
633
+ }
634
+ }
635
+ }
636
+
554
637
  // start dark theme
555
638
  .is-dark-theme {
556
639
  body {
@@ -574,6 +657,7 @@
574
657
  &.theme-choice {
575
658
  background-color: var(--dark-bg-light);
576
659
  }
660
+
577
661
  background-color: var(--dark-bg-light);
578
662
 
579
663
  ul {
@@ -594,6 +678,7 @@
594
678
  }
595
679
  }
596
680
  }
681
+
597
682
  // end dark theme code
598
683
 
599
684
  /****************************************
@@ -56,7 +56,9 @@
56
56
  width: calc(100% + 90px);
57
57
  height: 100%;
58
58
  background-color: $ac-white;
59
- opacity: 0.8;
59
+
60
+ // remove opacity for fix cluster ui project
61
+ // opacity: 0.8;
60
62
  z-index: -1;
61
63
  }
62
64
 
@@ -178,3 +180,14 @@
178
180
  }
179
181
  }
180
182
  }
183
+ .left-content {
184
+ .ac-files {
185
+ max-height: 350px;
186
+ overflow-y: auto;
187
+ padding: 10px;
188
+ span {
189
+ width: 20px;
190
+ white-space: nowrap;
191
+ }
192
+ }
193
+ }
@@ -0,0 +1,296 @@
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
+ .zoom-list-move, /* apply transition to moving elements */
155
+ .zoom-list-enter-active,
156
+ .zoom-list-leave-active {
157
+ transition: all 0.5s ease;
158
+ }
159
+
160
+ .zoom-list-enter-from,
161
+ .zoom-list-leave-to {
162
+ opacity: 0;
163
+ transform: scale(0.5);
164
+ }
165
+
166
+ .zoom-list-leave-active {
167
+ position: absolute;
168
+ }
169
+
170
+ .slide-left-list-move,
171
+ .slide-left-list-enter-active,
172
+ .slide-left-list-leave-active {
173
+ transition: all 0.3s ease-in-out;
174
+ }
175
+ .slide-left-list-enter-from,
176
+ .slide-left-list-leave-to {
177
+ transform: translateX(20px);
178
+ opacity: 0;
179
+ }
180
+ .slide-left-list-enter-to,
181
+ .slide-left-list-leave-from {
182
+ transform: translateX(0px);
183
+ opacity: 1;
184
+ }
185
+ .slide-left-list-leave-active {
186
+ position: absolute;
187
+ }
188
+
189
+ .overview-card-enter-active {
190
+ transition: all 0.2s ease-in-out;
191
+ }
192
+ .overview-card-leave-active {
193
+ transition: all 0.2s ease-in-out;
194
+ position: absolute;
195
+ }
196
+ .overview-card-enter-from {
197
+ transform: translateY(-20px);
198
+ opacity: 0;
199
+ }
200
+ .overview-card-enter-to {
201
+ transform: translateY(0px);
202
+ opacity: 1;
203
+ }
204
+ .overview-card-leave-from {
205
+ transform: translateY(0px);
206
+ opacity: 1;
207
+ }
208
+ .overview-card-leave-to {
209
+ transform: translateY(-10px);
210
+ opacity: 0;
211
+ }
212
+
213
+ .cluster-card-enter-active {
214
+ transition: all 0.2s ease-in-out;
215
+ }
216
+ .cluster-card-leave-active {
217
+ transition: all 0s;
218
+ position: absolute;
219
+ }
220
+ .cluster-card-enter-from {
221
+ transform: translateX(-20px);
222
+ opacity: 0;
223
+ }
224
+ .cluster-card-enter-to {
225
+ transform: translateX(0px);
226
+ opacity: 1;
227
+ }
228
+ .cluster-card-leave-from {
229
+ transform: translateX(0px);
230
+ opacity: 1;
231
+ }
232
+ .cluster-card-leave-to {
233
+ opacity: 0;
234
+ }
235
+
236
+ .dropdown-animate.dropdown-show-animation .dropdown-content {
237
+ animation: dropdownAnim 0.2s ease-in-out;
238
+ }
239
+ .dropdown-animate.dropdown-hide-animation .dropdown-content {
240
+ animation: dropdownAnim reverse 0.2s ease-in-out;
241
+ }
242
+
243
+ @keyframes dropdownAnim {
244
+ 0% {
245
+ opacity: 0;
246
+ transform: translateY(-10px);
247
+ }
248
+ 100% {
249
+ opacity: 1;
250
+ transform: translateY(0px);
251
+ }
252
+ }
253
+
254
+ .accordion-enter-active,
255
+ .accordion-leave-active {
256
+ transition: all 0.3s ease-in-out;
257
+ position: relative;
258
+ }
259
+ .accordion-enter-from {
260
+ top: -10px;
261
+ opacity: 0;
262
+ }
263
+ .accordion-enter-to {
264
+ top: 0px;
265
+ opacity: 1;
266
+ }
267
+ .accordion-leave-from {
268
+ top: 0px;
269
+ opacity: 1;
270
+ }
271
+ .accordion-leave-to {
272
+ top: -10px;
273
+ opacity: 0;
274
+ }
275
+
276
+ .fa.fa-spinner.spin {
277
+ -webkit-animation: spin 1s linear infinite;
278
+ -moz-animation: spinAnim 1s linear infinite;
279
+ animation: spinAnim 1s linear infinite;
280
+ }
281
+ @-moz-keyframes spinAnim {
282
+ 100% {
283
+ -moz-transform: rotate(360deg);
284
+ }
285
+ }
286
+ @-webkit-keyframes spinAnim {
287
+ 100% {
288
+ -webkit-transform: rotate(360deg);
289
+ }
290
+ }
291
+ @keyframes spinAnim {
292
+ 100% {
293
+ -webkit-transform: rotate(360deg);
294
+ transform: rotate(360deg);
295
+ }
296
+ }
@@ -121,6 +121,7 @@
121
121
  transition: 0.3s ease-in-out;
122
122
  position: relative;
123
123
  z-index: 1;
124
+ max-width: 250px;
124
125
 
125
126
  &.is-active-require-field {
126
127
  &:after {
@@ -0,0 +1,9 @@
1
+ @import "activities-header";
2
+ @import "card-team";
3
+ @import "information-center";
4
+ @import "left-sidebar";
5
+ @import "mobile-desktop";
6
+ @import "post";
7
+ @import "sign-up-notification";
8
+ @import "single-post-preview";
9
+ @import "user-profile";