Viewing File: /home/ubuntu/voice-assistant-backend/public/admin-assets/scss/dark/assets/elements/alert.scss

@import '../../base/base';
/*      Alert       */
body.dark {
.alert {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 0.9375rem;

  .btn {
    margin-right: 27px;

    &:hover {
      box-shadow: none;
    }
  }

  .alert-icon svg {
    vertical-align: middle;
    width: 33px;
    height: 33px;
    stroke-width: 1.2;
  }

  .btn-close {
    color: #fff;
    opacity: 1;
    width: 18px;
    background: transparent;
    padding: 13px 12px;
    box-shadow: none;

    svg {
      width: 18px;
      height: 18px;
    }
  }
}
}

/*Default Alerts*/

body.dark {
.alert-primary {
  color: #fff;
  background-color: $primary;
  border-color: $primary;
}

.alert-warning {
  color: #fff;
  background-color: $warning;
  border-color: $warning;
}

.alert-success {
  color: #fff;
  background-color: #00ab55;
  border-color: #00ab55;
}

.alert-info {
  color: #fff;
  background-color: $info;
  border-color: $info;
}

.alert-danger {
  color: #fff;
  background-color: $danger;
  border-color: $danger;
}

.alert-dark {
  color: #fff;
  background-color: $dark;
  border-color: $dark;
}
}

/*Outline Alerts*/

body.dark {
.alert-outline-primary {
  border-color: $primary;
  border-radius: 5px;
}

.alert-outline-warning {
  border-color: #dea82a;
  border-radius: 5px;
}

.alert-outline-success {
  border-color: #00ab55;
  border-radius: 5px;
}

.alert-outline-info {
  border-color: #009eda;
  border-radius: 5px;
}

.alert-outline-danger {
  border-color: $danger;
  border-radius: 5px;
}

.alert-outline-dark {
  border-color: #454656;
  border-radius: 5px;
}

.alert {
  &.alert-light .close {
    color: #0e1726;
  }

  &.solid-alert-3 .close, &.solid-alert-4 .close {
    color: #000;
  }
}

.hide-default {
  display: none;
}
}

/*      Light Alert         */

body.dark {
.btn-light {
  border-color: transparent;
}

.alert-light-primary {
  color: $primary;
  background-color: $l-primary;
  border-color: rgb(67, 97, 238, 0.55);

  svg.close {
    color: $primary;
  }
}

.alert-light-warning {
  color: $warning;
  background-color: $l-warning;
  border-color: rgb(226, 160, 63, 0.55);

  svg.close {
    color: $warning;
  }
}

.alert-light-success {
  color: #00ab55;
  background-color: $l-success;
  border-color: rgb(26, 188, 156, 0.55);

  svg.close {
    color: #00ab55;
  }
}

.alert-light-info {
  color: $info;
  background-color: $l-info;
  border-color: rgb(33, 150, 243, 0.55);

  svg.close {
    color: $info;
  }
}

.alert-light-danger {
  color: $danger;
  background-color: $l-danger;
  border-color: rgb(231, 81, 90, 0.55);

  svg.close {
    color: $danger;
  }
}

.alert-light-dark {
  color: #bfc9d4;
  background-color: $l-dark;
  border-color: rgb(59, 63, 92, 0.55);

  svg {
    &.close {
      color: $dark;
    }

    &:not(.close) {
      color: #3b3f5c !important;
    }
  }
}
}
/*  Background Alerts      */
body.dark {
.alert-background {
  color: #fff;
  background: #fff url(../../../img/ab-1.jpeg) no-repeat center center;
  background-size: cover;
  border: none;
}
}

/*  Gradient Alerts      */
body.dark {
.alert-gradient {
  color: #fff;
  border: none;
  background-size: cover;
  background-image: linear-gradient(135deg, #bc1a4e 0%, #004fe6 100%);
}
}

/* Custom Alerts */

/* Default */
body.dark {
.custom-alert-1 {
  background-color: #00ab556b;
  border-radius: 5px;
  color: #fff;

  .btn-close {
    top: 9px;
  }

  .alert-icon {
    margin-right: 25px;
  }

  .media-body {
    display: flex;
    justify-content: space-between;
  }

  .alert-text {
    margin-right: 10px;

    strong, span {
      vertical-align: sub;
    }
  }
}
}
/*  Alert with Icon */
body.dark {
.alert-icon-left {
  border-left: 64px solid;

  svg:not(.close) {
    color: #FFF;
    width: 4rem;
    left: -4rem;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.alert-icon-right {
  border-right: 64px solid;

  svg:not(.close) {
    color: #FFF;
    width: 4rem;
    right: -4rem;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  i {
    float: left;
    margin-right: 7px;
  }
}

.alert {
  &[class*=alert-arrow-]:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    border-left: 8px solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left-color: inherit;
    margin-top: -8px;
  }

  &.alert-arrow-right:before {
    left: auto;
    right: 0;
    border-left: 0;
    border-right: 8px solid;
    border-right-color: inherit;
  }
}
}
body.dark {
@media (max-width: 575px) {
  .custom-alert-1 .media-body {
    display: block;
  }

  .alert .btn {
    margin-top: 8px;
  }
}
}
Back to Directory File Manager