@import '../../style/themes/index';
@import '../../style/mixins/index';

@yee-message-prefix-cls: ~'@{yee-prefix}-message';

.@{yee-message-prefix-cls} {
  .yee-reset-component;

  position: fixed;
  top: 16px;
  left: 0;
  z-index: @yee-zindex-message;
  width: 100%;
  pointer-events: none;

  &-notice {
    padding: 8px;
    text-align: center;
    &:first-child {
      margin-top: -8px;
    }
  }

  &-notice-content {
    display: inline-block;
    padding: @yee-message-notice-content-padding;
    background: @yee-component-background;
    border-radius: @yee-border-radius-base;
    box-shadow: @yee-shadow-2;
    pointer-events: all;
  }

  &-success .@{yee-iconfont-css-prefix} {
    color: @yee-success-color;
  }

  &-error .@{yee-iconfont-css-prefix} {
    color: @yee-error-color;
  }

  &-warning .@{yee-iconfont-css-prefix} {
    color: @yee-warning-color;
  }

  &-info .@{yee-iconfont-css-prefix},
  &-loading .@{yee-iconfont-css-prefix} {
    color: @yee-info-color;
  }

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

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

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