@appscode/design-system 1.0.43-alpha.22 → 1.0.43-alpha.221

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 (134) 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 +286 -126
  4. package/base/utilities/_derived-variables.scss +6 -1
  5. package/base/utilities/_grid.scss +29 -0
  6. package/base/utilities/_initial-variables.scss +27 -17
  7. package/base/utilities/_mixin.scss +1 -17
  8. package/base/utilities/_typography.scss +18 -14
  9. package/base/utilities/dark-theme.scss +9 -145
  10. package/components/_ac-accordion.scss +14 -5
  11. package/components/_ac-alert-box.scss +41 -7
  12. package/components/_ac-card.scss +48 -10
  13. package/components/_ac-code-highlight.scss +5 -1
  14. package/components/_ac-content-layout.scss +2 -2
  15. package/components/_ac-drag.scss +2 -0
  16. package/components/_ac-input.scss +64 -23
  17. package/components/_ac-modal.scss +1 -1
  18. package/components/_ac-multi-select.scss +247 -9
  19. package/components/_ac-options.scss +24 -9
  20. package/components/_ac-select-box.scss +13 -3
  21. package/components/_ac-table.scss +15 -5
  22. package/components/_ac-tabs.scss +46 -5
  23. package/components/_ac-tags.scss +85 -0
  24. package/components/_ac-terminal.scss +270 -0
  25. package/components/_all.scss +28 -0
  26. package/components/_app-drawer.scss +2 -2
  27. package/components/_breadcumb.scss +2 -0
  28. package/components/_buttons.scss +50 -37
  29. package/components/_card-body-wrapper.scss +2 -2
  30. package/components/_dashboard-header.scss +32 -0
  31. package/components/_direct-deploy.scss +69 -0
  32. package/components/_go-to-top.scss +1 -1
  33. package/components/_graph.scss +45 -0
  34. package/components/_image-upload.scss +5 -3
  35. package/components/_left-sidebar-menu.scss +121 -69
  36. package/components/_monaco-editor.scss +1 -1
  37. package/components/_navbar.scss +170 -10
  38. package/components/_overview-info.scss +3 -3
  39. package/components/_pagination.scss +8 -0
  40. package/components/_payment-card.scss +10 -1
  41. package/components/_preview-modal.scss +18 -5
  42. package/components/_pricing-table.scss +1 -1
  43. package/components/_progress-bar.scss +4 -4
  44. package/components/_subscription-card.scss +11 -4
  45. package/components/_table-of-content.scss +1 -1
  46. package/components/_tfa.scss +69 -0
  47. package/components/_transitions.scss +261 -0
  48. package/components/_wizard.scss +16 -3
  49. package/components/bbum/_all.scss +9 -0
  50. package/components/bbum/_card-team.scss +1 -1
  51. package/components/bbum/_information-center.scss +15 -1
  52. package/components/bbum/_sign-up-notification.scss +1 -1
  53. package/components/bbum/_single-post-preview.scss +2 -2
  54. package/components/bbum/_user-profile.scss +2 -3
  55. package/components/ui-builder/_ui-builder.scss +76 -1
  56. package/components/ui-builder/_vue-open-api.scss +104 -0
  57. package/layouts/_all.scss +2 -0
  58. package/layouts/_code-preview.scss +5 -2
  59. package/main.scss +6 -54
  60. package/package.json +4 -7
  61. package/plugins/caching.ts +243 -0
  62. package/plugins/theme.js +4 -0
  63. package/plugins/time-convert.js +49 -0
  64. package/plugins/vue-toaster.js +3 -0
  65. package/vue-components/v2/banner/Banner.vue +2 -2
  66. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  67. package/vue-components/v2/button/Button.vue +5 -0
  68. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  69. package/vue-components/v2/card/Card.vue +1 -0
  70. package/vue-components/v2/card/PaymentCards.vue +11 -2
  71. package/vue-components/v2/content/ContentTable.vue +12 -7
  72. package/vue-components/v2/editor/Editor.vue +43 -24
  73. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  74. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  75. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  76. package/vue-components/v2/form-fields/Input.vue +1 -1
  77. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  78. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  79. package/vue-components/v2/modal/Modal.vue +38 -4
  80. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  81. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  82. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  83. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  84. package/vue-components/v2/navbar/User.vue +229 -17
  85. package/vue-components/v2/notification/Notification.vue +101 -0
  86. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  87. package/vue-components/v2/pagination/Pagination.vue +16 -3
  88. package/vue-components/v2/preloader/Preloader.vue +5 -5
  89. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  90. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  91. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  92. package/vue-components/v2/tab/TabItem.vue +1 -1
  93. package/vue-components/v2/table/Table.vue +44 -8
  94. package/vue-components/v2/table/TableRow.vue +12 -2
  95. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  96. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  97. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  98. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  99. package/vue-components/v3/button/Button.vue +6 -1
  100. package/vue-components/v3/content/ContentHeader.vue +2 -1
  101. package/vue-components/v3/content/ContentTable.vue +20 -2
  102. package/vue-components/v3/editor/Editor.vue +42 -33
  103. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  104. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  105. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  106. package/vue-components/v3/form/Form.vue +63 -0
  107. package/vue-components/v3/form-fields/Input.vue +11 -10
  108. package/vue-components/v3/header/HeaderItem.vue +5 -0
  109. package/vue-components/v3/header/HeaderItems.vue +5 -0
  110. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  111. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  112. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  113. package/vue-components/v3/modal/Modal.vue +38 -6
  114. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  115. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  116. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  117. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  118. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  119. package/vue-components/v3/navbar/User.vue +242 -18
  120. package/vue-components/v3/notification/Notification.vue +98 -0
  121. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  122. package/vue-components/v3/pagination/Pagination.vue +16 -3
  123. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  124. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  125. package/vue-components/v3/tab/TabItem.vue +1 -1
  126. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  127. package/vue-components/v3/table/Table.vue +47 -13
  128. package/vue-components/v3/table/TableContainer.vue +34 -0
  129. package/vue-components/v3/table/TableRow.vue +64 -3
  130. package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
  131. package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
  132. package/vue-components/v3/table/table-cell/ObjectCell.vue +7 -2
  133. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  134. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -55,8 +55,10 @@
