@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
@@ -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
 
@@ -267,13 +348,13 @@
267
348
  }
268
349
 
269
350
  &::-webkit-scrollbar-thumb {
270
- background-color: $ac-gray-light;
351
+ background-color: $ac-gray-lightest;
271
352
  border-radius: 50px;
272
353
  height: 2px !important;
273
354
  }
274
355
 
275
356
  &::-webkit-scrollbar-thumb:hover {
276
- background-color: $ac-gray-light;
357
+ background-color: $ac-gray-lightest;
277
358
  }
278
359
 
279
360
  &:hover::-webkit-scrollbar-corner {
@@ -314,33 +395,33 @@
314
395
  }
315
396
 
316
397
  &::-webkit-scrollbar-thumb {
317
- background-color: $ac-gray-light;
398
+ background-color: $ac-gray-lightest;
318
399
  border-radius: 50px;
319
400
  height: 2px !important;
320
401
  }
321
402
 
322
403
  &::-moz-scrollbar-thumb {
323
- background-color: $ac-gray-light;
404
+ background-color: $ac-gray-lightest;
324
405
  border-radius: 50px;
325
406
  height: 2px !important;
326
407
  }
327
408
 
328
409
  &::-ms-scrollbar-thumb {
329
- background-color: $ac-gray-light;
410
+ background-color: $ac-gray-lightest;
330
411
  border-radius: 50px;
331
412
  height: 2px !important;
332
413
  }
333
414
 
334
415
  &::-webkit-scrollbar-thumb:hover {
335
- background-color: $ac-gray-light;
416
+ background-color: $ac-gray-lightest;
336
417
  }
337
418
 
338
419
  &::-moz-scrollbar-thumb:hover {
339
- background-color: $ac-gray-light;
420
+ background-color: $ac-gray-lightest;
340
421
  }
341
422
 
342
423
  &::-ms-scrollbar-thumb:hover {
343
- background-color: $ac-gray-light;
424
+ background-color: $ac-gray-lightest;
344
425
  }
345
426
 
346
427
  &:hover::-webkit-scrollbar-corner {
@@ -371,13 +452,13 @@
371
452
  }
372
453
 
373
454
  &::-webkit-scrollbar-thumb {
374
- background-color: $ac-gray-light;
455
+ background-color: $ac-gray-lightest;
375
456
  border-radius: 50px;
376
457
  width: 2px !important;
377
458
  }
378
459
 
379
460
  &::-webkit-scrollbar-thumb:hover {
380
- background-color: $ac-gray-light;
461
+ background-color: $ac-gray-lightest;
381
462
  }
382
463
 
383
464
  &:hover::-webkit-scrollbar-corner {
@@ -409,10 +490,23 @@
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
  }
415
- .is-danger:not(.ac-button) {
501
+
502
+ .is-dark-theme {
503
+ code {
504
+ background-color: $dark-bg-light;
505
+ color: $ac-full-white;
506
+ }
507
+ }
508
+
509
+ .has-text-danger{
416
510
  color: $ac-danger !important;
417
511
  }
418
512
 
@@ -427,66 +521,6 @@ button {
427
521
  }
428
522
  }
429
523
 
430
- .tag:not(body) {
431
- background-color: $ac-white-light;
432
- font-size: 11px;
433
- height: 18px;
434
- letter-spacing: 0.1px;
435
- color: $ac-color-heading;
436
- a {
437
- &:hover {
438
- color: $ac-color-text;
439
- }
440
- }
441
- &.is-available {
442
- background-color: #27b064;
443
- color: $ac-white;
444
- }
445
- &.is-success {
446
- background-color: $ac-green;
447
- color: $ac-white;
448
- &.is-light {
449
- background-color: rgba(39, 176, 100, 0.2);
450
- color: $ac-green;
451
- }
452
- }
453
- &.is-primary {
454
- background-color: $ac-primary;
455
- color: $ac-white;
456
- &.is-light {
457
- background-color: rgba(25, 113, 189, 0.2);
458
- color: $ac-primary;
459
- }
460
- }
461
- &.is-gray {
462
- background-color: #e5e9f2;
463
- color: #666;
464
- }
465
- &.is-warning {
466
- background-color: $ac-warning;
467
- color: $ac-white !important;
468
- }
469
- &.is-danger {
470
- background-color: $ac-red;
471
- color: $ac-white !important;
472
- &.is-light {
473
- background-color: rgba(234, 61, 47, 0.2);
474
- color: $ac-red !important;
475
- }
476
- }
477
- }
478
-
479
- .tags {
480
- .icon {
481
- margin-bottom: 0.5rem;
482
- }
483
- .tag {
484
- a {
485
- font-weight: 500;
486
- }
487
- }
488
- }
489
-
490
524
  // line title global start
