@appscode/design-system 2.0.18 → 2.0.19-alpha.10

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 (160) hide show
  1. package/main.scss +4 -18
  2. package/package.json +1 -1
  3. package/{base → vue-components/styles/base}/utilities/_grid.scss +1 -1
  4. package/vue-components/styles/components/_accordion.scss +117 -0
  5. package/vue-components/styles/components/_add-card.scss +70 -0
  6. package/vue-components/styles/components/_all.scss +38 -0
  7. package/vue-components/styles/components/_breadcrumb.scss +32 -0
  8. package/vue-components/styles/components/_button.scss +110 -0
  9. package/vue-components/styles/components/_card-body-wrapper.scss +54 -0
  10. package/vue-components/styles/components/_direct-deploy.scss +69 -0
  11. package/vue-components/styles/components/_dropdown.scss +32 -0
  12. package/vue-components/styles/components/_modal.scss +216 -0
  13. package/vue-components/styles/components/_options.scss +134 -0
  14. package/vue-components/styles/components/_table.scss +430 -0
  15. package/vue-components/styles/components/_tabs.scss +338 -0
  16. package/vue-components/styles/components/alert/_alert-message.scss +16 -0
  17. package/vue-components/styles/components/alert/_alert.scss +123 -0
  18. package/vue-components/styles/components/alert/_all.scss +3 -0
  19. package/vue-components/styles/components/alert/_toast.scss +50 -0
  20. package/vue-components/styles/components/cards/_all.scss +8 -0
  21. package/vue-components/styles/components/cards/_cluster.scss +97 -0
  22. package/vue-components/styles/components/cards/_features.scss +26 -0
  23. package/vue-components/styles/components/cards/_info.scss +83 -0
  24. package/vue-components/styles/components/cards/_monitoring.scss +24 -0
  25. package/vue-components/styles/components/cards/_org.scss +59 -0
  26. package/vue-components/styles/components/cards/_vendor.scss +58 -0
  27. package/vue-components/styles/components/content/_all.scss +2 -0
  28. package/vue-components/styles/components/content/_content-header.scss +14 -0
  29. package/vue-components/styles/components/content/_content-layout.scss +4 -0
  30. package/vue-components/styles/components/editor/_all.scss +2 -0
  31. package/vue-components/styles/components/editor/_filtered-file-editor.scss +195 -0
  32. package/vue-components/styles/components/footer/_all.scss +3 -0
  33. package/vue-components/styles/components/footer/_footer-area.scss +26 -0
  34. package/vue-components/styles/components/footer/_footer-item.scss +14 -0
  35. package/vue-components/styles/components/footer/_footer-items.scss +5 -0
  36. package/vue-components/styles/components/form-fields/_all.scss +4 -0
  37. package/vue-components/styles/components/form-fields/_file-upload.scss +42 -0
  38. package/vue-components/styles/components/form-fields/_form-footer.scss +9 -0
  39. package/{components → vue-components/styles/components/form-fields}/_input.scss +47 -32
  40. package/vue-components/styles/components/header/_header-item.scss +13 -0
  41. package/vue-components/styles/components/header/_header.scss +7 -0
  42. package/vue-components/styles/components/navbar/_all.scss +2 -0
  43. package/vue-components/styles/components/navbar/_menu-content.scss +527 -0
  44. package/vue-components/styles/components/navbar/_navbar.scss +73 -0
  45. package/vue-components/styles/components/navbar/_notification.scss +103 -0
  46. package/vue-components/styles/components/select-box/_ac-select-box.scss +49 -0
  47. package/vue-components/styles/components/select-box/_all.scss +2 -0
  48. package/vue-components/styles/components/sidebar/_all.scss +1 -0
  49. package/vue-components/styles/components/sidebar/_left-sidebar.scss +222 -0
  50. package/{components → vue-components/styles/components}/ui-builder/_ui-builder.scss +6 -39
  51. package/vue-components/v3/accordion/Accordion.vue +1 -117
  52. package/vue-components/v3/alert/Alert.vue +1 -218
  53. package/vue-components/v3/alert/AlertMessage.vue +46 -0
  54. package/vue-components/v3/alert/Toast.vue +1 -50
  55. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +1 -33
  56. package/vue-components/v3/button/Button.vue +2 -63
  57. package/vue-components/v3/button/Buttons.vue +0 -8
  58. package/vue-components/v3/cards/Cluster.vue +2 -93
  59. package/vue-components/v3/cards/FeatureCard.vue +1 -25
  60. package/vue-components/v3/cards/FeatureCards.vue +5 -1
  61. package/vue-components/v3/cards/InfoCard.vue +1 -80
  62. package/vue-components/v3/cards/Monitoring.vue +1 -24
  63. package/vue-components/v3/cards/OrgCard.vue +1 -59
  64. package/vue-components/v3/cards/Payment.vue +3 -0
  65. package/vue-components/v3/cards/Vendor.vue +2 -58
  66. package/vue-components/v3/content/ContentHeader.vue +1 -14
  67. package/vue-components/v3/content/ContentLayout.vue +1 -7
  68. package/vue-components/v3/dropdown/DropdownAction.vue +1 -32
  69. package/vue-components/v3/editor/FilteredFileEditor.vue +2 -196
  70. package/vue-components/v3/footer/FooterArea.vue +2 -27
  71. package/vue-components/v3/footer/FooterItem.vue +1 -15
  72. package/vue-components/v3/footer/FooterItems.vue +2 -7
  73. package/vue-components/v3/form/FormFooter.vue +1 -9
  74. package/vue-components/v3/form-fields/AcSingleInput.vue +3 -1
  75. package/vue-components/v3/form-fields/FileUpload.vue +1 -42
  76. package/vue-components/v3/header/Header.vue +1 -7
  77. package/vue-components/v3/header/HeaderItem.vue +1 -13
  78. package/vue-components/v3/modal/Modal.vue +1 -216
  79. package/vue-components/v3/navbar/Appdrawer.vue +1 -121
  80. package/vue-components/v3/navbar/Navbar.vue +2 -92
  81. package/vue-components/v3/navbar/NavbarItem.vue +0 -65
  82. package/vue-components/v3/navbar/NavbarItemContent.vue +0 -275
  83. package/vue-components/v3/navbar/Notification.vue +1 -103
  84. package/vue-components/v3/navbar/User.vue +6 -175
  85. package/vue-components/v3/option-dots/Options.vue +1 -144
  86. package/vue-components/v3/sidebar/ClusterSwitcher.vue +3 -1
  87. package/vue-components/v3/sidebar/Sidebar.vue +1 -201
  88. package/vue-components/v3/tab/Tabs.vue +1 -24
  89. package/vue-components/v3/table/Table.vue +1 -453
  90. package/components/_ac-alert-box.scss +0 -205
  91. package/components/_ac-content-layout.scss +0 -165
  92. package/components/_ac-modal.scss +0 -212
  93. package/components/_ac-options.scss +0 -122
  94. package/components/_ac-select-box.scss +0 -49
  95. package/components/_ac-table.scss +0 -503
  96. package/components/_ac-tabs.scss +0 -313
  97. package/components/_accordion.scss +0 -117
  98. package/components/_add-card.scss +0 -70
  99. package/components/_all.scss +0 -35
  100. package/components/_buttons.scss +0 -779
  101. package/components/_card-body-wrapper.scss +0 -54
  102. package/components/_direct-deploy.scss +0 -69
  103. package/components/_left-sidebar-menu.scss +0 -482
  104. package/components/_navbar.scss +0 -786
  105. /package/{base → vue-components/styles/base}/_video-player.scss +0 -0
  106. /package/{base → vue-components/styles/base}/utilities/_all.scss +0 -0
  107. /package/{base → vue-components/styles/base}/utilities/_colors.scss +0 -0
  108. /package/{base → vue-components/styles/base}/utilities/_customize-bulma.scss +0 -0
  109. /package/{base → vue-components/styles/base}/utilities/_extended.scss +0 -0
  110. /package/{base → vue-components/styles/base}/utilities/_global.scss +0 -0
  111. /package/{base → vue-components/styles/base}/utilities/_layouts.scss +0 -0
  112. /package/{base → vue-components/styles/base}/utilities/_mixin.scss +0 -0
  113. /package/{base → vue-components/styles/base}/utilities/_spacing.scss +0 -0
  114. /package/{base → vue-components/styles/base}/utilities/_typography.scss +0 -0
  115. /package/{components → vue-components/styles/components}/_ac-calendar.scss +0 -0
  116. /package/{components → vue-components/styles/components}/_ac-code-highlight.scss +0 -0
  117. /package/{components → vue-components/styles/components}/_ac-drag.scss +0 -0
  118. /package/{components → vue-components/styles/components}/_ac-tags.scss +0 -0
  119. /package/{components → vue-components/styles/components}/_breadcumb.scss +0 -0
  120. /package/{components → vue-components/styles/components}/_dashboard-header.scss +0 -0
  121. /package/{components → vue-components/styles/components}/_getkeeper.scss +0 -0
  122. /package/{components → vue-components/styles/components}/_go-to-top.scss +0 -0
  123. /package/{components → vue-components/styles/components}/_graph.scss +0 -0
  124. /package/{components → vue-components/styles/components}/_nested-list.scss +0 -0
  125. /package/{components → vue-components/styles/components}/_overview-info.scss +0 -0
  126. /package/{components → vue-components/styles/components}/_overview-page.scss +0 -0
  127. /package/{components → vue-components/styles/components}/_pagination.scss +0 -0
  128. /package/{components → vue-components/styles/components}/_preloader.scss +0 -0
  129. /package/{components → vue-components/styles/components}/_preview-modal.scss +0 -0
  130. /package/{components → vue-components/styles/components}/_pricing-table.scss +0 -0
  131. /package/{components → vue-components/styles/components}/_progress-bar.scss +0 -0
  132. /package/{components → vue-components/styles/components}/_report.scss +0 -0
  133. /package/{components → vue-components/styles/components}/_table-of-content.scss +0 -0
  134. /package/{components → vue-components/styles/components}/_terminal.scss +0 -0
  135. /package/{components → vue-components/styles/components}/_tfa.scss +0 -0
  136. /package/{components → vue-components/styles/components}/_transitions.scss +0 -0
  137. /package/{components → vue-components/styles/components}/_widget-menu.scss +0 -0
  138. /package/{components → vue-components/styles/components}/_wizard.scss +0 -0
  139. /package/{components → vue-components/styles/components}/ac-toaster/_ac-toasted.scss +0 -0
  140. /package/{components → vue-components/styles/components}/bbum/_activities-header.scss +0 -0
  141. /package/{components → vue-components/styles/components}/bbum/_all.scss +0 -0
  142. /package/{components → vue-components/styles/components}/bbum/_card-team.scss +0 -0
  143. /package/{components → vue-components/styles/components}/bbum/_information-center.scss +0 -0
  144. /package/{components → vue-components/styles/components}/bbum/_left-sidebar.scss +0 -0
  145. /package/{components → vue-components/styles/components}/bbum/_mobile-desktop.scss +0 -0
  146. /package/{components → vue-components/styles/components}/bbum/_post.scss +0 -0
  147. /package/{components → vue-components/styles/components}/bbum/_sign-up-notification.scss +0 -0
  148. /package/{components → vue-components/styles/components}/bbum/_single-post-preview.scss +0 -0
  149. /package/{components → vue-components/styles/components}/bbum/_user-profile.scss +0 -0
  150. /package/{components → vue-components/styles/components/cards}/_payment-card.scss +0 -0
  151. /package/{components → vue-components/styles/components/cards}/_subscription-card.scss +0 -0
  152. /package/{components → vue-components/styles/components/editor}/_monaco-editor.scss +0 -0
  153. /package/{components → vue-components/styles/components/form-fields}/_image-upload.scss +0 -0
  154. /package/{components → vue-components/styles/components/form-fields}/_input-card.scss +0 -0
  155. /package/{components/_app-drawer.scss → vue-components/styles/components/header/_all.scss} +0 -0
  156. /package/{components → vue-components/styles/components/select-box}/_multi-select.scss +0 -0
  157. /package/{components → vue-components/styles/components}/ui-builder/_vue-open-api.scss +0 -0
  158. /package/{layouts → vue-components/styles/layouts}/_404.scss +0 -0
  159. /package/{layouts → vue-components/styles/layouts}/_all.scss +0 -0
  160. /package/{layouts → vue-components/styles/layouts}/_code-preview.scss +0 -0