55
55
  top: -50px;
56
56
  width: calc(100% + 90px);
57
57
  height: 100%;
58
- background-color: $ac-color-value;
59
- opacity: 0.8;
58
+ background-color: $ac-white;
59
+
60
+ // remove opacity for fix cluster ui project
61
+ // opacity: 0.8;
60
62
  z-index: -1;
61
63
  }
62
64
 
@@ -138,7 +140,7 @@
138
140
  font-size: 14px;
139
141
  line-height: 100%;
140
142
  color: $ac-color-text;
141
- border-top: 1px solid #f5f7f9;
143
+ border-top: 1px solid $ac-white-light;
142
144
 
143
145
  span {
144
146
  img {
@@ -150,7 +152,7 @@
150
152
 
151
153
  &:last-child {
152
154
  a {
153
- border-bottom: 1px solid #f5f7f9;
155
+ border-bottom: 1px solid $ac-white-light;
154
156
  }
155
157
  }
156
158
  }
@@ -162,7 +164,7 @@
162
164
  width: 100%;
163
165
 
164
166
  .code-preview {
165
- background-color: #f5f7f9;
167
+ background-color: $ac-white-light;
166
168
  border-radius: 4px;
167
169
  display: flex;
168
170
 
@@ -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
+ }
@@ -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;
@@ -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
+ }
@@ -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 {
@@ -572,7 +573,7 @@
572
573
  .wizard-title,
573
574
  .wizard-title.has-line {
574
575
  span {
575
- background-color: $ac-border;
576
+ background-color: $ac-label-text;
576
577
  }
577
578
  }
578
579
 
@@ -651,7 +652,7 @@ label {
651
652
  margin-top: -0.5px;
652
653
  width: 100%;
653
654
  height: 1px;
654
- background-color: $ac-input-bg-color;
655
+ background-color: $ac-blue-light;
655
656
  z-index: -1;
656
657
  }
657
658
  }