491
525
  .ac-line-title {
492
526
  position: relative;
@@ -658,6 +692,148 @@ $border_color_4: transparent transparent #585d6e transparent;
658
692
  }
659
693
  }
660
694
 
695
+ // tooltip in vue-open-api
696
+ .tooltip {
697
+ display: block !important;
698
+ z-index: 10000;
699
+
700
+ &.is-button-info {
701
+ .tooltip-inner {
702
+ background: $ac-white;
703
+ color: $ac-primary;
704
+ border-radius: 4px;
705
+ padding: 5px 20px 4px;
706
+ box-shadow: $ac-shadow-1;
707
+ font-weight: 500;
708
+ font-size: 13px;
709
+ }
710
+
711
+ .tooltip-arrow {
712
+ width: 0;
713
+ height: 0;
714
+ border-style: solid;
715
+ position: absolute;
716
+ margin: 5px;
717
+ border-color: $ac-white;
718
+ }
719
+ }
720
+
721
+ &.is-errors-tooltip {
722
+ .tooltip-inner {
723
+ background: $ac-white;
724
+ color: $ac-danger;
725
+ border-radius: 4px;
726
+ padding: 5px 20px 4px;
727
+ box-shadow: $ac-shadow-1;
728
+ font-weight: 500;
729
+ font-size: 13px;
730
+
731
+ .errors-wrapper {
732
+ .error-element {
733
+ padding: 5px 0;
734
+ }
735
+ }
736
+ }
737
+
738
+ .tooltip-arrow {
739
+ width: 0;
740
+ height: 0;
741
+ border-style: solid;
742
+ position: absolute;
743
+ margin: 5px;
744
+ border-color: $ac-white;
745
+ }
746
+ }
747
+
748
+ &[x-placement^="top"] {
749
+ margin-bottom: 5px;
750
+
751
+ .tooltip-arrow {
752
+ border-width: 5px 5px 0 5px;
753
+ border-left-color: transparent !important;
754
+ border-right-color: transparent !important;
755
+ border-bottom-color: transparent !important;
756
+ bottom: -5px;
757
+ left: calc(50% - 5px);
758
+ margin-top: 0;
759
+ margin-bottom: 0;
760
+ }
761
+ }
762
+
763
+ &[x-placement^="bottom"] {
764
+ margin-top: 5px;
765
+
766
+ .tooltip-arrow {
767
+ border-width: 0 5px 5px 5px;
768
+ border-left-color: transparent !important;
769
+ border-right-color: transparent !important;
770
+ border-top-color: transparent !important;
771
+ top: -5px;
772
+ left: calc(50% - 5px);
773
+ margin-top: 0;
774
+ margin-bottom: 0;
775
+ }
776
+ }
777
+
778
+ &[x-placement^="right"] {
779
+ margin-left: 5px;
780
+
781
+ .tooltip-arrow {
782
+ border-width: 5px 5px 5px 0;
783
+ border-left-color: transparent !important;
784
+ border-top-color: transparent !important;
785
+ border-bottom-color: transparent !important;
786
+ left: -5px;
787
+ top: calc(50% - 5px);
788
+ margin-left: 0;
789
+ margin-right: 0;
790
+ }
791
+ }
792
+
793
+ &[x-placement^="left"] {
794
+ margin-right: 5px;
795
+
796
+ .tooltip-arrow {
797
+ border-width: 5px 0 5px 5px;
798
+ border-top-color: transparent !important;
799
+ border-right-color: transparent !important;
800
+ border-bottom-color: transparent !important;
801
+ right: -5px;
802
+ top: calc(50% - 5px);
803
+ margin-left: 0;
804
+ margin-right: 0;
805
+ }
806
+ }
807
+
808
+ &.popover {
809
+ $color: #f9f9f9;
810
+
811
+ .popover-inner {
812
+ background: $color;
813
+ color: black;
814
+ padding: 24px;
815
+ border-radius: 4px;
816
+ box-shadow: $ac-shadow-1;
817
+ }
818
+
819
+ .popover-arrow {
820
+ border-color: $color;
821
+ }
822
+ }
823
+
824
+ &[aria-hidden="true"] {
825
+ visibility: hidden;
826
+ opacity: 0;
827
+ transition: opacity 0.15s, visibility 0.15s;
828
+ }
829
+
830
+ &[aria-hidden="false"] {
831
+ visibility: visible;
832
+ opacity: 1;
833
+ transition: opacity 0.15s;
834
+ }
835
+ }
836
+
661
837
  // Customize tooltip end
