@appscode/design-system 1.0.43-alpha.20 → 1.0.43-alpha.201

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 (127) hide show
  1. package/base/utilities/_all.scss +6 -0
  2. package/base/utilities/_default.scss +298 -57
  3. package/base/utilities/_derived-variables.scss +0 -1
  4. package/base/utilities/_initial-variables.scss +16 -10
  5. package/base/utilities/_mixin.scss +1 -17
  6. package/base/utilities/_typography.scss +12 -2
  7. package/base/utilities/dark-theme.scss +9 -147
  8. package/components/_ac-accordion.scss +8 -4
  9. package/components/_ac-alert-box.scss +13 -5
  10. package/components/_ac-card.scss +33 -6
  11. package/components/_ac-code-highlight.scss +5 -1
  12. package/components/_ac-content-layout.scss +2 -2
  13. package/components/_ac-input.scss +63 -23
  14. package/components/_ac-modal.scss +1 -1
  15. package/components/_ac-multi-select.scss +187 -5
  16. package/components/_ac-options.scss +24 -9
  17. package/components/_ac-select-box.scss +13 -3
  18. package/components/_ac-table.scss +7 -5
  19. package/components/_ac-tabs.scss +33 -5
  20. package/components/_ac-terminal.scss +270 -0
  21. package/components/_all.scss +35 -0
  22. package/components/_app-drawer.scss +2 -2
  23. package/components/_breadcumb.scss +2 -0
  24. package/components/_buttons.scss +46 -37
  25. package/components/_card-body-wrapper.scss +2 -2
  26. package/components/_dashboard-header.scss +32 -0
  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 +5 -3
  31. package/components/_left-sidebar-menu.scss +115 -64
  32. package/components/_monaco-editor.scss +1 -1
  33. package/components/_navbar.scss +125 -7
  34. package/components/_overview-info.scss +3 -3
  35. package/components/_pagination.scss +8 -0
  36. package/components/_payment-card.scss +10 -1
  37. package/components/_preview-modal.scss +18 -5
  38. package/components/_pricing-table.scss +1 -1
  39. package/components/_progress-bar.scss +4 -4
  40. package/components/_subscription-card.scss +11 -4
  41. package/components/_table-of-content.scss +1 -1
  42. package/components/_tfa.scss +69 -0
  43. package/components/_transitions.scss +261 -0
  44. package/components/_wizard.scss +16 -3
  45. package/components/bbum/_card-team.scss +1 -1
  46. package/components/bbum/_information-center.scss +15 -1
  47. package/components/bbum/_sign-up-notification.scss +1 -1
  48. package/components/bbum/_single-post-preview.scss +1 -1
  49. package/components/bbum/_user-profile.scss +2 -3
  50. package/components/ui-builder/_ui-builder.scss +43 -3
  51. package/components/ui-builder/_vue-open-api.scss +104 -0
  52. package/layouts/_all.scss +2 -0
  53. package/layouts/_code-preview.scss +5 -2
  54. package/main.scss +4 -54
  55. package/package.json +2 -7
  56. package/plugins/theme.js +4 -0
  57. package/plugins/time-convert.js +49 -0
  58. package/plugins/vue-toaster.js +3 -0
  59. package/vue-components/v2/banner/Banner.vue +2 -2
  60. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  61. package/vue-components/v2/button/Button.vue +5 -0
  62. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  63. package/vue-components/v2/card/Card.vue +1 -0
  64. package/vue-components/v2/card/PaymentCards.vue +11 -2
  65. package/vue-components/v2/content/ContentTable.vue +12 -7
  66. package/vue-components/v2/editor/Editor.vue +38 -5
  67. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  68. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  69. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  70. package/vue-components/v2/form-fields/Input.vue +1 -1
  71. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  72. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  73. package/vue-components/v2/modal/Modal.vue +38 -4
  74. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  75. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  76. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  77. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  78. package/vue-components/v2/navbar/User.vue +229 -17
  79. package/vue-components/v2/notification/Notification.vue +101 -0
  80. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  81. package/vue-components/v2/pagination/Pagination.vue +16 -3
  82. package/vue-components/v2/preloader/Preloader.vue +5 -5
  83. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  84. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  85. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  86. package/vue-components/v2/tab/TabItem.vue +1 -1
  87. package/vue-components/v2/table/Table.vue +44 -8
  88. package/vue-components/v2/table/TableRow.vue +12 -2
  89. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  90. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  91. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  92. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  93. package/vue-components/v3/button/Button.vue +5 -0
  94. package/vue-components/v3/content/ContentTable.vue +5 -0
  95. package/vue-components/v3/editor/Editor.vue +36 -13
  96. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  97. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  98. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  99. package/vue-components/v3/form/Form.vue +63 -0
  100. package/vue-components/v3/form-fields/Input.vue +11 -10
  101. package/vue-components/v3/header/HeaderItem.vue +5 -0
  102. package/vue-components/v3/header/HeaderItems.vue +5 -0
  103. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  104. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  105. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  106. package/vue-components/v3/modal/Modal.vue +35 -3
  107. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  108. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  109. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  110. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  111. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  112. package/vue-components/v3/navbar/User.vue +242 -18
  113. package/vue-components/v3/notification/Notification.vue +98 -0
  114. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  115. package/vue-components/v3/pagination/Pagination.vue +16 -3
  116. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  117. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  118. package/vue-components/v3/tab/TabItem.vue +1 -1
  119. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  120. package/vue-components/v3/table/Table.vue +35 -12
  121. package/vue-components/v3/table/TableContainer.vue +34 -0
  122. package/vue-components/v3/table/TableRow.vue +16 -2
  123. package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
  124. package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
  125. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  126. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  127. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -2,162 +2,24 @@ $dark-bg: var(--dark-bg);