@@ -260,457 +260,5 @@ onUpdated(() => {
260
260
  </template>
261
261
 
262
262
  <style lang="scss">
263
- // INFO TABLE END
264
-
265
- // GENERAL TABLE START
266
- .table.ac-table {
267
- background-color: transparent;
268
- margin-bottom: 0;
269
-
270
- thead {
271
- background-color: $primary-95;
272
- font-size: 13px;
273
- line-height: initial;
274
-
275
- tr {
276
- border-bottom: 1px solid $primary-95;
277
-
278
- th {
279
- padding: 10px 20px;
280
- color: $primary-5;
281
- border: none;
282
- font-weight: 500;
283
- // background-color: $primary-97;
284
- // text-transform: uppercase;
285
- font-weight: 500;
286
-
287
- &.sorting {
288
- cursor: pointer;
289
- position: relative;
290
-
291
- &.sorting-asc {
292
- &::before {
293
- color: $primary-5;
294
- }
295
- }
296
-
297
- &.sorting-desc {
298
- &::after {
299
- color: $primary-5;
300
- }
301
- }
302
-
303
- &:after,
304
- &::before {
305
- position: absolute;
306
- color: #808998;
307
- top: 0.4em;
308
- font-size: 13px;
309
- font-weight: 1000;
310
- display: block;
311
- }
312
-
313
- &:before {
314
- right: 1em;
315
- content: "\2191";
316
- }
317
-
318
- &:after {
319
- right: 0.5em;
320
- content: "\2193";
321
- }
322
- }
323
- }
324
- }
325
- }
326
-
327
- tbody {
328
- &.is-selected {
329
- transform: matrix(1, 0, 0, 1, 0, 0) !important;
330
- box-shadow: inset 0 0 0 1px $primary;
331
- border-radius: 4px;
332
- border-bottom: none;
333
- color: $black-5;
334
- }
335
-
336
- tr {
337
- border-bottom: 1px solid $primary-90;
338
- &.is-link {
339
- cursor: pointer;
340
- }
341
- &.is-selected {
342
- background-color: $primary-97 !important;
343
- transform: matrix(1, 0, 0, 1, 0, 0) !important;
344
- box-shadow: inset 0 0 0 1.2px $primary;
345
- border-radius: 4px;
346
- border-bottom: none;
347
- color: $black-5;
348
- transition: 0.3s ease-in-out;
349
- .tag {
350
- background-color: $primary-80;
351
- }
352
- &:hover {
353
- background-color: $primary-95 !important;
354
- transform: matrix(1, 0, 0, 1, 0, 0) !important;
355
- box-shadow: inset 0 0 0 1.2px $primary !important;
356
- }
357
- }
358
-
359
- &.is-hoverless {
360
- box-shadow: none !important;
361
- transform: none !important;
362
- background-color: $white-100 !important;
363
- }
364
- td {
365
- font-size: 13px;
366
- padding: 5px 20px;
367
- color: $primary-10;
368
- border: none;
369
-
370
- a:not(.tag a) {
371
- color: $primary;
372
- font-weight: 500 !important;
373
- transition: 0.3s ease-in-out;
374
- font-weight: 400;
375
- }
376
-
377
- .tags {
378
- .tag {
379
- a {
380
- color: $primary;
381
- transition: 0.3s ease-in-out;
382
- font-weight: 500;
383
-
384
- &:hover {
385
- color: $primary-5;
386
- }
387
- }
388
- }
389
- }
390
-
391
- &.is-danger {
392
- color: $danger;
393
- }
394
-
395
- .image-with-status {
396
- margin-right: 20px;
397
- position: relative;
398
- z-index: 1;
399
- display: inline-flex;
400
-
401
- &.is-danger {
402
- background-color: $danger;
403
- }
404
-
405
- i.fa {
406
- position: absolute;
407
- background-color: $primary;
408
- color: $white-100;
409
- font-size: 11px;
410
- width: 15px;
411
- height: 15px;
412
- text-align: center;
413
- line-height: 15px;
414
- border-radius: 50%;
415
- right: -5px;
416
- top: 5px;
417
-
418
- &.fa-close {
419
- background-color: $danger;
420
- }
421
- }
422
-
423
- img {
424
- width: 20px;
425
- height: 20px;
426
- object-fit: cover;
427
- border-radius: 50%;
428
- }
429
- }
430
-
431
- .collapsible-row {
432
- max-height: 0;
433
- overflow-y: hidden;
434
-
435
- &.is-active {
436
- max-height: 60vh;
437
- overflow-y: overlay;
438
- animation: expand 0.5s ease-in-out;
439
- }
440
-
441
- &.is-closed {
442
- max-height: 0;
443
- overflow-y: hidden;
444
- animation: collapse 0.5s ease-in-out;
445
- }
446
- }
447
-
448
- white-space: nowrap;
449
- }
450
-
451
- .options-items {
452
- a:hover {
453
- color: $white-100;
454
- text-decoration: none;
455
- }
456
- }
457
-
458
- transition: 0.3s ease-in-out;
459
- }
460
- }
461
-
462
- .increase-width {
463
- position: relative;
464
- visibility: hidden;
465
- width: 36px;
466
-
467
- .increase-innner {
468
- border-bottom: 1px solid $primary-90;
469
- border-top: 1px solid $primary-90;
470
- bottom: -1px;
471
- left: 0;
472
- position: absolute;
473
- right: -451px;
474
- top: -1px;
475
- visibility: visible;
476
- background-color: $primary-90;
477
- }
478
- }
479
-
480
- td {
481
- &.increase-width {
482
- .increase-innner {
483
- background-color: transparent;
484
- }
485
- }
486
- }
487
-
488
- &.is-bordered {
489
- thead {
490
- tr {
491
- th {
492
- border-top: 1px solid $primary-95;
493
- border-bottom: 1px solid $primary-95;
494
- border-right: 1px solid $primary-95;
495
- background-color: $primary-97;
496
-
497
- &:first-child {
498
- border-left: 1px solid transparent;
499
- }
500
- &:last-child {
501
- border-right: 1px solid transparent;
502
- }
503
- }
504
- }
505
- }
506
-
507
- tbody {
508
- tr {
509
- &:hover {
510
- box-shadow: none;
511
- }
512
-
513
- td {
514
- font-size: 13px;
515
- color: $primary-20;
516
- background-color: transparent;
517
- border-bottom: 1px solid $primary-95;
518
- border-right: 1px solid $primary-95;
519
- &:last-child {
520
- border-right: 1px solid transparent;
521
- }
522
- &:first-child {
523
- border-left: 1px solid transparent;
524
- }
525
-
526
- &:first-child {
527
- color: $primary-5;
528
- border-radius: 0;
529
- }
530
-
531
- &:last-child {
532
- border-radius: 0;
533
- }
534
-
535
- .ac-single-checkbox {
536
- .is-checkradio[type="checkbox"] {
537
- &.ac-checkbox + label {
538
- color: $primary-20;
539
-
540
- &::before {
541
- height: 16px;
542
- width: 16px;
543
- background-color: $primary-95;
544
- }
545
-
546
- &::after {
547
- top: 6px;
548
- left: 6px;
549
- border-color: $black-80;
550
- width: 0.3rem;
551
- height: 0.5rem;
552
- }
553
- }
554
-
555
- &:checked + label::before {
556
- background-color: $primary;
557
- border-color: $primary;
558
- }
559
-
560
- &:checked + label::after {
561
- border-color: $primary-90;
562
- }
563
- }
564
- }
565
-
566
- .is-checkradio[type="checkbox"].ac-checkbox:checked + label::before {
567
- background-color: $primary;
568
- border-color: $primary;
569
- }
570
-
571
- .is-checkradio[type="checkbox"] + label::before,
572
- .is-checkradio[type="checkbox"] + label:before {
573
- top: 3px;
574
- }
575
- }
576
- }
577
- }
578
- }
579
-
580
- &.ac-separate-tr {
581
- border-collapse: separate;
582
- border-spacing: 0px 5px;
583
-
584
- tbody {
585
- tr {
586
- background-color: transparent;
587
- }
588
- }
589
- }
590
-
591
- &.is-middle-aligned {
592
- thead {
593
- tr {
594
- th {
595
- vertical-align: middle;
596
- }
597
- }
598
- }
599
-
600
- tbody {
601
- tr {
602
- td {
603
- vertical-align: middle;
604
- }
605
- }
606
- }
607
- }
608
-
609
- &.is-dark {
610
- thead {
611
- background-color: $primary-5;
612
-
613
- tr {
614
- th {
615
- color: $white-100;
616
- }
617
- }
618
- }
619
-
620
- tbody {
621
- tr {
622
- td {
623
- color: $white-100;
624
- }
625
-
626
- &:nth-child(odd) {
627
- background-color: $primary-20;
628
- }
629
-
630
- &:nth-child(even) {
631
- background-color: $primary-5;
632
- }
633
-
634
- &:hover {
635
- background-color: $primary;
636
-
637
- td {
638
- color: $white-100;
639
- }
640
- }
641
- }
642
- }
643
- }
644
- }
645
-
646
- .table.ac-table tbody tr:hover td a:not(.tag a) {
647
- text-decoration: underline;
648
- color: $primary;
649
- }
650
-
651
- // table inner shadow
652
- .table-inner-shadow {
653
- border-radius: 0px;
654
- background: $primary-90;
655
- box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px #ffffff;
656
- }
657
-
658
- @keyframes expand {
659
- from {
660
- max-height: 0;
661
- overflow-y: hidden;
662
- }
663
- 1% {
664
- overflow-y: hidden;
665
- }
666
- 99% {
667
- overflow-y: hidden;
668
- }
669
- to {
670
- max-height: 60vh;
671
- overflow-y: overlay;
672
- }
673
- }
674
-
675
- @keyframes collapse {
676
- from {
677
- max-height: 60vh;
678
- overflow-y: overlay;
679
- }
680
- 1% {
681
- overflow-y: hidden;
682
- }
683
- 99% {
684
- overflow-y: hidden;
685
- }
686
- to {
687
- max-height: 0;
688
- overflow-y: hidden;
689
- }
690
- }
691
-
692
- // GENERAL TABLE END
693
-
694
- /****************************************
695
- Responsive Classes
696
- *****************************************/
697
- // Extra small devices (portrait phones, less than 576px)
698
- @media (max-width: 575.98px) {
699
- }
700
-
701
- // Small devices (landscape phones, 576px and up)
702
- @media (min-width: 576px) and (max-width: 767.98px) {
703
- }
704
-
705
- // Medium devices (tablets, 768px and up)
706
- @media (min-width: 768px) and (max-width: 991.98px) {
707
- }
708
-
709
- // Large devices (desktops, 992px and up)
710
- @media (min-width: 992px) and (max-width: 1199.98px) {
711
- }
712
-
713
- // Extra large devices (large desktops, 1200px and up)
714
- @media (min-width: 1200px) {
715
- }
263
+ @import "../../../vue-components/styles/components/table";
716
264
  </style>
@@ -1,205 +0,0 @@
1
- // .toast {
2
- // box-shadow: $ac-shadow-sm;
3
- // border: 1px solid $primary-90;
4
- // width: 350px;
5
-
6
- // .toast-header {
7
- // padding: 8px 12px;
8
- // border-bottom: 1px solid $primary-90;
9
-
10
- // .button {
11
- // &:hover {
12
- // color: #000000;
13
- // }
14
- // }
15
- // }
16
-
17
- // .toast-body {
18
- // padding: 8px 12px;
19
- // }
20
- // }
21
-
22
- // // mixin for .ac-notification
23
- // @mixin acNotification($colorName) {
24
- // background-color: scale-color($color: $colorName, $lightness: 80%);
25
- // color: $white-100;
26
- // border-color: $colorName;
27
-
28
- // p {
29
- // color: $colorName;
30
-
31
- // a {
32
- // color: $colorName;
33
-
34
- // &:hover {
35
- // color: $colorName;
36
- // opacity: 0.8;
37
- // }
38
- // }
39
- // }
40
- // }
41
- // @mixin acPrimaryNotification() {
42
- // background-color: hsla(
43
- // var(--hsl-hue),
44
- // var(--hsl-saturation),
45
- // var(--hsl-lightness),
46
- // 0.2
47
- // );
48
- // color: $white-100;
49
- // border-color: $primary;
50
-
51
- // p {
52
- // color: $primary;
53
-
54
- // a {
55
- // color: $primary;
56
-
57
- // &:hover {
58
- // color: $primary;
59
- // opacity: 0.8;
60
- // }
61
- // }
62
- // }
63
- // }
64
-
65
- // // is-primary
66
- // .ac-notification.is-primary {
67
- // @include acPrimaryNotification();
68
- // }
69
-
70
- // // is.info
71
- // .ac-notification.is-info {
72
- // @include acNotification($info);
73
- // }
74
-
75
- // // is.success
76
- // .ac-notification.is-success {
77
- // @include acNotification($success);
78
- // }
79
-
80
- // // is-danger
81
- // .ac-notification.is-danger {
82
- // @include acNotification($danger);
83
- // }
84
-
85
- // // is-warning
86
- // .ac-notification.is-warning {
87
- // @include acNotification($warning);
88
- // }
89
-
90
- // /*====================================
91
- // AC Toast
92
- // =====================================*/
93
-
94
- // .ac-toast {
95
- // width: 350px;
96
- // display: flex;
97
- // align-items: center;
98
- // justify-content: space-between;
99
- // font-size: 13px;
100
- // border-radius: 4px;
101
- // position: relative;
102
- // padding-right: 30px;
103
- // margin-bottom: 10px;
104
-
105
- // * {
106
- // color: $white-100;
107
- // }
108
-
109
- // p {
110
- // padding-left: 16px;
111
-
112
- // i.fa {
113
- // padding-right: 0 !important;
114
- // margin-right: 4px;
115
- // }
116
- // }
117
-
118
- // a {
119
- // font-weight: 500;
120
- // text-decoration: underline;
121
- // padding: 0 15px;
122
-
123
- // &:hover {
124
- // color: $primary-90;
125
- // }
126
- // }
127
-
128
- // button.close-button {
129
- // border-radius: 0px;
130
- // background-color: transparent;
131
- // border: none;
132
- // color: $white-100;
133
- // position: absolute;
134
- // right: 0;
135
- // top: 0;
136
- // padding: 5px;
137
- // height: 100%;
138
- // width: 30px;
139
- // z-index: 1;
140
- // cursor: pointer;
141
- // border-left: 1px solid #dddddd;
142
- // }
143
- // }
144
-
145
- // // mixin for .ac-toast
146
- // @mixin acToast($colorName) {
147
- // background-color: $colorName;
148
- // color: $white-100;
149
- // border-color: $colorName;
150
- // }
151
-
152
- // // is-primary
153
- // .ac-toast.is-primary {
154
- // @include acToast($primary);
155
- // }
156
-
157
- // // is-info
158
- // .ac-toast.is-info {
159
- // @include acToast($info);
160
- // }
161
-
162
- // // is.success
163
- // .ac-toast.is-success {
164
- // @include acToast($success);
165
- // }
166
-
167
- // // is-danger
168
- // .ac-toast.is-danger {
169
- // @include acToast($danger);
170
- // }
171
-
172
- // // is-warning
173
- // .ac-toast.is-warning {
174
- // @include acToast($warning);
175
- // }
176
-
177
- // // dark theme start
178
- // .is-dark-theme {
179
- // .ac-notification.is-danger {
180
- // background-color: $black-80;
181
- // }
182
- // }
183
- // // dark theme end
184
- // /****************************************
185
- // Responsive Classes
186
- // *****************************************/
187
- // // Extra small devices (portrait phones, less than 576px)
188
- // @media (max-width: 575.98px) {
189
- // }
190
-
191
- // // Small devices (landscape phones, 576px and up)
192
- // @media (min-width: 576px) and (max-width: 767.98px) {
193
- // }
194
-
195
- // // Medium devices (tablets, 768px and up)
196
- // @media (min-width: 768px) and (max-width: 991.98px) {
197
- // }
198
-
199
- // // Large devices (desktops, 992px and up)
200
- // @media (min-width: 992px) and (max-width: 1199.98px) {
201
- // }
202
-
203
- // // Extra large devices (large desktops, 1200px and up)
204
- // @media (min-width: 1200px) {
205
- // }