@appscode/design-system 1.0.43-alpha.21 → 1.0.43-alpha.211

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 (132) 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 +313 -67
  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 +7 -5
  22. package/components/_ac-tabs.scss +46 -5
  23. package/components/_ac-terminal.scss +270 -0
  24. package/components/_all.scss +27 -0
  25. package/components/_app-drawer.scss +2 -2
  26. package/components/_breadcumb.scss +2 -0
  27. package/components/_buttons.scss +50 -37
  28. package/components/_card-body-wrapper.scss +2 -2
  29. package/components/_dashboard-header.scss +32 -0
  30. package/components/_direct-deploy.scss +69 -0
  31. package/components/_go-to-top.scss +1 -1
  32. package/components/_graph.scss +45 -0
  33. package/components/_image-upload.scss +5 -3
  34. package/components/_left-sidebar-menu.scss +124 -73
  35. package/components/_monaco-editor.scss +1 -1
  36. package/components/_navbar.scss +170 -10
  37. package/components/_overview-info.scss +3 -3
  38. package/components/_pagination.scss +8 -0
  39. package/components/_payment-card.scss +10 -1
  40. package/components/_preview-modal.scss +18 -5
  41. package/components/_pricing-table.scss +1 -1
  42. package/components/_progress-bar.scss +4 -4
  43. package/components/_subscription-card.scss +11 -4
  44. package/components/_table-of-content.scss +1 -1
  45. package/components/_tfa.scss +69 -0
  46. package/components/_transitions.scss +261 -0
  47. package/components/_wizard.scss +16 -3
  48. package/components/bbum/_all.scss +9 -0
  49. package/components/bbum/_card-team.scss +1 -1
  50. package/components/bbum/_information-center.scss +15 -1
  51. package/components/bbum/_sign-up-notification.scss +1 -1
  52. package/components/bbum/_single-post-preview.scss +2 -2
  53. package/components/bbum/_user-profile.scss +2 -3
  54. package/components/ui-builder/_ui-builder.scss +76 -1
  55. package/components/ui-builder/_vue-open-api.scss +104 -0
  56. package/layouts/_all.scss +2 -0
  57. package/layouts/_code-preview.scss +5 -2
  58. package/main.scss +6 -54
  59. package/package.json +2 -7
  60. package/plugins/theme.js +4 -0
  61. package/plugins/time-convert.js +49 -0
  62. package/plugins/vue-toaster.js +3 -0
  63. package/vue-components/v2/banner/Banner.vue +2 -2
  64. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  65. package/vue-components/v2/button/Button.vue +5 -0
  66. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  67. package/vue-components/v2/card/Card.vue +1 -0
  68. package/vue-components/v2/card/PaymentCards.vue +11 -2
  69. package/vue-components/v2/content/ContentTable.vue +12 -7
  70. package/vue-components/v2/editor/Editor.vue +43 -24
  71. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  72. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  73. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  74. package/vue-components/v2/form-fields/Input.vue +1 -1
  75. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  76. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  77. package/vue-components/v2/modal/Modal.vue +38 -4
  78. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  79. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  80. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  81. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  82. package/vue-components/v2/navbar/User.vue +229 -17
  83. package/vue-components/v2/notification/Notification.vue +101 -0
  84. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  85. package/vue-components/v2/pagination/Pagination.vue +16 -3
  86. package/vue-components/v2/preloader/Preloader.vue +5 -5
  87. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  88. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  89. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  90. package/vue-components/v2/tab/TabItem.vue +1 -1
  91. package/vue-components/v2/table/Table.vue +44 -8
  92. package/vue-components/v2/table/TableRow.vue +12 -2
  93. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  94. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  95. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  96. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  97. package/vue-components/v3/button/Button.vue +6 -1
  98. package/vue-components/v3/content/ContentTable.vue +17 -2
  99. package/vue-components/v3/editor/Editor.vue +42 -33
  100. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  101. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  102. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  103. package/vue-components/v3/form/Form.vue +63 -0
  104. package/vue-components/v3/form-fields/Input.vue +11 -10
  105. package/vue-components/v3/header/HeaderItem.vue +5 -0
  106. package/vue-components/v3/header/HeaderItems.vue +5 -0
  107. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  108. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  109. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  110. package/vue-components/v3/modal/Modal.vue +38 -6
  111. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  112. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  113. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  114. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  115. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  116. package/vue-components/v3/navbar/User.vue +242 -18
  117. package/vue-components/v3/notification/Notification.vue +98 -0
  118. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  119. package/vue-components/v3/pagination/Pagination.vue +16 -3
  120. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  121. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  122. package/vue-components/v3/tab/TabItem.vue +1 -1
  123. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  124. package/vue-components/v3/table/Table.vue +40 -12
  125. package/vue-components/v3/table/TableContainer.vue +34 -0
  126. package/vue-components/v3/table/TableRow.vue +62 -3
  127. package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
  128. package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
  129. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  130. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  131. package/vue-components/v3/tag/Tag.vue +1 -1
  132. 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,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
  }
