@import "../../style/themes/default";
@import "../../style/mixins/index";

@alert-prefix-cls: ~"@{ui-prefix}-alert";

@alert-message-color: @heading-color;
@alert-text-color: @text-color;

.@{alert-prefix-cls} {
  .reset-component;
  position: relative;
  padding: 8px 15px 8px 37px;
  border-radius: @border-radius-base;
  margin-bottom: 16px;

  &_success {
    background-color: ~`colorPalette("@{success-color}", 1)`;
    .@{alert-prefix-cls}__icon {
      color: @success-color;
    }
  }

  &_info {
    background-color: ~`colorPalette("@{info-color}", 1)`;
    .@{alert-prefix-cls}__icon {
      color: @info-color;
    }
  }

  &_warning {
    background-color: ~`colorPalette("@{warning-color}", 1)`;
    .@{alert-prefix-cls}__icon {
      color: @warning-color;
    }
  }

  &_error {
    background-color: ~`colorPalette("@{error-color}", 1)`;
    .@{alert-prefix-cls}__icon {
      color: @error-color;
    }
  }

  &_close-text {
    position: absolute;
    right: 16px;
  }

  &_description {
    font-size: @font-size-base;
    line-height: 22px;
    display: none;
  }

  &&_no-icon {
    padding: 8px 15px;
  }

  &__icon {
    //top: 8px + @font-size-base * @line-height-base / 2 - @font-size-base / 2 + 1px;
    left: 16px;
    position: absolute;
  }

  &__icon-close {
    font-size: @font-size-sm;
    position: absolute;
    right: 16px;
    top: 8px;
    line-height: 22px;
    overflow: hidden;
    cursor: pointer;

    .@{iconfont-css-prefix}_cross {
      color: @text-color-secondary;
      transition: color .3s;
      &:hover {
        color: #404040;
      }
    }
  }

  &_with-description {
    padding: 15px 15px 15px 64px;
    position: relative;
    border-radius: @border-radius-base;
    color: @text-color;
    line-height: @line-height-base;
  }

  &_with-description&_no-icon {
    padding: 15px;
  }

  &_with-description &__icon {
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 24px;
  }

  &_with-description &__icon-close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    font-size: @font-size-base;
  }

  &_with-description &__message {
    font-size: @font-size-lg;
    color: @alert-message-color;
    display: block;
    margin-bottom: 4px;
  }

  &_with-description &__description {
    display: block;
  }

  &&_close {
    height: 0 !important;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: all .3s @ease-in-out-circ;
    transform-origin: 50% 0;
  }

  &_slide-up-leave {
    animation: antAlertSlideUpOut .3s @ease-in-out-circ;
    animation-fill-mode: both;
  }

  &_banner {
    border-radius: 0;
    border: 0;
    margin-bottom: 0;
  }
}

@keyframes antAlertSlideUpIn {
  0% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
}

@keyframes antAlertSlideUpOut {
  0% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
}
