@appscode/design-system 1.0.43-alpha.9 → 1.0.43-alpha.93

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 (80) hide show
  1. package/base/utilities/_default.scss +281 -20
  2. package/base/utilities/_derived-variables.scss +0 -13
  3. package/base/utilities/_initial-variables.scss +78 -56
  4. package/base/utilities/_mixin.scss +10 -17
  5. package/base/utilities/_typography.scss +23 -7
  6. package/base/utilities/dark-theme.scss +25 -0
  7. package/components/_ac-accordion.scss +1 -0
  8. package/components/_ac-alert-box.scss +18 -10
  9. package/components/_ac-card.scss +55 -20
  10. package/components/_ac-code-highlight.scss +7 -1
  11. package/components/_ac-content-layout.scss +4 -4
  12. package/components/_ac-drag.scss +6 -6
  13. package/components/_ac-input.scss +80 -39
  14. package/components/_ac-modal.scss +5 -4
  15. package/components/_ac-multi-select.scss +196 -14
  16. package/components/_ac-options.scss +30 -16
  17. package/components/_ac-select-box.scss +15 -5
  18. package/components/_ac-table.scss +42 -33
  19. package/components/_ac-tabs.scss +72 -23
  20. package/components/_ac-tags.scss +2 -2
  21. package/components/_ac-terminal.scss +248 -0
  22. package/components/_app-drawer.scss +6 -6
  23. package/components/_breadcumb.scss +7 -2
  24. package/components/_buttons.scss +56 -27
  25. package/components/_card-body-wrapper.scss +3 -3
  26. package/components/_dashboard-header.scss +1 -1
  27. package/components/_direct-deploy.scss +69 -0
  28. package/components/_go-to-top.scss +1 -1
  29. package/components/_graph.scss +45 -0
  30. package/components/_image-upload.scss +6 -4
  31. package/components/_left-sidebar-menu.scss +200 -46
  32. package/components/_monaco-editor.scss +1 -1
  33. package/components/_navbar.scss +103 -26
  34. package/components/_overview-info.scss +4 -4
  35. package/components/_overview-page.scss +1 -2
  36. package/components/_pagination.scss +10 -2
  37. package/components/_payment-card.scss +28 -12
  38. package/components/_preview-modal.scss +8 -8
  39. package/components/_pricing-table.scss +1 -1
  40. package/components/_progress-bar.scss +5 -5
  41. package/components/_subscription-card.scss +15 -8
  42. package/components/_table-of-content.scss +1 -1
  43. package/components/_tfa.scss +69 -0
  44. package/components/_widget-menu.scss +9 -9
  45. package/components/_wizard.scss +32 -20
  46. package/components/ac-toaster/_ac-toasted.scss +5 -5
  47. package/components/bbum/_card-team.scss +18 -10
  48. package/components/bbum/_information-center.scss +19 -5
  49. package/components/bbum/_mobile-desktop.scss +6 -6
  50. package/components/bbum/_post.scss +5 -4
  51. package/components/bbum/_sign-up-notification.scss +6 -6
  52. package/components/bbum/_single-post-preview.scss +9 -9
  53. package/components/bbum/_user-profile.scss +97 -90
  54. package/components/ui-builder/_ui-builder.scss +29 -10
  55. package/components/ui-builder/_vue-open-api.scss +98 -0
  56. package/layouts/_404.scss +2 -1
  57. package/layouts/_code-preview.scss +14 -7
  58. package/main.scss +4 -0
  59. package/package.json +2 -7
  60. package/plugins/theme.js +142 -0
  61. package/vue-components/v2/card/PaymentCards.vue +11 -2
  62. package/vue-components/v2/editor/Editor.vue +37 -17
  63. package/vue-components/v2/modal/Modal.vue +10 -1
  64. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  65. package/vue-components/v2/navbar/ThemeMode.vue +120 -0
  66. package/vue-components/v2/preloader/Preloader.vue +5 -5
  67. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  68. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  69. package/vue-components/v2/table/TableRow.vue +1 -1
  70. package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
  71. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  72. package/vue-components/v3/dropdown/DropdownMenu.vue +1 -1
  73. package/vue-components/v3/editor/Editor.vue +39 -19
  74. package/vue-components/v3/modal/Modal.vue +10 -1
  75. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  76. package/vue-components/v3/navbar/ThemeMode.vue +128 -0
  77. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  78. package/vue-components/v3/table/TableRow.vue +1 -1
  79. package/vue-components/v3/table/table-cell/CellValue.vue +9 -0
  80. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
