@import './../theme/vars.scss';

$notice-prefix-cls: amos-notice;

.#{$notice-prefix-cls} {
  position: fixed;
  top: 16px;
  left: 0;
  z-index: $zindex-notice;
  width: 100%;
  font-size: $font-size-base;
  pointer-events: none;

  &-inner {
    padding: 8px;
    text-align: center;

    &:first-child {
      margin-top: -8px;
    }

    &-content {
      display: inline-block;
      padding: 8px 16px;
      pointer-events: all;
      background: $component-background;
      border-radius: $border-radius-base;
      box-shadow: $shadow-2;
    }
  }

  &-success .#{$iconfont-css-prefix} {
    color: $success-color;
  }

  &-error .#{$iconfont-css-prefix} {
    color: $error-color;
  }

  &-warning .#{$iconfont-css-prefix} {
    color: $warning-color;
  }

  &-info .#{$iconfont-css-prefix},
  &-loading .#{$iconfont-css-prefix} {
    color: $info-color;
  }

  .#{$iconfont-css-prefix} {
    position: relative;
    top: 1px;
    margin-right: 8px;
    font-size: $font-size-lg;
  }

  &-inner.move-up-leave.move-up-leave-active {
    overflow: hidden;
    animation-duration: 0.3s;
    animation-name: NoticeMoveOut;
  }

  &-loading {
    display: flex;
    align-items: center;
    gap: 8px;

    .#{$iconfont-css-prefix}-loading {
      top: 0;
      display: inline-block;
      width: 1em;
      height: 1em;
      margin-right: 0;
      line-height: 1em;
    }
  }
}

@keyframes NoticeMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }

  100% {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
