@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
@@ -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
 
@@ -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
  }
@@ -7,6 +7,8 @@
7
7
  height: 50px;
8
8
  background-color: $ac-white;
9
9
  z-index: 998;
10
+ display: flex;
11
+ align-items: center;
10
12
  }
11
13
 
12
14
  .breadcrumb {
@@ -127,7 +127,11 @@
127
127
  width: 52px;
128
128
  height: 52px;
129
129
  padding: 0;
130
-
130
+ &:hover{
131
+ svg{
132
+ color: $ac-white;
133
+ }
134
+ }
131
135
  &.is-gray {
132
136
  background-color: $ac-white-light;
133
137
  color: $ac-gray-lightest;
@@ -154,7 +158,7 @@
154
158
 
155
159
  &.is-transparent {
156
160
  background-color: transparent;
157
- color: #666;
161
+ color: $ac-gray-darker;
158
162
 
159
163
  &:hover {
160
164
  background-color: $ac-white-lighter;
@@ -169,7 +173,7 @@
169
173
 
170
174
  &.transparent-bg {
171
175
  background-color: transparent;
172
- border: 1px solid $ac-border;
176
+ border: 1px solid $ac-label-text;
173
177
 
174
178
  img {
175
179
  &:hover {
@@ -210,6 +214,7 @@
210
214
  border: none;
211
215
  font-size: 14px;
212
216
  font-weight: 500;
217
+ background-color: transparent;
213
218
  color: $ac-gray-lightest;
214
219
 
215
220
  &.is-primary {
@@ -471,7 +476,7 @@
471
476
  // counter button start
472
477
  .ac-counter-button {
473
478
  background-color: transparent;
474
- border: 1px solid $ac-border;
479
+ border: 1px solid $ac-label-text;
475
480
  border-radius: 4px;
476
481
  height: 46px;
477
482
  overflow: hidden;
@@ -518,13 +523,13 @@
518
523
  .ac-counter-arrow-wrapper {
519
524
  height: 100%;
520
525
  color: $ac-color-text;
521
- border-left: 1px solid $ac-border;
526
+ border-left: 1px solid $ac-label-text;
522
527
 
523
528
  .ac-counter-arrow {
524
529
  background-color: transparent;
525
530
  border: none;
526
531
  cursor: pointer;
527
- color: $ac-border;
532
+ color: $ac-label-text;
528
533
  height: 23px;
529
534
 
530
535
  &:hover {
@@ -532,7 +537,7 @@
532
537
  }
533
538
 
534
539
  &:first-child {
535
- border-bottom: 1px solid $ac-border;
540
+ border-bottom: 1px solid $ac-label-text;
536
541
  }
537
542
  }
538
543
  }
@@ -601,6 +606,33 @@
601
606
  }
602
607
  }
603
608
 
609
+ // dark theme start
610
+ .is-dark-theme {
611
+ .button.ac-button.is-primary.is-light {
612
+ background-color: $ac-primary;
613
+ color: $ac-white;
614
+ &:hover {
615
+ opacity: 0.8;
616
+ }
617
+ }
618
+ .button.ac-button.is-danger.is-light {
619
+ background-color: $ac-danger;
620
+ color: $ac-white;
621
+ &:hover {
622
+ opacity: 0.8;
623
+ }
624
+ }
625
+ .button.ac-button {
626
+ --ac-white: #ffffff;
627
+ &.is-white {
628
+ --ac-white: #2e323c;
629
+ }
630
+ }
631
+ .button.ac-button.is-text{
632
+ background-color: transparent;
633
+ }
634
+ }
635
+ // dark theme end
604
636
  /****************************************
605
637
  Responsive Classes
606
638
  *****************************************/
@@ -4,7 +4,7 @@
4
4
  box-shadow: none;
5
5
 
6
6
  .card-header {
7
- background-color: $table-header;
7
+ background-color: $ac-blue-light;
8
8
  border-radius: 4px 4px 0px 0px;
9
9
  padding: 10px 20px;
10
10
  box-shadow: none;
@@ -24,7 +24,7 @@
24
24
  font-weight: normal;
25
25
  font-size: 14px;
26
26
  line-height: 16px;
27
- color: #6f6f8d;
27
+ color: $ac-color-value;
28
28
  margin-top: 10px;
29
29
  }
30
30
  }
@@ -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
+ }
@@ -0,0 +1,69 @@
1
+ .direct-deploy {
2
+ h5 {
3
+ font-weight: 500;
4
+ font-size: 18px;
5
+ line-height: 21px;
6
+ color: $ac-color-heading;
7
+ margin-bottom: 10px;
8
+ .fa {
9
+ color: $ac-primary;
10
+ }
11
+ }
12
+
13
+ p {
14
+ font-size: 14px;
15
+ line-height: 160%;
16
+ color: $ac-color-heading;
17
+ margin-bottom: 20px;
18
+ }
19
+
20
+ .check-permission {
21
+ font-weight: normal;
22
+ font-size: 14px;
23
+ line-height: 16px;
24
+ color: $ac-color-heading;
25
+ }
26
+
27
+ .button {
28
+ margin: 10px 0;
29
+ }
30
+
31
+ .msg {
32
+ font-size: 12px;
33
+ line-height: 14px;
34
+ color: $ac-color-value;
35
+ }
36
+ .buttons {
37
+ &.is-gray {
38
+ .button {
39
+ &.ac-primary {
40
+ background-color: $ac-blue-light;
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
46
+
47
+ h5 {
48
+ &.toc-title {
49
+ font-style: normal;
50
+ font-weight: 500;
51
+ font-size: 16px;
52
+ line-height: 19px;
53
+ color: $ac-color-value;
54
+ }
55
+ }
56
+ .is-gray {
57
+ .button {
58
+ border: none;
59
+ background-color: $ac-blue-light;
60
+ }
61
+ }
62
+
63
+ .card-content {
64
+ &.is-table-of-content {
65
+ display: grid;
66
+ grid-template-columns: 65% 35%;
67
+ grid-gap: 15px;
68
+ }
69
+ }
@@ -11,7 +11,7 @@
11
11
  line-height: 40px;
12
12
  border-radius: 50%;
13
13
  color: $ac-white;
14
- background-color: rgba($ac-primary, 0.5);
14
+ background-color: rgba(25, 113, 189, 0.5);
15
15
  border: none;
16
16
  opacity: 0;
17
17
  cursor: pointer;
@@ -0,0 +1,45 @@
1
+ .graph-tooltip-wrapper {
2
+ background-color: var(--ac-white);
3
+ border: 1px solid var(--ac-white-light);
4
+
5
+ box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
6
+ border-radius: 4px;
7
+ overflow: hidden;
8
+ h6 {
9
+ padding: 10px 20px;
10
+ border-bottom: 1px solid var(--ac-white-light);
11
+ }
12
+ .table-wrapper {
13
+ padding: 10px 20px;
14
+ tr {
15
+ td {
16
+ &:first-child {
17
+ font-weight: 450;
18
+ padding-right: 10px;
19
+ color: var(--ac-text-heading);
20
+ }
21
+ padding: 4px 0;
22
+ font-size: 13px;
23
+ }
24
+ }
25
+ }
26
+ }
27
+
28
+ .is-hovering .label text tspan {
29
+ stroke: var(--ac-white);
30
+ fill: var(--ac-white);
31
+ stroke-width: 0.3px;
32
+ }
33
+ .is-selected .label text tspan {
34
+ stroke: var(--ac-white);
35
+ fill: var(--ac-white);
36
+ stroke-width: 0.3px;
37
+ }
38
+ .label text tspan {
39
+ stroke: var(--ac-black);
40
+ fill: var(--ac-black);
41
+ stroke-width: 0.3px;
42
+ }
43
+ .edgeLabel .label text tspan {
44
+ stroke-width: 0px;
45
+ }
@@ -1,6 +1,6 @@
1
1
  .ac-upload-image {
2
2
  background-color: $ac-bg;
3
- border: 1px dashed $ac-border;
3
+ border: 1px dashed $ac-label-text;
4
4
  border-radius: 4px;
5
5
  overflow: hidden;
6
6
 
@@ -22,21 +22,23 @@
22
22
  border-radius: 50%;
23
23
  overflow: hidden;
24
24
  margin: 0 auto 30px;
25
+ border: 1px solid $ac-white-light;
25
26
  }
26
27
 
27
28
  .drag-and-drop-msg {
28
29
  font-size: 13px;
30
+ color: $ac-color-value;
29
31
  font-weight: 400;
30
32
  margin-bottom: 10px;
31
33
 
32
34
  span {
33
- color: $ac-border;
35
+ color: $ac-label-text;
34
36
  }
35
37
  }
36
38
 
37
39
  .img-size-msg {
38
40
  font-size: 12px;
39
- color: $ac-border;
41
+ color: $ac-label-text;
40
42
  }
41
43
  }
42
44
 
@@ -1,11 +1,39 @@
1
1
  .ac-system-left-sidebar {
2
+ min-height: calc(100vh - 50px);
3
+
2
4
  &.is-expanded {
3
5
  .ac-left-sidebar-wrapper {
4
6
  &.style-2 {
5
7
  .ac-lef-sidebar-inner {
6
8
  .ac-left-sidebar {
7
9
  .ac-menu-list {
8
- background-color: transparent;
10
+ background-color: $ac-white;
11
+ }
12
+ }
13
+ }
14
+ }
15
+ }
16
+ }
17
+
18
+ &.is-close {
19
+ .ac-left-sidebar-wrapper {
20
+ .ac-lef-sidebar-inner {
21
+ .ac-left-sidebar {
22
+ .menu-list {
23
+ &.ac-menu-list {
24
+ li {
25
+ a {
26
+ &.ac-dropdown-button {
27
+ .ac-arrow-down {
28
+ right: 0px !important;
29
+ }
30
+ }
31
+
32
+ span {
33
+ margin-right: 0px;
34
+ }
35
+ }
36
+ }
9
37
  }
10
38
  }
11
39
  }
@@ -129,12 +157,17 @@
129
157
  height: calc(100vh - 100px);
130
158
  overflow-y: auto;
131
159
  padding-top: 8px;
160
+ scrollbar-color: $ac-white-light transparent;
132
161
 
133
162
  /* width */
134
163
  &::-webkit-scrollbar {
135
164
  display: none;
136
165
  }
137
166
 
167
+ &::-webkit-scrollbar {
168
+ display: none;
169
+ }
170
+
138
171
  li {
139
172
  &.is-open {
140
173
  a {
@@ -185,7 +218,11 @@
185
218
 
186
219
  strong {
187
220
  max-width: calc(100% - 65px);
188
- line-break: anywhere;
221
+ // line-break: anywhere;
222
+ white-space: break-spaces;
223
+ display: flex;
224
+ align-items: center;
225
+ overflow: hidden;
189
226
  font-weight: 400;
190
227
  }
191
228
 
@@ -223,6 +260,10 @@
223
260
  background-color: transparent;
224
261
 
225
262
  span {
263
+ i.fa {
264
+ color: $ac-primary;
265
+ }
266
+
226
267
  img {
227
268
  filter: grayscale(0);
228
269
  }
@@ -295,54 +336,167 @@
295
336
  }
296
337
  }
297
338
  }
339
+ }
298
340
 
299
- &.is-dark-sidebar {
300
- background-color: $ac-color-heading;
341
+ // widget menu end
342
+ // cluster switcher start
343
+ .ac-left-sidebar {
344
+ .ac-options.is-right {
345
+ .option-dots {
346
+ transition: 0.3s;
347
+
348
+ i.fa {
349
+ &.fa-angle-left {
350
+ font-size: 18px;
351
+ }
352
+ }
301
353
 
302
- .ac-lef-sidebar-inner {
303
- .ac-product-logo {
304
- .ac-product-version {
305
- color: $ac-primary;
354
+ &:active {
355
+ i.fa {
356
+ background-color: $ac-white-lighter;
357
+ width: 25px;
358
+ height: 25px;
359
+ text-align: center;
360
+ line-height: 25px;
361
+ border-radius: 50%;
306
362
  }
307
363
  }
308
364
 
309
- .menu-list {
310
- &.ac-menu-list {
311
- height: calc(100vh - 130px);
312
- overflow-y: auto;
313
- padding-top: 8px;
365
+ &:hover {
366
+ color: $ac-primary !important;
367
+ transform: scale(1.2);
368
+ }
369
+ }
370
+ }
314
371
 
315
- li {
316
- a {
317
- color: $ac-white !important;
318
- background-color: $ac-color-heading;
372
+ .is-cluster-logo {
373
+ display: flex;
374
+ align-items: center;
375
+ margin-left: -8px;
376
+ padding: 5px;
377
+ }
319
378
 
320
- &:hover {
321
- color: $ac-white !important;
379
+ .multiselect {
380
+ height: 50px;
322
381
 
323
- span {
324
- color: $ac-black;
325
- }
326
- }
382
+ // commented out to set full width select box when right content is not present
383
+ // width: 234px;
327
384
 
328
- &:after {
329
- background-color: $ac-color-text;
330
- }
331
- }
385
+ left: 0px;
386
+ top: -5px;
332
387
 
333
- &.is-active {
334
- color: $ac-primary !important;
388
+ .multiselect__select {
389
+ height: 50px;
390
+ top: 4px;
391
+ }
335
392
 
336
- &:after,
337
- &::before {
338
- background: linear-gradient(
339
- 89.41deg,
340
- rgba(25, 113, 189, 0.2) 0.06%,
341
- rgba(25, 113, 189, 0) 138.7%
342
- );
393
+ .multiselect__tags {
394
+ border: none !important;
395
+ background-color: $ac-bg-light-gray;
396
+ min-height: 54px;
397
+ border-radius: 0;
343
398
 
344
- &::before {
345
- background-color: $ac-primary;
399
+ .multiselect__placeholder {
400
+ padding-top: 12px !important;
401
+ font-size: 14px;
402
+ }
403
+
404
+ .multiselect__input {
405
+ background-color: $ac-bg-light-gray !important;
406
+ top: 13px;
407
+
408
+ &::placeholder {
409
+ font-size: 12px;
410
+ font-weight: 500;
411
+ }
412
+ }
413
+ }
414
+
415
+ .multiselect__single {
416
+ background-color: $ac-bg-light-gray !important;
417
+ top: 14px !important;
418
+
419
+ img {
420
+ width: 20px;
421
+ margin-right: 8px;
422
+ }
423
+
424
+ span {
425
+ span {
426
+ overflow: hidden;
427
+ text-overflow: ellipsis;
428
+ display: -webkit-box;
429
+ line-clamp: 1;
430
+ -webkit-line-clamp: 1;
431
+ box-orient: vertical;
432
+ -webkit-box-orient: vertical;
433
+ }
434
+ }
435
+ }
436
+ }
437
+
438
+ .multiselect__content-wrapper {
439
+ border: 1px solid $ac-white-light;
440
+
441
+ .multiselect__content {
442
+ .multiselect__element {
443
+ .multiselect__option {
444
+ display: flex;
445
+ align-items: center;
446
+ font-size: 14px;
447
+
448
+ img {
449
+ width: 25px;
450
+ }
451
+
452
+ p {
453
+ color: $ac-color-text;
454
+ font-weight: 500;
455
+ }
456
+
457
+ .location {
458
+ color: $ac-color-text;
459
+ font-weight: 400;
460
+ opacity: 0.8;
461
+ }
462
+ }
463
+ }
464
+ }
465
+ }
466
+ }
467
+
468
+ // cluster switcher end
469
+
470
+ // dark theme start
471
+ .is-dark-theme {
472
+ body {
473
+ .ac-system-body {
474
+ .ac-system-left-sidebar {
475
+ background-color: var(--dark-bg);
476
+ }
477
+ }
478
+
479
+ .ac-left-sidebar-wrapper {
480
+ .ac-lef-sidebar-inner {
481
+ .ac-left-sidebar {
482
+ .menu-list {
483
+ &.ac-menu-list {
484
+ li {
485
+ a {
486
+ &.is-active {
487
+ font-weight: 500;
488
+ color: $ac-full-white !important;
489
+
490
+ span {
491
+ i.fa {
492
+ color: $ac-primary;
493
+ }
494
+ }
495
+
496
+ &:after {
497
+ background: var(--dark-bg-light) !important;
498
+ }
499
+ }
346
500
  }
347
501
  }
348
502
  }
@@ -353,7 +507,7 @@
353
507
  }
354
508
  }
355
509
 
356
- // widget menu end
510
+ // dark theme end
357
511
  /****************************************
358
512
  Responsive Classes
359
513
  *****************************************/
@@ -1,6 +1,6 @@
1
1
  .editor {
2
2
  border: none;
3
- background-color: #f5f7f9 !important;
3
+ background-color: $ac-white-light !important;
4
4
  }
5
5
 
6
6
  .decorationsOverviewRuler {