662
838
 
663
839
  // ac-footer sticky start
@@ -706,30 +882,14 @@ $border_color_4: transparent transparent #585d6e transparent;
706
882
  // Status css
707
883
  // ac-footer sticky end
708
884
 
709
- // terminal scss start
710
- .ac-terminal {
711
- padding: 3px;
712
- position: fixed;
713
- bottom: 0px;
714
- height: 300px;
715
- width: 100%;
716
- background-color: $ac-white;
717
- border: 1px solid var(--ac-white-light);
718
-
719
- color: $ac-white;
720
- z-index: 999;
721
-
722
- .terminal-body {
723
- font-family: "Inconsolata", monospace;
724
- background-color: $ac-color-value;
725
- height: 100%;
726
- color: $ac-white;
727
- strong {
728
- color: $ac-white;
885
+ // terminal scss end
886
+ .is-dark-theme {
887
+ a {
888
+ &:hover {
889
+ color: #485fc7;
729
890
  }
730
891
  }
731
892
  }
732
- // terminal scss end
733
893
 
734
894
  /****************************************
735
895
  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
@@ -18,3 +17,9 @@ $ac-shadow-1: 0 1px 4px rgba(26, 80, 151, 0.16);
18
17
  $ac-shadow-2: 0px 8px 57px rgba(0, 0, 0, 0.16);
19
18
  $ac-shadow-3: 0 3px 4px 0 rgba(0, 0, 0, 0.18),
20
19
  0 3px 3px -2px rgba(0, 0, 0, 0.16), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
20
+
21
+ $ac-shadow-sm: 0 1px 4px rgba(26, 80, 151, 0.16);
22
+ $ac-shadow-xl: 0px 8px 57px rgba(0, 0, 0, 0.16);
23
+ $ac-shadow-lg: 0 3px 4px 0 rgba(0, 0, 0, 0.18),
24
+ 0 3px 3px -2px rgba(0, 0, 0, 0.16), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
25
+
@@ -0,0 +1,29 @@
1
+ .grid {
2
+ display: grid;
3
+ }
4
+
5
+ @for $i from 1 through 12 {
6
+ .grid-cols-#{$i} {
7
+ grid-template-columns: repeat(#{$i}, minmax(0, 1fr));
8
+ }
9
+ }
10
+
11
+ .grid-cols-none {
12
+ grid-template-columns: none;
13
+ }
14
+
15
+ @for $i from 1 through 12 {
16
+ .col-span-#{$i} {
17
+ grid-column: span #{$i} / span #{$i};
18
+ }
19
+ }
20
+
21
+ .col-auto {
22
+ grid-column: auto;
23
+ }
24
+
25
+ @for $i from 0 through 30 {
26
+ .gap-#{$i} {
27
+ gap: #{$i}px;
28
+ }
29
+ }