@@ -431,39 +525,64 @@ button {
431
525
  background-color: $ac-white-light;
432
526
  font-size: 11px;
433
527
  height: 18px;
528
+ line-height: 1;
434
529
  letter-spacing: 0.1px;
435
530
  color: $ac-color-heading;
531
+ &.is-outlined {
532
+ border: 1px solid;
533
+ background-color: transparent;
534
+ }
535
+
536
+ a {
537
+ &:hover {
538
+ color: $ac-color-text;
539
+ }
540
+ }
541
+
436
542
  &.is-available {
437
543
  background-color: #27b064;
438
544
  color: $ac-white;
439
545
  }
546
+
440
547
  &.is-success {
441
548
  background-color: $ac-green;
442
549
  color: $ac-white;
550
+
443
551
  &.is-light {
444
552
  background-color: rgba(39, 176, 100, 0.2);
445
553
  color: $ac-green;
446
554
  }
447
555
  }
556
+
448
557
  &.is-primary {
449
558
  background-color: $ac-primary;
450
559
  color: $ac-white;
560
+
451
561
  &.is-light {
452
562
  background-color: rgba(25, 113, 189, 0.2);
453
563
  color: $ac-primary;
454
564
  }
455
565
  }
566
+
456
567
  &.is-gray {
457
568
  background-color: #e5e9f2;
458
- color: #666;
569
+ color: $ac-gray-darker;
459
570
  }
571
+
460
572
  &.is-warning {
461
573
  background-color: $ac-warning;
462
- color: $ac-white !important;
574
+ color: $ac-white;
575
+
576
+ &.is-light {
577
+ background-color: #ffd58b42;
578
+ color: #c88b21;
579
+ }
463
580
  }
581
+
464
582
  &.is-danger {
465
583
  background-color: $ac-red;
466
584
  color: $ac-white !important;
585
+
467
586
  &.is-light {
468
587
  background-color: rgba(234, 61, 47, 0.2);
469
588
  color: $ac-red !important;
@@ -475,6 +594,7 @@ button {
475
594
  .icon {
476
595
  margin-bottom: 0.5rem;
477
596
  }
597
+
478
598
  .tag {
479
599
  a {
480
600
  font-weight: 500;
@@ -653,6 +773,148 @@ $border_color_4: transparent transparent #585d6e transparent;
653
773
  }
654
774
  }
655
775
 
776
+ // tooltip in vue-open-api
777
+ .tooltip {
778
+ display: block !important;
779
+ z-index: 10000;
780
+
781
+ &.is-button-info {
782
+ .tooltip-inner {
783
+ background: $ac-white;
784
+ color: $ac-primary;
785
+ border-radius: 4px;
786
+ padding: 5px 20px 4px;
787
+ box-shadow: $ac-shadow-1;
788
+ font-weight: 500;
789
+ font-size: 13px;
790
+ }
791
+
792
+ .tooltip-arrow {
793
+ width: 0;
794
+ height: 0;
795
+ border-style: solid;
796
+ position: absolute;
797
+ margin: 5px;
798
+ border-color: $ac-white;
799
+ }
800
+ }
801
+
802
+ &.is-errors-tooltip {
803
+ .tooltip-inner {
804
+ background: $ac-white;
805
+ color: $ac-danger;
806
+ border-radius: 4px;
807
+ padding: 5px 20px 4px;
808
+ box-shadow: $ac-shadow-1;
809
+ font-weight: 500;
810
+ font-size: 13px;
811
+
812
+ .errors-wrapper {
813
+ .error-element {
814
+ padding: 5px 0;
815
+ }
816
+ }
817
+ }
818
+
819
+ .tooltip-arrow {
820
+ width: 0;
821
+ height: 0;
822
+ border-style: solid;
823
+ position: absolute;
824
+ margin: 5px;
825
+ border-color: $ac-white;
826
+ }
827
+ }
828
+
829
+ &[x-placement^="top"] {
830
+ margin-bottom: 5px;
831
+
832
+ .tooltip-arrow {
833
+ border-width: 5px 5px 0 5px;
834
+ border-left-color: transparent !important;
835
+ border-right-color: transparent !important;
836
+ border-bottom-color: transparent !important;
837
+ bottom: -5px;
838
+ left: calc(50% - 5px);
839
+ margin-top: 0;
840
+ margin-bottom: 0;
841
+ }
842
+ }
843
+
844
+ &[x-placement^="bottom"] {
845
+ margin-top: 5px;
846
+
847
+ .tooltip-arrow {
848
+ border-width: 0 5px 5px 5px;
849
+ border-left-color: transparent !important;
850
+ border-right-color: transparent !important;
851
+ border-top-color: transparent !important;
852
+ top: -5px;
853
+ left: calc(50% - 5px);
854
+ margin-top: 0;
855
+ margin-bottom: 0;
856
+ }
857
+ }
858
+
859
+ &[x-placement^="right"] {
860
+ margin-left: 5px;
861
+
862
+ .tooltip-arrow {
863
+ border-width: 5px 5px 5px 0;
864
+ border-left-color: transparent !important;
865
+ border-top-color: transparent !important;
866
+ border-bottom-color: transparent !important;
867
+ left: -5px;
868
+ top: calc(50% - 5px);
869
+ margin-left: 0;
870
+ margin-right: 0;
871
+ }
872
+ }
873
+
874
+ &[x-placement^="left"] {
875
+ margin-right: 5px;
876
+
877
+ .tooltip-arrow {
878
+ border-width: 5px 0 5px 5px;
879
+ border-top-color: transparent !important;
880
+ border-right-color: transparent !important;
881
+ border-bottom-color: transparent !important;
882
+ right: -5px;
883
+ top: calc(50% - 5px);
884
+ margin-left: 0;
885
+ margin-right: 0;
886
+ }
887
+ }
888
+
889
+ &.popover {
890
+ $color: #f9f9f9;
891
+
892
+ .popover-inner {
893
+ background: $color;
894
+ color: black;
895
+ padding: 24px;
896
+ border-radius: 4px;
897
+ box-shadow: $ac-shadow-1;
898
+ }
899
+
900
+ .popover-arrow {
901
+ border-color: $color;
902
+ }
903
+ }
904
+
905
+ &[aria-hidden="true"] {
906
+ visibility: hidden;
907
+ opacity: 0;
908
+ transition: opacity 0.15s, visibility 0.15s;
909
+ }
910
+
911
+ &[aria-hidden="false"] {
912
+ visibility: visible;
913
+ opacity: 1;
914
+ transition: opacity 0.15s;
915
+ }
916
+ }
917
+
656
918
  // Customize tooltip end
657
919
 
658
920
  // ac-footer sticky start
@@ -701,30 +963,14 @@ $border_color_4: transparent transparent #585d6e transparent;
701
963
  // Status css
702
964
  // ac-footer sticky end
703
965
 
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;
966
+ // terminal scss end
967
+ .is-dark-theme {
968
+ a {
969
+ &:hover {
970
+ color: #485fc7;
724
971
  }
725
972
  }
726
973
  }
727
- // terminal scss end
728
974
 
729
975
  /****************************************
730
976
  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
+ }