@@ -731,7 +732,7 @@ h5 {
731
732
  .card-checkbox {
732
733
  width: 358px;
733
734
  height: 115px;
734
- border: 1px solid $ac-border;
735
+ border: 1px solid $ac-label-text;
735
736
  }
736
737
 
737
738
  // checkbox card end
@@ -823,6 +824,18 @@ h5 {
823
824
  }
824
825
 
825
826
  // inline input end
827
+
828
+ // dark theme start
829
+ .is-dark-theme {
830
+ h6.wizard-title.has-line:after {
831
+ --ac-blue-light: $ac-color-value;
832
+ }
833
+
834
+ .ac-certificate-info {
835
+ --ac-bg-light-gray: var(--dark-bg-light);
836
+ }
837
+ }
838
+ // dark theme end
826
839
  /****************************************
827
840
  Responsive Classes
828
841
  *****************************************/
@@ -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";
@@ -7,7 +7,7 @@
7
7
  0.03
8
8
  );
9
9
  border-radius: 4px;
10
- overflow: hidden;
10
+ // overflow: hidden;
11
11
  transition: 0.3s ease-in-out;
12
12
 
13
13
  &:hover {
@@ -133,7 +133,7 @@
133
133
  }
134
134
 
135
135
  .block-list {
136
- background-color: $ac-input-bg-color;
136
+ background-color: $ac-blue-light;
137
137
  padding: 7px;
138
138
  border-radius: 4px;
139
139
 
@@ -174,6 +174,20 @@
174
174
  top: 140px;
175
175
  }
176
176
  }
177
+
178
+ // dark theme start
179
+ .is-dark-theme {
180
+ .information-center {
181
+ .information-center-inner {
182
+ .info-body {
183
+ .block-list {
184
+ background-color: var(--dark-bg-light);
185
+ }
186
+ }
187
+ }
188
+ }
189
+ }
190
+ // dark theme end
177
191
  // Extra small devices (portrait phones, less than 576px)
178
192
  @media (max-width: 575.98px) {
179
193
  .information-center.width-300 {
@@ -68,7 +68,7 @@
68
68
  margin-bottom: 10px;
69
69
 
70
70
  a {
71
- color: #003466;
71
+ color: $ac-color-heading;
72
72
  text-decoration: underline;
73
73
  }
74
74
  }
@@ -135,9 +135,9 @@
135
135
  left: 20px;
136
136
 
137
137
  h2 {
138
- font-size: $ac-size-2;
138
+ font-size: $size-2;
139
139
  margin-bottom: 25px;
140
- color: #003466;
140
+ color: $ac-color-heading;
141
141
  }
142
142
  }
143
143
  }
@@ -10,7 +10,6 @@
10
10
  background-color: $ac-white;
11
11
  border-radius: 4px;
12
12
  overflow: hidden;
13
- padding: 10px;
14
13
  position: relative;
15
14
  z-index: 1;
16
15
  margin-bottom: 10px;
@@ -69,7 +68,7 @@
69
68
  font-size: 14px;
70
69
  color: $ac-color-text;
71
70
  line-height: 160%;
72
- margin-bottom: 20px;
71
+ margin-bottom: 10px;
73
72
  }
74
73
 
75
74
  .social-links {
@@ -103,7 +102,7 @@
103
102
  }
104
103
 
105
104
  img {
106
- max-width: 18px;
105
+ max-width: 15px;
107
106
  margin-right: 10px;
108
107
  }
109
108
  }