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

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 +187 -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
@@ -0,0 +1,6 @@
1
+ @import "initial-variables";
2
+ @import "derived-variables";
3
+ @import "mixin";
4
+ @import "typography";
5
+ @import "default";
6
+ @import "dark-theme";
@@ -4,6 +4,7 @@
4
4
  grid-gap: 0px;
5
5
  grid-template-columns: 270px calc(100% - 270px);
6
6
  padding-top: 50px;
7
+
7
8
  &.is-fullwidth {
8
9
  grid-template-columns: auto !important;
9
10
 
@@ -22,27 +23,36 @@
22
23
  }
23
24
  }
24
25
 
26
+ &.in-ui-builder {
27
+ grid-template-columns: calc(100% - 270px) 270px !important;
28
+ }
29
+
25
30
  &.has-ui-builder {
26
31
  grid-template-columns: 70px calc(100% - 70px);
27
32
  grid-gap: 0;
33
+
28
34
  .inner-header {
29
35
  position: sticky;
30
36
  top: 100px;
31
37
  background-color: $ac-white;
32
38
  z-index: 997;
33
39
  }
40
+
34
41
  .ac-system-content {
35
42
  &.pr-15 {
36
43
  padding-right: 0 !important;
37
44
  }
45
+
38
46
  .ac-terminal {
39
47
  width: calc(100% - 290px);
40
48
  left: 289px;
41
49
  }
42
50
  }
51
+
43
52
  .ac-system-left-sidebar.is-expanded {
44
53
  z-index: 998;
45
54
  }
55
+
46
56
  &.expanded-sidebar {
47
57
  grid-gap: 0px;
48
58
  z-index: 9;
@@ -70,15 +80,18 @@
70
80
  .ac-system-body {
71
81
  padding-top: 0;
72
82
  grid-template-columns: 220px calc(100% - 440px) 220px;
83
+
73
84
  .ac-system-left-sidebar {
74
85
  border-right: none !important;
75
86
  height: calc(100vh - 60px);
87
+
76
88
  .ac-left-sidebar-wrapper {
77
89
  position: fixed;
78
90
  top: 140px;
79
91
  width: 219px;
80
- border-right: 1px solid #e7e7e7;
92
+ border-right: 1px solid $ac-white-light;
81
93
  height: 100%;
94
+
82
95
  ul.menu-list-wrapper {
83
96
  padding-top: 10px;
84
97
  }
@@ -94,6 +107,7 @@
94
107
  .ac-system-left-sidebar {
95
108
  border-right: 1px solid $ac-white-light;
96
109
  box-shadow: none;
110
+
97
111
  &.is-expanded {
98
112
  z-index: 998;
99
113
 
@@ -129,10 +143,61 @@
129
143
  }
130
144
  }
131
145
  }
146
+
147
+ .ac-system-body {
148
+ &.is-preview-step {
149
+ grid-template-columns: calc(100% - 270px) 270px !important;
150
+ }
151
+ }
152
+
132
153
  .form-content {
133
154
  width: 720px;
134
155
  }
135
156
 
157
+ .dropdown-content {
158
+ background-color: $ac-white;
159
+ }
160
+
161
+ // color swatch start
162
+ input[type="color"] {
163
+ -webkit-appearance: none;
164
+ border: none;
165
+ width: 20px;
166
+ height: 20px;
167
+ border-radius: 50%;
168
+ border: 1px solid #777;
169
+ margin-left: 3px;
170
+ padding: 2px;
171
+ cursor: pointer;
172
+ }
173
+
174
+ input[type="color"]::-webkit-color-swatch-wrapper {
175
+ padding: 0;
176
+ }
177
+
178
+ // input[type="color"]::-moz-color-swatch,
179
+ input[type="color"]::-webkit-color-swatch {
180
+ border: none;
181
+ border-radius: 50%;
182
+ }
183
+
184
+ input[type="color"]::-moz-color-swatch {
185
+ border: none;
186
+ border-radius: 50%;
187
+ }
188
+
189
+ // color swatch end
190
+
191
+ .is-dark-theme {
192
+ .dropdown-content {
193
+ background-color: $dark-bg-light;
194
+ }
195
+ }
196
+
197
+ .ac-preloader {
198
+ color: $ac-color-text;
199
+ }
200
+
136
201
  .section-padding {
137
202
  padding: 100px 0;
138
203
  }
@@ -166,46 +231,55 @@
166
231
  .is-not-fixed {
167
232
  position: inherit !important;
168
233
  }
169
- .b-1 {
170
- border: 1px solid $ac-white-light;
171
- }
172
- .b-t-1 {
173
- border-top: 1px solid $ac-white-light;
174
- }
175
- .b-b-1 {
176
- border-bottom: 1px solid $ac-white-light;
177
- }
178
- .b-l-1 {
179
- border-left: 1px solid $ac-white-light;
180
- }
181
- .b-r-1 {
182
- border-right: 1px solid $ac-white-light;
183
- }
234
+
184
235
  // border none
185
236
  .is-border-none {
186
237
  border: none !important;
187
238
  }
188
239
 
189
- .b-b-n {
190
- border-bottom: none !important;
240
+ .b-1 {
241
+ border: 1px solid $ac-white-light;
191
242
  }
192
243
 
193
- .b-t-n {
194
- border-top: none !important;
244
+ // border left, right, top, bottom none
245
+ $positions: (
246
+ "b": "bottom",
247
+ "t": "top",
248
+ "l": "left",
249
+ "r": "right",
250
+ );
251
+
252
+ @each $key, $position in $positions {
253
+ .b-#{$key}-n {
254
+ border-#{$position}: none !important;
255
+ }
195
256
  }
196
257
 
197
- .b-l-n {
198
- border-left: none !important;
258
+ // border 1px
259
+ @each $key, $position in $positions {
260
+ .b-#{$key}-1 {
261
+ border-#{$position}: 1px solid $ac-white-light;
262
+ }
199
263
  }
200
264
 
201
- .b-r-n {
202
- border-right: none !important;
265
+ // for ellipsis
266
+ @for $i from 0 through 10 {
267
+ .is-ellipsis-#{$i} {
268
+ overflow: hidden;
269
+ text-overflow: ellipsis;
270
+ display: -webkit-box;
271
+ line-clamp: #{$i};
272
+ -webkit-line-clamp: #{$i};
273
+ box-orient: vertical;
274
+ -webkit-box-orient: vertical;
275
+ }
203
276
  }
204
277
 
205
278
  .is-disabled {
206
279
  opacity: 0.5;
207
280
  cursor: not-allowed;
208
281
  }
282
+
209
283
  .no-data-image {
210
284
  img {
211
285
  width: 250px;
@@ -214,16 +288,23 @@
214
288
  }
215
289
  }
216
290
 
217
- // for ellipsis
218
- @for $i from 0 through 10 {
219
- .is-ellipsis-#{$i} {
220
- overflow: hidden;
221
- text-overflow: ellipsis;
222
- display: -webkit-box;
223
- line-clamp: #{$i};
224
- -webkit-line-clamp: #{$i};
225
- box-orient: vertical;
226
- -webkit-box-orient: vertical;
291
+ // toast css third-party
292
+
293
+ .toasted-container {
294
+ .ac-toast-action.mr-10 {
295
+ text-decoration: underline !important;
296
+ }
297
+
298
+ .has-report-issue {
299
+ padding-right: 140px !important;
300
+ }
301
+ }
302
+
303
+ .is-dark-theme {
304
+ .toasted-container {
305
+ i.fa {
306
+ color: #ffffff !important;
307
+ }
227
308
  }
228
309
  }
229
310
 
@@ -409,9 +490,22 @@
409
490
  color: $ac-red;
410
491
  text-align: left;
411
492
  }
493
+
494
+ p.is-error {
495
+ color: $ac-red;
496
+ }
497
+
412
498
  code {
413
499
  color: $ac-color-heading;
414
500
  }
501
+
502
+ .is-dark-theme {
503
+ code {
504
+ background-color: $dark-bg-light;
505
+ color: $ac-full-white;
506
+ }
507
+ }
508
+
415
509
  .is-danger:not(.ac-button) {
416
510
  color: $ac-danger !important;
417
511
  }
@@ -433,37 +527,57 @@ button {
433
527
  height: 18px;
434
528
  letter-spacing: 0.1px;
435
529
  color: $ac-color-heading;
530
+
531
+ a {
532
+ &:hover {
533
+ color: $ac-color-text;
534
+ }
535
+ }
536
+
436
537
  &.is-available {
437
538
  background-color: #27b064;
438
539
  color: $ac-white;
439
540
  }
541
+
440
542
  &.is-success {
441
543
  background-color: $ac-green;
442
544
  color: $ac-white;
545
+
443
546
  &.is-light {
444
547
  background-color: rgba(39, 176, 100, 0.2);
445
548
  color: $ac-green;
446
549
  }
447
550
  }
551
+
448
552
  &.is-primary {
449
553
  background-color: $ac-primary;
450
554
  color: $ac-white;
555
+
451
556
  &.is-light {
452
557
  background-color: rgba(25, 113, 189, 0.2);
453
558
  color: $ac-primary;
454
559
  }
455
560
  }
561
+
456
562
  &.is-gray {
457
563
  background-color: #e5e9f2;
458
- color: #666;
564
+ color: $ac-gray-darker;
459
565
  }
566
+
460
567
  &.is-warning {
461
568
  background-color: $ac-warning;
462
- color: $ac-white !important;
569
+ color: $ac-white;
570
+
571
+ &.is-light {
572
+ background-color: #ffd58b42;
573
+ color: #c88b21;
574
+ }
463
575
  }
576
+
464
577
  &.is-danger {
465
578
  background-color: $ac-red;
466
579
  color: $ac-white !important;
580
+
467
581
  &.is-light {
468
582
  background-color: rgba(234, 61, 47, 0.2);
469
583
  color: $ac-red !important;
@@ -475,6 +589,7 @@ button {
475
589
  .icon {
476
590
  margin-bottom: 0.5rem;
477
591
  }
592
+
478
593
  .tag {
479
594
  a {
480
595
  font-weight: 500;
@@ -653,6 +768,148 @@ $border_color_4: transparent transparent #585d6e transparent;
653
768
  }
654
769
  }
655
770
 
771
+ // tooltip in vue-open-api
772
+ .tooltip {
773
+ display: block !important;
774
+ z-index: 10000;
775
+
776
+ &.is-button-info {
777
+ .tooltip-inner {
778
+ background: $ac-white;
779
+ color: $ac-primary;
780
+ border-radius: 4px;
781
+ padding: 5px 20px 4px;
782
+ box-shadow: $ac-shadow-1;
783
+ font-weight: 500;
784
+ font-size: 13px;
785
+ }
786
+
787
+ .tooltip-arrow {
788
+ width: 0;
789
+ height: 0;
790
+ border-style: solid;
791
+ position: absolute;
792
+ margin: 5px;
793
+ border-color: $ac-white;
794
+ }
795
+ }
796
+
797
+ &.is-errors-tooltip {
798
+ .tooltip-inner {
799
+ background: $ac-white;
800
+ color: $ac-danger;
801
+ border-radius: 4px;
802
+ padding: 5px 20px 4px;
803
+ box-shadow: $ac-shadow-1;
804
+ font-weight: 500;
805
+ font-size: 13px;
806
+
807
+ .errors-wrapper {
808
+ .error-element {
809
+ padding: 5px 0;
810
+ }
811
+ }
812
+ }
813
+
814
+ .tooltip-arrow {
815
+ width: 0;
816
+ height: 0;
817
+ border-style: solid;
818
+ position: absolute;
819
+ margin: 5px;
820
+ border-color: $ac-white;
821
+ }
822
+ }
823
+
824
+ &[x-placement^="top"] {
825
+ margin-bottom: 5px;
826
+
827
+ .tooltip-arrow {
828
+ border-width: 5px 5px 0 5px;
829
+ border-left-color: transparent !important;
830
+ border-right-color: transparent !important;
831
+ border-bottom-color: transparent !important;
832
+ bottom: -5px;
833
+ left: calc(50% - 5px);
834
+ margin-top: 0;
835
+ margin-bottom: 0;
836
+ }
837
+ }
838
+
839
+ &[x-placement^="bottom"] {
840
+ margin-top: 5px;
841
+
842
+ .tooltip-arrow {
843
+ border-width: 0 5px 5px 5px;
844
+ border-left-color: transparent !important;
845
+ border-right-color: transparent !important;
846
+ border-top-color: transparent !important;
847
+ top: -5px;
848
+ left: calc(50% - 5px);
849
+ margin-top: 0;
850
+ margin-bottom: 0;
851
+ }
852
+ }
853
+
854
+ &[x-placement^="right"] {
855
+ margin-left: 5px;
856
+
857
+ .tooltip-arrow {
858
+ border-width: 5px 5px 5px 0;
859
+ border-left-color: transparent !important;
860
+ border-top-color: transparent !important;
861
+ border-bottom-color: transparent !important;
862
+ left: -5px;
863
+ top: calc(50% - 5px);
864
+ margin-left: 0;
865
+ margin-right: 0;
866
+ }
867
+ }
868
+
869
+ &[x-placement^="left"] {
870
+ margin-right: 5px;
871
+
872
+ .tooltip-arrow {
873
+ border-width: 5px 0 5px 5px;
874
+ border-top-color: transparent !important;
875
+ border-right-color: transparent !important;
876
+ border-bottom-color: transparent !important;
877
+ right: -5px;
878
+ top: calc(50% - 5px);
879
+ margin-left: 0;
880
+ margin-right: 0;
881
+ }
882
+ }
883
+
884
+ &.popover {
885
+ $color: #f9f9f9;
886
+
887
+ .popover-inner {
888
+ background: $color;
889
+ color: black;
890
+ padding: 24px;
891
+ border-radius: 4px;
892
+ box-shadow: $ac-shadow-1;
893
+ }
894
+
895
+ .popover-arrow {
896
+ border-color: $color;
897
+ }
898
+ }
899
+
900
+ &[aria-hidden="true"] {
901
+ visibility: hidden;
902
+ opacity: 0;
903
+ transition: opacity 0.15s, visibility 0.15s;
904
+ }
905
+
906
+ &[aria-hidden="false"] {
907
+ visibility: visible;
908
+ opacity: 1;
909
+ transition: opacity 0.15s;
910
+ }
911
+ }
912
+
656
913
  // Customize tooltip end
657
914
 
658
915
  // ac-footer sticky start
@@ -701,30 +958,14 @@ $border_color_4: transparent transparent #585d6e transparent;
701
958
  // Status css
702
959
  // ac-footer sticky end
703
960
 
704
- // terminal scss start
705
- .ac-terminal {
706
- padding: 3px;
707
- position: fixed;
708
- bottom: 0px;
709
- height: 300px;
710
- width: 100%;
711
- background-color: $ac-white;
712
- border: 1px solid var(--ac-white-light);
713
-
714
- color: $ac-white;
715
- z-index: 999;
716
-
717
- .terminal-body {
718
- font-family: "Inconsolata", monospace;
719
- background-color: $ac-color-value;
720
- height: 100%;
721
- color: $ac-white;
722
- strong {
723
- color: $ac-white;
961
+ // terminal scss end
962
+ .is-dark-theme {
963
+ a {
964
+ &:hover {
965
+ color: #485fc7;
724
966
  }
725
967
  }
726
968
  }
727
- // terminal scss end
728
969
 
729
970
  /****************************************
730
971
  Responsive Classes
@@ -10,7 +10,6 @@ $ac-color-heading: var(--ac-text-heading);
10
10
 
11
11
  // Link colors
12
12
  $ac-link: $ac-blue;
13
- $ac-link-black: #32325d;
14
13
  $ac-link-visited: $ac-purple;
15
14
 
16
15
  // Box Shadow
@@ -23,10 +23,10 @@ $font-size-tiny: 11px;
23
23
  // Base Color
24
24
  $ac-orange: #ff8000;
25
25
  $ac-yellow: #f7ad2a;
26
- $ac-green: #27b064;
26
+ $ac-green: #158748;
27
27
  $ac-blue: #0aafff;
28
28
  $ac-purple: #791e94;
29
- $ac-red: #ea3d2f;
29
+ $ac-red: #ff3729;
30
30
 
31
31
  // Products Color
32
32
  $voyager-primary: #2d2a78;
@@ -49,9 +49,9 @@ $swift-primary: #3f51b6;
49
49
  --hsl-saturation: 77%;
50
50
  --hsl-lightness: 42%;
51
51
  --contrast-threshold: 60%;
52
-
53
- --bg-color: #ffffff;
52
+ --ac-bg: #ffffff;
54
53
  --ac-white: #ffffff;
54
+ --ac-full-white: #ffffff;
55
55
  --ac-gray-dark: #5f5f5f;
56
56
  --ac-gray-light: #8d8d8d;
57
57
  --ac-gray-lightest: #d1d1d1;
@@ -60,17 +60,20 @@ $swift-primary: #3f51b6;
60
60
 
61
61
  --ac-black: #000000;
62
62
  --ac-color-text-90: #323232;
63
+ --ac-link-black: #32325d;
63
64
  --ac-gray-darker: #494949;
64
65
  --ac-gray: #767676;
65
66
  --ac-gray-lighter: #a4a4a4;
67
+ --ac-white-text: #b4c0cc;
68
+
66
69
  // theme color
67
70
  --dark-bg: #21272e;
68
71
  --dark-bg-light: #2e323c;
69
72
 
70
- --ac-input-bg-color: #eceff4;
73
+ --ac-blue-light: #eceff4;
71
74
  --ac-bg-light-gray: #f4f6f9;
72
75
  --table-header: #e4e8ef;
73
- --ac-border: #a6abbd;
76
+ --ac-label-text: #a6abbd;
74
77
 
75
78
  --font-hsl-hue: 0;
76
79
  --font-hsl-saturation: 0%;
@@ -82,6 +85,7 @@ $swift-primary: #3f51b6;
82
85
  var(--hsl-lightness),
83
86
  1
84
87
  );
88
+
85
89
  --ac-text: hsla(
86
90
  var(--font-hsl-hue),
87
91
  calc(var(--font-hsl-saturation) + 10%),
@@ -101,13 +105,14 @@ $swift-primary: #3f51b6;
101
105
  );
102
106
  }
103
107
 
104
- $ac-bg: var(--bg-color);
108
+ $ac-bg: var(--ac-bg);
105
109
  $ac-primary: var(--ac-primary);
106
110
  $ac-color-value: var(--ac-color-value);
107
111
 
108
112
  // Colors
109
113
  $ac-black: var(--ac-black);
110
- $ac-color-text-90: var(ac-color-text-90);
114
+ $ac-color-text-90: var(--ac-color-text-90);
115
+ $ac-link-black: var(--ac-link-black);
111
116
  $ac-gray-darker: var(--ac-gray-darker);
112
117
  $ac-gray-dark: var(--ac-gray-dark);
113
118
  $ac-gray: var(--ac-gray);
@@ -117,11 +122,12 @@ $ac-gray-lightest: var(--ac-gray-lightest);
117
122
  $ac-white-light: var(--ac-white-light);
118
123
  $ac-white-lighter: var(--ac-white-lighter);
119
124
  $ac-white: var(--ac-white);
125
+ $ac-full-white: var(--ac-full-white);
120
126
 
121
- $ac-input-bg-color: var(--ac-input-bg-color);
127
+ $ac-blue-light: var(--ac-blue-light);
122
128
  $ac-bg-light-gray: var(--ac-bg-light-gray);
123
129
  $table-header: var(--table-header);
124
- $ac-border: var(--ac-border);
130
+ $ac-label-text: var(--ac-label-text);
125
131
 
126
132
  // for dark theme CSS
127
133
  $dark-bg: var(--dark-bg);
@@ -83,23 +83,7 @@
83
83
  &:hover {
84
84
  background-color: $colorName;
85
85
  color: $ac-white;
86
-
87
- @if (type_of($colorName) == "color") {
88
- box-shadow: 0px
89
- 6px
90
- 12px
91
- scale-color($color: $colorName, $lightness: 70%);
92
- } @else {
93
- box-shadow: 0px
94
- 6px
95
- 12px
96
- hsla(
97
- var(--hsl-hue),
98
- var(--hsl-saturation),
99
- var(--hsl-lightness),
100
- 0.3
101
- );
102
- }
86
+ box-shadow: none;
103
87
 
104
88
  img {
105
89
  filter: brightness(100) !important;
@@ -3,9 +3,12 @@ body {
3
3
  background-color: $ac-bg;
4
4
  font-family: $ac-family-paragraph;
5
5
  font-weight: 400;
6
- font-size: 83%;
6
+ font-size: 13px;
7
+ color: $ac-color-text;
8
+ }
9
+ p {
10
+ font-size: 13px;
7
11
  }
8
-
9
12
  h1,
10
13
  h2,
11
14
  h3,
@@ -92,6 +95,10 @@ hr {
92
95
  margin: 15px 0;
93
96
  }
94
97
 
98
+ strong {
99
+ color: $ac-color-value;
100
+ }
101
+
95
102
  .is-font-medium {
96
103
  font-weight: 500;
97
104
  }
@@ -99,3 +106,6 @@ hr {
99
106
  .is-font-bold {
100
107
  font-weight: 700;
101
108
  }
109
+ .material-icons{
110
+ font-size: 1em;
111
+ }