@@ -1,35 +1,44 @@
1
1
  .tabs {
2
2
  &.ac-tabs {
3
- &.is-line{
4
- ul {
3
+ ul {
5
4
  border-bottom-color: $ac-white-light;
6
- li {
7
- &.is-active {
8
- a {
9
- font-weight: 500;
10
- border-bottom-color: $ac-primary;
11
- border-color: $ac-primary !important;
12
- border-width: 2px;
5
+ }
6
+
7
+ &.is-line {
8
+ ul {
9
+ border-bottom-color: $ac-white-light;
10
+
11
+ li {
12
+ &.is-active {
13
+ a {
14
+ font-weight: 500;
15
+ border-bottom-color: $ac-primary;
16
+ border-color: $ac-primary !important;
17
+ border-width: 2px;
18
+ }
13
19
  }
14
- }
15
- a {
16
- text-transform: uppercase;
17
- font-weight: 400;
18
- color: $ac-color-heading;
19
- font-size: $font-size-small;
20
- padding: 6px 20px;
21
- &:hover {
22
- border-bottom-color: $ac-primary;
20
+
21
+ a {
22
+ text-transform: uppercase;
23
+ font-weight: 400;
24
+ color: $ac-color-heading;
25
+ font-size: $font-size-small;
26
+ padding: 6px 20px;
27
+
28
+ &:hover {
29
+ border-bottom-color: $ac-primary;
30
+ }
23
31
  }
24
32
  }
25
33
  }
26
34
  }
27
- }
35
+
28
36
  &.is-boxed {
29
37
  font-size: 14px;
30
38
 
31
39
  a {
32
40
  padding: 8px 20px;
41
+ color: $ac-color-value;
33
42
 
34
43
  &:hover {
35
44
  border-bottom-color: transparent;
@@ -84,6 +93,7 @@
84
93
  border-bottom: none;
85
94
  margin-bottom: -2px;
86
95
  font-size: $font-size-small;
96
+ color: $ac-color-value;
87
97
  }
88
98
  }
89
99
  }
@@ -95,7 +105,7 @@
95
105
  li {
96
106
  &.is-active {
97
107
  a {
98
- background-color: #f5f7f9;
108
+ background-color: $ac-white-light;
99
109
  }
100
110
  }
101
111
 
@@ -110,7 +120,7 @@
110
120
 
111
121
  &.is-toggle {
112
122
  ul {
113
- border: 1px solid $ac-border;
123
+ border: 1px solid $ac-label-text;
114
124
  border-radius: 4px;
115
125
  padding: 4px;
116
126
  flex-grow: inherit;
@@ -134,6 +144,7 @@
134
144
  padding: 8px 25px;
135
145
  line-height: 1;
136
146
  border-radius: 4px;
147
+
137
148
  &:hover {
138
149
  background-color: inherit;
139
150
  }
@@ -170,7 +181,7 @@
170
181
 
171
182
  &.is-borderless {
172
183
  border: 1px solid transparent;
173
- background-color: #f5f7f9;
184
+ background-color: $ac-white-light;
174
185
  border-radius: 4px 4px 4px 4px;
175
186
  }
176
187
  }
@@ -187,7 +198,7 @@
187
198
  li {
188
199
  &.is-active {
189
200
  a {
190
- background-color: #f1f1f1;
201
+ background-color: $ac-white-lighter;
191
202
  color: $ac-primary;
192
203
  }
193
204
  }
@@ -197,15 +208,53 @@
197
208
  }
198
209
  }
199
210
  }
211
+
200
212
  .tabs li.is-active a {
201
213
  color: $ac-primary;
202
214
  }
215
+
203
216
  .no-data-available {
204
217
  img {
205
218
  width: 250px;
206
219
  }
207
220
  }
208
221
 
222
+ .ac-system-body.bb-user-management {
223
+ .tabs.ac-tabs.is-line {
224
+ margin-left: -20px;
225
+ position: sticky;
226
+ top: 50px;
227
+ z-index: 99;
228
+ background: $ac-white;
229
+ }
230
+ }
231
+
232
+ // dark theme
233
+ .is-dark-theme {
234
+ .tabs {
235
+ &.is-toggle {
236
+ a {
237
+ &:hover {
238
+ background-color: $dark-bg;
239
+ }
240
+ }
241
+ }
242
+ a {
243
+ border-bottom: 1px solid $ac-white-lighter;
244
+ color: $ac-full-white;
245
+ }
246
+ &.ac-tabs.is-line {
247
+ ul {
248
+ li.is-active {
249
+ a {
250
+ color: $ac-color-text;
251
+ }
252
+ }
253
+ }
254
+ }
255
+ }
256
+ }
257
+
209
258
  /****************************************
210
259
  Responsive Classes
211
260
  *****************************************/
@@ -3,13 +3,13 @@
3
3
  align-items: center;
4
4
 
5
5
  li {
6
- background: $ac-grey-lightest;
6
+ background-color: $ac-gray-lightest;
7
7
  list-style: none;
8
8
  padding: 2px 10px;
9
9
  border-radius: 4px;
10
10
  font-size: 12px;
11
11
  line-height: 1;
12
- border: 1px solid #333;
12
+ border: 1px solid $ac-color-value;
13
13
  margin-right: 5px;
14
14
 
15
15
  &:last-child {
@@ -0,0 +1,248 @@
1
+ .ac-terminal {
2
+ position: fixed;
3
+ width: calc(100% - 270px);
4
+ bottom: 0;
5
+ // background-color: #3a3a3a;
6
+ background-color: $ac-white;
7
+ color: $ac-white;
8
+ font-size: 13px;
9
+ height: 320px;
10
+ z-index: 999;
11
+ transition: 0.3s ease-in-out;
12
+ &.is-collapsed {
13
+ height: 40px !important;
14
+ bottom: 0px;
15
+ .terminal-setting,
16
+ .terminal-body {
17
+ opacity: 0;
18
+ visibility: hidden;
19
+ }
20
+ }
21
+ .resize-handler {
22
+ width: 100%;
23
+ position: absolute;
24
+ background: transparent;
25
+ z-index: 9;
26
+ cursor: row-resize;
27
+ top: -15px;
28
+ &:hover {
29
+ border-bottom: 3px solid $ac-white-light;
30
+ }
31
+ }
32
+ .terminal-header {
33
+ border-top: 1px solid $ac-white-lighter;
34
+ box-shadow: 1px -2px 5px 1px rgba(0, 0, 0, 0.08%);
35
+ .tabs {
36
+ padding: 0 20px 0 20px;
37
+ background-color: $ac-white-lighter;
38
+ overflow: inherit;
39
+ height: 40px;
40
+ ul {
41
+ border-bottom: none;
42
+ padding-left: 0;
43
+ max-width: 1340px;
44
+ overflow-x: auto;
45
+ overflow-y: hidden;
46
+ li {
47
+ a {
48
+ margin-bottom: 0 !important;
49
+ }
50
+ }
51
+ &::-webkit-scrollbar {
52
+ border-radius: 50px;
53
+ height: 3px;
54
+ }
55
+
56
+ &::-webkit-scrollbar:hover {
57
+ height: 7px;
58
+ }
59
+
60
+ &::-webkit-scrollbar-thumb {
61
+ background-color: $ac-gray-light;
62
+ border-radius: 50px;
63
+ height: 2px !important;
64
+ }
65
+
66
+ &::-webkit-scrollbar-thumb:hover {
67
+ background-color: $ac-gray-light;
68
+ }
69
+
70
+ &:hover::-webkit-scrollbar-corner {
71
+ height: 40px;
72
+ }
73
+ .is-active {
74
+ box-shadow: none !important;
75
+ margin-right: 0 !important;
76
+ &:after {
77
+ height: 2px;
78
+ }
79
+ a {
80
+ background-color: $ac-white;
81
+ }
82
+ }
83
+ li:not(.is-active) {
84
+ margin-right: -1px;
85
+ border-right: 1px solid $ac-white-lighter;
86
+ }
87
+ li {
88
+ a {
89
+ margin-bottom: 0px;
90
+ font-size: 13px;
91
+ border-radius: 0;
92
+ padding: 5px 10px 5px 20px;
93
+ border: none;
94
+ height: 40px;
95
+ .name-of-tab {
96
+ width: 120px;
97
+ overflow: hidden;
98
+ }
99
+ .terminal-icon {
100
+ img {
101
+ width: 15px;
102
+ margin-right: 10px;
103
+ margin-top: 5px;
104
+ }
105
+ }
106
+
107
+ .button {
108
+ img {
109
+ width: 10px;
110
+ }
111
+ }
112
+ }
113
+ }
114
+ }
115
+ .options-items {
116
+ top: 15px;
117
+ left: 40px;
118
+ .items-inner {
119
+ border: none;
120
+ li {
121
+ border: none;
122
+ border-right: none !important;
123
+ border-bottom: 1px solid $ac-white-lighter;
124
+ width: 100%;
125
+ &:last-child {
126
+ border-bottom: none;
127
+ }
128
+ a {
129
+ font-size: 13px;
130
+ padding: 10px 20px;
131
+ &:hover {
132
+ color: $ac-primary !important;
133
+ }
134
+ }
135
+ }
136
+ }
137
+ }
138
+
139
+ .right-control {
140
+ .button {
141
+ .fa {
142
+ font-size: 20px;
143
+ }
144
+ img {
145
+ width: 11px;
146
+ }
147
+ }
148
+ }
149
+ }
150
+ }
151
+ .terminal-setting {
152
+ background-color: var(--dark-bg);
153
+ padding: 5px 20px;
154
+ border-bottom: 1px solid $ac-white-light;
155
+
156
+ .left-content {
157
+ .ac-select-box-wrapper {
158
+ margin-right: 10px;
159
+ .multi-select-wrapper {
160
+ min-width: 200px;
161
+ }
162
+ .multiselect .multiselect__tags .multiselect__input,
163
+ .multiselect .multiselect__tags .multiselect__single {
164
+ background-color: #3b3030;
165
+ }
166
+ }
167
+ }
168
+
169
+ .right-content {
170
+ .status-message {
171
+ &.is-success {
172
+ color: #27b064;
173
+ }
174
+ &.is-failed {
175
+ color: $ac-red;
176
+ }
177
+ }
178
+ }
179
+ }
180
+ .terminal-body {
181
+ p {
182
+ font-family: Fira Code;
183
+ .code-static {
184
+ color: #0ff05c;
185
+ font-weight: 500;
186
+ }
187
+
188
+ .code-input {
189
+ color: #acd9ff;
190
+ }
191
+ }
192
+ }
193
+ .button {
194
+ &.is-transparent {
195
+ &:hover {
196
+ background-color: $ac-white-light;
197
+ }
198
+ }
199
+ }
200
+ .multiselect.multiselect--active {
201
+ .multiselect__tags {
202
+ border: 1px solid $ac-white !important;
203
+ .multiselect__input {
204
+ color: $ac-white !important;
205
+ }
206
+ }
207
+ }
208
+ .multiselect .multiselect__tags {
209
+ background-color: $ac-color-text;
210
+ border: 1px solid $ac-color-value;
211
+ span {
212
+ color: $ac-white;
213
+ }
214
+ }
215
+ }
216
+
217
+ // dark theme start
218
+ .is-dark-theme {
219
+ // ac-terminal
220
+ .ac-terminal {
221
+ .terminal-setting {
222
+ --ac-color-value: var(--dark-bg-light);
223
+
224
+ .left-content .ac-select-box-wrapper .multiselect .multiselect__tags {
225
+ .multiselect__input {
226
+ background-color: var(--dark-bg-light);
227
+ color: var(--ac-white-text);
228
+ }
229
+
230
+ .multiselect__single {
231
+ background-color: var(--dark-bg-light);
232
+ color: var(--ac-white-text);
233
+ }
234
+ }
235
+ }
236
+
237
+ .multiselect {
238
+ .multiselect__tags {
239
+ background-color: transparent;
240
+
241
+ span {
242
+ color: var(--ac-white-text);
243
+ }
244
+ }
245
+ }
246
+ }
247
+ }
248
+ // dark theme end
@@ -9,7 +9,7 @@
9
9
  user-select: none;
10
10
 
11
11
  &:hover {
12
- background-color: #bcd8eb;
12
+ background-color: rgba(255, 255, 255, 0.7);
13
13
  cursor: pointer;
14
14
  }
15
15
 
@@ -29,7 +29,7 @@
29
29
  font-size: 13px;
30
30
  }
31
31
 
32
- background: #edf0f5;
32
+ background-color: #edf0f5;
33
33
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.16);
34
34
  min-width: 280px;
35
35
  }
@@ -50,7 +50,7 @@
50
50
  .media-content {
51
51
  .content {
52
52
  p {
53
- color: #fff;
53
+ color: $ac-white;
54
54
  }
55
55
  }
56
56
  }
@@ -93,14 +93,14 @@
93
93
  }
94
94
 
95
95
  &:hover {
96
- >a {
96
+ > a {
97
97
  background-color: $ac-white;
98
98
  }
99
99
  }
100
100
 
101
101
  &:first-child {
102
102
  &:hover {
103
- >a {
103
+ > a {
104
104
  border-radius: 4px 4px 0 0;
105
105
  }
106
106
  }
@@ -108,7 +108,7 @@
108
108
 
109
109
  &:last-child {
110
110
  &:hover {
111
- >a {
111
+ > a {
112
112
  border-radius: 0 0 4px 4px;
113
113
  }
114
114
  }
@@ -5,15 +5,20 @@
5
5
  position: sticky;
6
6
  top: 50px;
7
7
  height: 50px;
8
- background: $ac-white;
8
+ background-color: $ac-white;
9
9
  z-index: 998;
10
+ display: flex;
11
+ align-items: center;
10
12
  }
11
13
 
12
14
  .breadcrumb {
13
15
  a {
14
- color: hsla(0, 0, var(--ac-lightness), 0.7);
16
+ color: $ac-color-value;
15
17
  font-size: 13px;
16
18
  padding: 0px 3px;
19
+ &:hover {
20
+ color: $ac-color-text;
21
+ }
17
22
  }
18
23
 
19
24
  li.is-active {
@@ -1,15 +1,15 @@
1
1
  .button {
2
- transition: $ac-speed ease-in-out;
2
+ transition: 86ms ease-in-out;
3
3
 
4
4
  // ac-button
5
5
  &.ac-button {
6
6
  border-color: $ac-primary;
7
- border-radius: $ac-radius;
7
+ border-radius: 4px;
8
8
  font-size: 14px;
9
9
  font-family: $ac-family-paragraph;
10
10
  letter-spacing: 0.2px;
11
11
  color: $ac-primary;
12
- font-weight: $ac-weight-medium;
12
+ font-weight: 500;
13
13
  height: 36px;
14
14
  padding-left: 25px;
15
15
  padding-right: 25px;
@@ -42,7 +42,7 @@
42
42
 
43
43
  &.is-primary {
44
44
  color: $ac-primary;
45
- background: transparent;
45
+ background-color: transparent;
46
46
 
47
47
  &:hover {
48
48
  background-color: unset;
@@ -56,7 +56,7 @@
56
56
 
57
57
  .ac-icon {
58
58
  margin-left: 25px;
59
- background: $ac-white;
59
+ background-color: $ac-white;
60
60
  color: $ac-primary;
61
61
  padding: 2px 6px;
62
62
  border-radius: 4px;
@@ -130,7 +130,7 @@
130
130
 
131
131
  &.is-gray {
132
132
  background-color: $ac-white-light;
133
- color: #54657e;
133
+ color: $ac-gray-lightest;
134
134
  border-color: transparent;
135
135
 
136
136
  img {
@@ -139,37 +139,37 @@
139
139
 
140
140
  i.fa {
141
141
  font-size: 18px;
142
- color: #54657e;
142
+ color: $ac-gray-lightest;
143
143
  }
144
144
 
145
145
  &:hover {
146
- background-color: $ac-grey-lightest;
146
+ background-color: $ac-gray-lightest;
147
147
  }
148
148
  }
149
149
 
150
150
  &.is-outlined-gray {
151
- border: 1px solid #cbe3f8;
151
+ border: 1px solid $ac-white-light;
152
152
  font-size: 15px;
153
153
  }
154
154
 
155
155
  &.is-transparent {
156
156
  background-color: transparent;
157
- color: #666;
157
+ color: $ac-gray-darker;
158
158
 
159
159
  &:hover {
160
- background-color: #f1f1f1;
161
- color: #000;
160
+ background-color: $ac-white-lighter;
161
+ color: $ac-black;
162
162
  }
163
163
 
164
164
  &:focus {
165
- background-color: #f1f1f1;
166
- color: #000;
165
+ background-color: $ac-white-lighter;
166
+ color: $ac-black;
167
167
  }
168
168
  }
169
169
 
170
170
  &.transparent-bg {
171
171
  background-color: transparent;
172
- border: 1px solid $ac-border;
172
+ border: 1px solid $ac-label-text;
173
173
 
174
174
  img {
175
175
  &:hover {
@@ -210,7 +210,8 @@
210
210
  border: none;
211
211
  font-size: 14px;
212
212
  font-weight: 500;
213
- color: $ac-border-hover;
213
+ background-color: transparent;
214
+ color: $ac-gray-lightest;
214
215
 
215
216
  &.is-primary {
216
217
  background-color: transparent;
@@ -253,7 +254,7 @@
253
254
  border: none;
254
255
 
255
256
  &:hover {
256
- background-color: darken($ac-white-light, 9);
257
+ background-color: darken(#e7e7e7, 9);
257
258
  }
258
259
  }
259
260
 
@@ -263,7 +264,7 @@
263
264
  color: $ac-white;
264
265
 
265
266
  &:hover {
266
- background-color: darken($ac-gray-dark, 9);
267
+ background-color: $ac-color-value;
267
268
  }
268
269
  }
269
270
 
@@ -470,8 +471,8 @@
470
471
 
471
472
  // counter button start
472
473
  .ac-counter-button {
473
- background: $ac-input-bg-color;
474
- border: 1px solid $ac-border;
474
+ background-color: transparent;
475
+ border: 1px solid $ac-label-text;
475
476
  border-radius: 4px;
476
477
  height: 46px;
477
478
  overflow: hidden;
@@ -491,7 +492,8 @@
491
492
  padding: 10px;
492
493
  font-size: 15px;
493
494
  font-weight: 500;
494
- background-color: $ac-input-bg-color;
495
+ color: $ac-color-value;
496
+ background-color: transparent;
495
497
  width: 100%;
496
498
  -moz-appearance: textfield;
497
499
 
@@ -517,13 +519,13 @@
517
519
  .ac-counter-arrow-wrapper {
518
520
  height: 100%;
519
521
  color: $ac-color-text;
520
- border-left: 1px solid $ac-border;
522
+ border-left: 1px solid $ac-label-text;
521
523
 
522
524
  .ac-counter-arrow {
523
- background: transparent;
525
+ background-color: transparent;
524
526
  border: none;
525
527
  cursor: pointer;
526
- color: $ac-border;
528
+ color: $ac-label-text;
527
529
  height: 23px;
528
530
 
529
531
  &:hover {
@@ -531,7 +533,7 @@
531
533
  }
532
534
 
533
535
  &:first-child {
534
- border-bottom: 1px solid $ac-border;
536
+ border-bottom: 1px solid $ac-label-text;
535
537
  }
536
538
  }
537
539
  }
@@ -558,7 +560,7 @@
558
560
  }
559
561
 
560
562
  .up-down-button {
561
- background: $ac-white-light;
563
+ background-color: $ac-white-light;
562
564
  border: none;
563
565
  display: block;
564
566
  cursor: pointer;
@@ -590,7 +592,7 @@
590
592
  width: 5px;
591
593
  height: 5px;
592
594
  border-radius: 50%;
593
- background: #333;
595
+ background-color: $ac-color-value;
594
596
  margin-bottom: 3px;
595
597
 
596
598
  &:last-child {
@@ -600,6 +602,33 @@
600
602
  }
601
603
  }
602
604
 
605
+ // dark theme start
606
+ .is-dark-theme {
607
+ .button.ac-button.is-primary.is-light {
608
+ background-color: $ac-primary;
609
+ color: $ac-white;
610
+ &:hover {
611
+ opacity: 0.8;
612
+ }
613
+ }
614
+ .button.ac-button.is-danger.is-light {
615
+ background-color: $ac-danger;
616
+ color: $ac-white;
617
+ &:hover {
618
+ opacity: 0.8;
619
+ }
620
+ }
621
+ .button.ac-button {
622
+ --ac-white: #ffffff;
623
+ &.is-white {
624
+ --ac-white: #2e323c;
625
+ }
626
+ }
627
+ .button.ac-button.is-text{
628
+ background-color: transparent;
629
+ }
630
+ }
631
+ // dark theme end
603
632
  /****************************************
604
633
  Responsive Classes
605
634
  *****************************************/