2
2
  $dark-bg-light: var(--dark-bg-light);
3
3
 
4
4
  .is-dark-theme {
5
+ --ac-bg: var(--dark-bg);
5
6
  --ac-white: #21272e;
6
- --ac-black: #b4c0cc;
7
- --ac-text-heading: #b4c0cc;
7
+ --ac-link-black: #6969c0;
8
+ --ac-black: var(--ac-white-text);
9
+ --ac-text-heading: var(--ac-white-text);
8
10
  --ac-text: #98a6b4;
11
+ --ac-blue-light: #2e323c;
12
+ --ac-gray-darker: #a6a6a6;
9
13
  --ac-gray-light: #424242;
10
14
  --ac-gray-lightest: #777777;
11
15
  --ac-white-light: #3f3f3f;
12
16
  --ac-white-lighter: #2e323c;
13
- --ac-border: #404040;
14
- --ac-bg-light-gray: #2e323c;
17
+ --ac-label-text: #8c8c8c;
18
+ --ac-bg-light-gray: #252830;
19
+
15
20
  --ac-color-value: hsl(
16
21
  var(--font-hsl-hue),
17
22
  var(--font-hsl-saturation),
18
23
  calc(var(--font-hsl-lightness) + 60%)
19
24
  );
20
-
21
- body {
22
- background-color: $dark-bg;
23
-
24
- .ac-navbar-area {
25
- background-color: var(--dark-bg-light);
26
- --ac-white: #ffffff;
27
- --ac-white-lighter: #f1f1f1;
28
-
29
- .ac-navbar {
30
- .search-item {
31
- background-color: rgba(0, 0, 0, 0.2);
32
- }
33
-
34
- .ac-navbar-menu {
35
- .ac-menu-item {
36
- .quick-access {
37
- --ac-white: var(--dark-bg-light);
38
- }
39
-
40
- .ac-menu-content {
41
- background-color: var(--dark-bg-light);
42
-
43
- &::after {
44
- --ac-white: var(--dark-bg-light);
45
- }
46
-
47
- .user-profile-wrapper {
48
- --ac-white: var(--dark-bg-light);
49
- }
50
- }
51
- }
52
- }
53
- }
54
- }
55
-
56
- .ac-options {
57
- .options-items {
58
- --ac-white: var(--dark-bg-light);
59
- }
60
- }
61
-
62
- h6.wizard-title.has-line:after {
63
- --ac-input-bg-color: #555;
64
- }
65
-
66
- .ac-payment-card,
67
- .ac-single-card,
68
- .button.ac-button,
69
- .option-dots {
70
- --ac-white: #b4c0cc;
71
- }
72
-
73
- .tabs {
74
- a {
75
- border-bottom: 1px solid $ac-white-lighter;
76
- }
77
- }
78
-
79
- .nested-body {
80
- code {
81
- background-color: var(--dark-bg-light);
82
- }
83
- }
84
-
85
- .ac-single-input {
86
- input,
87
- .file-input,
88
- .ac-dropdown-content {
89
- background-color: transparent;
90
- }
91
-
92
- label {
93
- color: #999999;
94
- }
95
- }
96
-
97
- .ac-single-card {
98
- background-color: var(--dark-bg-light);
99
-
100
- &.style-three {
101
- background-color: var(--dark-bg-light);
102
- }
103
-
104
- .ac-card-body {
105
- p {
106
- color: #999999;
107
- }
108
- }
109
- }
110
-
111
- .information-center {
112
- .information-center-inner {
113
- .info-body {
114
- .block-list {
115
- background-color: var(--dark-bg-light);
116
- }
117
- }
118
- }
119
- }
120
-
121
- .single-subscription-card {
122
- background-color: var(--dark-bg-light);
123
- }
124
-
125
- .pricing-card-wrpper {
126
- &.offer-card {
127
- background-color: var(--dark-bg-light);
128
- }
129
-
130
- .ac-card {
131
- background-color: var(--dark-bg-light);
132
- }
133
- }
134
-
135
- .ac-certificate-info {
136
- --ac-bg-light-gray: var(--dark-bg-light);
137
- }
138
-
139
- // multiselect
140
- .multi-select-wrapper {
141
- // .multiselect .multiselect__tags {
142
- // --ac-border: #404040;
143
- // }
144
- .multiselect__content-wrapper {
145
- background-color: var(--dark-bg-light);
146
-
147
- .multiselect__content .multiselect__element .multiselect__option {
148
- color: #b4c0cc;
149
- }
150
-
151
- .multiselect__option--group {
152
- color: #b4c0cc;
153
- background-color: var(--dark-bg-light);
154
- }
155
-
156
- .multiselect__option--selected {
157
- color: #b4c0cc;
158
- background-color: var(--dark-bg-light);
159
- }
160
- }
161
- }
162
- }
163
25
  }
