_notifications.scss 3.42 KB
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
/* Start notifications Styles */
#awn-popup-wrapper .awn-popup-body.awn-popup-confirm .fa {
  @apply text-warning #{!important};
}

#awn-popup-wrapper .awn-buttons .awn-btn-success {
  @apply bg-success #{!important};
}

#awn-popup-wrapper .awn-buttons .awn-btn-success:hover {
  @apply bg-success #{!important};
}

#awn-popup-wrapper .awn-buttons .awn-btn-cancel {
  @apply bg-info #{!important};
}

#awn-popup-wrapper .awn-buttons .awn-btn-cancel:hover {
  @apply bg-info #{!important};
}

.awn-toast {
  @apply bg-gray-50 text-slate-700 dark:bg-bgdark dark:text-white #{!important};
}

.awn-toast-label {
  @apply text-slate-700 dark:text-white #{!important};
}

.awn-toast-icon .fa {
  @apply text-slate-700 dark:text-white #{!important};
}

.awn-toast-wrapper {
  @apply border-gray-50 dark:border-bgdark #{!important};
}

.awn-toast-progress-bar:after {
  @apply bg-gray-50 dark:bg-bgdark #{!important};
}

.awn-toast.awn-toast-success {
  @apply text-success bg-success/20 #{!important};
}

.awn-toast.awn-toast-success .awn-toast-wrapper {
  @apply border-success/50 #{!important};
}

.awn-toast.awn-toast-success .fa,
.awn-toast.awn-toast-success b {
  @apply text-success #{!important};
}

.awn-toast.awn-toast-success .awn-toast-progress-bar:after {
  @apply bg-success #{!important};
}

.awn-toast.awn-toast-info {
  @apply text-info bg-info/20 #{!important};
}

.awn-toast.awn-toast-info .awn-toast-wrapper {
  @apply border-info/50 #{!important};
}

.awn-toast.awn-toast-info .fa,
.awn-toast.awn-toast-info b {
  @apply text-info #{!important};
}

.awn-toast.awn-toast-info .awn-toast-progress-bar:after {
  @apply text-info bg-info/20 #{!important};
}

.awn-toast.awn-toast-alert {
  @apply text-danger bg-danger/20 #{!important};
}

.awn-toast.awn-toast-alert .awn-toast-wrapper {
  @apply border-danger/50 #{!important};
}

.awn-toast.awn-toast-alert .fa,
.awn-toast.awn-toast-alert b {
  @apply text-danger #{!important};
}

.awn-toast.awn-toast-alert .awn-toast-progress-bar:after {
  @apply bg-danger #{!important};
}

.awn-toast.awn-toast-warning {
  @apply text-warning bg-warning/20 #{!important};
}

.awn-toast.awn-toast-warning .awn-toast-wrapper {
  @apply border-warning/50 #{!important};
}

.awn-toast.awn-toast-warning .fa,
.awn-toast.awn-toast-warning b {
  @apply text-warning #{!important};
}

.awn-toast.awn-toast-warning .awn-toast-progress-bar:after {
  @apply bg-warning #{!important};
}

#awn-popup-wrapper .awn-popup-body {
  @apply bg-white dark:bg-black/80 #{!important};
}

#awn-popup-wrapper .awn-popup-body.awn-popup-async-block {
  @apply text-slate-700 dark:text-white #{!important};
}

.awn-popup-loading-dots {
  @apply text-slate-500 dark:text-white/70 #{!important};
}

#awn-popup-wrapper .awn-popup-body.awn-popup-async-block {
  @apply text-2xl font-semibold text-gray-500 dark:text-white/70 #{!important};
}

@keyframes awn-loading-dots {

  0%,
  80%,
  to {
    @apply shadow-gray-500;
  }

  40% {
    @apply shadow-gray-500;
  }
}

.dark {

  @keyframes awn-loading-dots {

    0%,
    80%,
    to {
      @apply shadow-white/70;
    }

    40% {
      @apply shadow-white/70;
    }
  }
}

#awn-popup-wrapper {
  @apply text-center bg-bgdark/80 #{!important};
}

#awn-toast-container {
  @apply right-0 sm:right-[24px] rtl:left-0 rtl:right-auto rtl:sm:left-[24px] z-10 #{!important};
}

.awn-toast-wrapper {
  @apply rtl:pr-[16px] rtl:pl-[88px];
}

.awn-popup-loading-dots {
  @apply rtl:mr-[24px] rtl:ml-0;
}

/* End notifications Styles */