@@ -27,6 +27,7 @@
27
27
  padding: 15px 20px;
28
28
  margin-bottom: 15px;
29
29
  border-radius: 4px;
30
+ border: 1px solid $ac-white-light;
30
31
 
31
32
  &:last-child {
32
33
  margin-bottom: 0;
@@ -48,10 +49,13 @@
48
49
  }
49
50
 
50
51
  .icon {
51
- width: 16px;
52
- height: 16px;
53
- border: 1px solid $ac-color-heading;
54
- line-height: 16px;
52
+ width: 20px;
53
+ height: 20px;
54
+ border: 1px solid $ac-white-light;
55
+ line-height: 20px;
56
+ display: flex;
57
+ justify-content: center;
58
+ align-items: center;
55
59
  font-size: 10px;
56
60
  border-radius: 50%;
57
61
  cursor: pointer;
@@ -6,19 +6,21 @@
6
6
  min-height: 36px;
7
7
  display: flex;
8
8
  align-items: center;
9
- padding: 5px 30px;
9
+ padding: 8px 16px;
10
10
  overflow: hidden;
11
11
  border: 1px solid $ac-primary;
12
12
  border-radius: 4px;
13
13
  justify-content: center;
14
14
  position: relative;
15
15
  z-index: 1;
16
+ max-width: 280px;
16
17
 
17
18
  p {
18
19
  color: $ac-primary;
19
20
 
20
- i.fa {
21
+ .close-icon {
21
22
  padding-right: 10px;
23
+ font-size: 15px;
22
24
  }
23
25
 
24
26
  a {
@@ -138,7 +140,7 @@ AC Toast
138
140
  }
139
141
 
140
142
  p {
141
- padding-left: 10px;
143
+ padding-left: 16px;
142
144
 
143
145
  i.fa {
144
146
  padding-right: 0 !important;
@@ -157,7 +159,6 @@ AC Toast
157
159
 
158
160
  button.close-button {
159
161
  border-radius: 0px;
160
- border-left: 1px solid $ac-white;
161
162
  background-color: transparent;
162
163
  border: none;
163
164
  color: $ac-white;
@@ -169,7 +170,7 @@ AC Toast
169
170
  width: 30px;
170
171
  z-index: 1;
171
172
  cursor: pointer;
172
- border-left: 1px solid $ac-white;
173
+ border-left: 1px solid #dddddd;
173
174
  }
174
175
  }
175
176
 
@@ -205,6 +206,13 @@ AC Toast
205
206
  @include acToast($ac-warning);
206
207
  }
207
208
 
209
+ // dark theme start
210
+ .is-dark-theme {
211
+ .ac-notification.is-error {
212
+ background-color: $dark-bg-light;
213
+ }
214
+ }
215
+ // dark theme end
208
216
  /****************************************
209
217
  Responsive Classes
210
218
  *****************************************/
@@ -77,12 +77,13 @@
77
77
  }
78
78
 
79
79
  &.style-three {
80
- background-color: $ac-input-bg-color;
80
+ background-color: $ac-blue-light;
81
81
  width: 190px;
82
82
  margin-bottom: 20px;
83
83
  margin-right: 20px;
84
84
  padding: 30px 20px 20px;
85
85
  height: 140px;
86
+ cursor: pointer;
86
87
 
87
88
  .ac-card-logo {
88
89
  max-width: 50px;
@@ -109,7 +110,7 @@
109
110
  }
110
111
 
111
112
  &:hover {
112
- background-color: $ac-white;
113
+ background-color: $ac-bg-light-gray;
113
114
  }
114
115
  }
115
116
 
@@ -136,7 +137,7 @@
136
137
  font-size: 36px;
137
138
  line-height: 1;
138
139
  font-weight: 600;
139
- color: #003466;
140
+ color: $ac-color-heading;
140
141
  display: inline-block;
141
142
  position: relative;
142
143
  z-index: 1;
@@ -144,7 +145,7 @@
144
145
  &:after {
145
146
  position: absolute;
146
147
  content: "";
147
- left: 10px;
148
+ left: 0;
148
149
  bottom: 0;
149
150
  width: 100%;
150
151
  height: 5px;
@@ -244,7 +245,7 @@
244
245
  // offer card scss start
245
246
  .pricing-card-wrpper {
246
247
  &.offer-card {
247
- background-color: #fafafa;
248
+ background-color: $ac-white-lighter;
248
249
  border: 1px solid $ac-white-light;
249
250
  border-radius: 4px;
250
251
  display: flex;
@@ -415,7 +416,7 @@
415
416
  }
416
417
 
417
418
  &.style-three {
418
- background-color: #fafafa;
419
+ background-color: $ac-white-lighter;
419
420
  width: 183px;
420
421
  padding: 15px 15px 20px;
421
422
  height: 115px;
@@ -514,7 +515,33 @@
514
515
  }
515
516
 
516
517
  // features card end
518
+ // dark theme start
519
+ .is-dark-theme {
520
+ .ac-single-card {
521
+ background-color: var(--dark-bg-light);
517
522
 
523
+ &.style-three {
524
+ background-color: var(--dark-bg-light);
525
+ }
526
+
527
+ .ac-card-body {
528
+ p {
529
+ color: $ac-label-text;
530
+ }
531
+ }
532
+ }
533
+
534
+ .pricing-card-wrpper {
535
+ &.offer-card {
536
+ background-color: var(--dark-bg-light);
537
+ }
538
+
539
+ .ac-card {
540
+ background-color: var(--dark-bg-light);
541
+ }
542
+ }
543
+ }
544
+ // dark theme end
518
545
  /****************************************
519
546
  Responsive Classes
520
547
  *****************************************/
@@ -11,11 +11,15 @@
11
11
  }
12
12
  }
13
13
  }
14
+ code[class*="language-"],
15
+ pre[class*="language-"] {
16
+ font-size: 14px !important;
17
+ }
14
18
 
15
19
  .editor-writable {
16
20
  width: 100%;
17
21
  border-radius: 4px !important;
18
- border: 1px solid #f1f1f1 !important;
22
+ border: 1px solid $ac-white-light !important;
19
23
  }
20
24
 
21
25
  .monaco-editor {
@@ -6,13 +6,13 @@
6
6
  border: none;
7
7
 
8
8
  &.style-2 {
9
- border: 1px solid $table-header;
9
+ border: 1px solid $ac-white-light;
10
10
  box-shadow: none;
11
11
  padding: 0;
12
12
  border-radius: 4px;
13
13
 
14
14
  .ac-content-header {
15
- background-color: $table-header;
15
+ background-color: $ac-white-light;
16
16
 
17
17
  &.is-bg-white {
18
18
  .ac-cheader-left {
@@ -32,7 +32,7 @@
32
32
  input,
33
33
  .ac-card,
34
34
  textarea {
35
- border: 1px solid $ac-primary;
35
+ border: 1px solid $ac-primary !important;
36
36
  }
37
37
 
38
38
  p {
@@ -123,8 +123,10 @@
123
123
 
124
124
  &.show-label {
125
125
  font-size: 12px;
126
+ color: $ac-color-value;
126
127
  top: -9px;
127
128
  font-weight: 500;
129
+ background-color: $ac-white;
128
130
  }
129
131
  }
130
132
 
@@ -174,6 +176,12 @@
174
176
  font-size: 12px;
175
177
  top: -9px;
176
178
  font-weight: 500;
179
+ color: $ac-color-value;
180
+ &.is-required {
181
+ &:after {
182
+ width: calc(100% + 10px);
183
+ }
184
+ }
177
185
  }
178
186
  }
179
187
 
@@ -263,7 +271,7 @@
263
271
  left: 15px;
264
272
  top: 11px;
265
273
  cursor: text;
266
- color: $ac-border;
274
+ color: $ac-label-text;
267
275
  position: absolute;
268
276
  z-index: 2;
269
277
  transition: 0.3s ease-in-out;
@@ -283,7 +291,7 @@
283
291
  left: 10px;
284
292
  padding: 0 5px;
285
293
  font-size: $font-size-small;
286
- color: $ac-black;
294
+ color: $ac-color-value;
287
295
 
288
296
  &:after {
289
297
  position: absolute;
@@ -333,13 +341,13 @@
333
341
  width: 35px;
334
342
  height: 100%;
335
343
  margin-top: -22.5px;
336
- color: $ac-border;
344
+ color: $ac-label-text;
337
345
  cursor: pointer;
338
346
  }
339
347
 
340
348
  .ac-dropdown-content {
341
349
  position: absolute;
342
- background-color: $ac-input-bg-color;
350
+ background-color: $ac-blue-light;
343
351
  width: 100%;
344
352
  height: auto;
345
353
  box-shadow: 0px 4px 16px rgba(132, 147, 168, 0.6);
@@ -370,25 +378,25 @@
370
378
  }
371
379
 
372
380
  .ac-textarea {
373
- border: 1px solid $ac-border;
374
- border-radius: 4px;
375
- padding: 10px 0 5px 0;
376
- // background-color: $ac-input-bg-color;
377
- transition: background-color 0.3s ease-in-out;
378
-
381
+ .ac-label {
382
+ &.is-required {
383
+ &:after {
384
+ width: calc(100% + 10px);
385
+ }
386
+ }
387
+ }
379
388
  textarea {
380
- border: none;
389
+ border: 1px solid $ac-label-text;
381
390
  background-color: transparent;
382
- padding-top: 0;
383
- padding-bottom: 0;
384
-
391
+ padding: 10px 15px;
392
+ min-height: 50px;
385
393
  &.bg-white {
386
394
  background-color: transparent;
387
395
  }
388
396
 
389
397
  &:focus {
390
398
  outline: none;
391
- border: none;
399
+ border: 1px solid $ac-primary;
392
400
  }
393
401
  }
394
402
  }
@@ -402,7 +410,7 @@
402
410
  font-weight: 400;
403
411
  width: 100%;
404
412
  border-radius: 4px;
405
- border: 1px solid $ac-border;
413
+ border: 1px solid $ac-label-text;
406
414
  padding: 8px 15px;
407
415
  font-size: $font-size-small;
408
416
 
@@ -413,7 +421,9 @@
413
421
  &.bg-white {
414
422
  background-color: $ac-white;
415
423
  }
416
-
424
+ &.StripeElement--focus {
425
+ border: 1px solid $ac-primary;
426
+ }
417
427
  &:focus {
418
428
  border: 1px solid $ac-primary;
419
429
  outline: none;
@@ -450,11 +460,12 @@
450
460
 
451
461
  span.eye {
452
462
  i.fa {
453
- color: $ac-border;
463
+ color: $ac-label-text;
454
464
  position: absolute;
455
465
  cursor: pointer;
456
466
  padding: 15px;
457
467
  right: 0;
468
+ top: 0;
458
469
  }
459
470
  }
460
471
 
@@ -489,7 +500,7 @@
489
500
  top: 10px;
490
501
  z-index: 1;
491
502
  font-size: $font-size-small;
492
- color: $ac-border;
503
+ color: $ac-label-text;
493
504
  font-weight: 400;
494
505
  }
495
506
  }
@@ -513,7 +524,7 @@
513
524
  height: 36px;
514
525
  font-weight: 400;
515
526
  border-radius: 4px;
516
- border: 1px solid $ac-border;
527
+ border: 1px solid $ac-label-text;
517
528
  font-size: $font-size-small;
518
529
 
519
530
  .file-cta {
@@ -550,7 +561,7 @@ input#captcha {
550
561
 
551
562
  &:focus {
552
563
  outline: none;
553
- border-bottom: 1px solid $ac-border;
564
+ border-bottom: 1px solid $ac-label-text;
554
565
  }
555
566
  }
556
567
 
@@ -645,6 +656,7 @@ input#captcha {
645
656
  font-size: 13px;
646
657
  padding-top: 0;
647
658
  padding-left: 40px;
659
+ height: auto;
648
660
 
649
661
  &::before {
650
662
  width: 30px;
@@ -669,6 +681,9 @@ input#captcha {
669
681
  .switch {
670
682
  &[type="checkbox"] + label {
671
683
  padding-top: 3px;
684
+ &::before {
685
+ background-color: $ac-gray-light;
686
+ }
672
687
  }
673
688
 
674
689
  &.ac-switch {
@@ -699,6 +714,14 @@ input#captcha {
699
714
  }
700
715
  }
701
716
 
717
+ .ac-single-switch.is-small .switch[type="checkbox"] + label,
718
+ .buttons.are-small
719
+ .ac-single-switch.button.ac-button
720
+ .switch[type="checkbox"]
721
+ + label {
722
+ height: 19px;
723
+ }
724
+
702
725
  // transparent input
703
726
  .transparent-input {
704
727
  display: flex;
@@ -721,7 +744,7 @@ input#captcha {
721
744
 
722
745
  &:focus {
723
746
  outline: none;
724
- border-bottom: 1px solid $ac-border;
747
+ border-bottom: 1px solid $ac-label-text;
725
748
  }
726
749
  }
727
750
  }
@@ -770,7 +793,24 @@ input#captcha {
770
793
  }
771
794
  }
772
795
  }
796
+ // dark theme start
797
+ .is-dark-theme {
798
+ .ac-single-input {
799
+ input,
800
+ .file-input,
801
+ .ac-dropdown-content {
802
+ background-color: transparent;
803
+ }
773
804
 
805
+ label {
806
+ color: $ac-label-text;
807
+ }
808
+ .button.is-information:focus {
809
+ background-color: $dark-bg-light;
810
+ }
811
+ }
812
+ }
813
+ // dark theme end
774
814
  /****************************************
775
815
  Responsive Classes
776
816
  *****************************************/
@@ -41,7 +41,7 @@
41
41
 
42
42
  &.is-large {
43
43
  .ac-modal-inner {
44
- width: 1000px;
44
+ width: 1000px !important;
45
45
  }
46
46
  }
47
47