ant-design/components/message/style/index.less

75 lines
1.3 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@message-prefix-cls: ~"@{ant-prefix}-message";
2015-08-20 16:55:42 +08:00
.@{message-prefix-cls} {
.reset-component;
position: fixed;
2016-03-28 16:01:37 +08:00
z-index: @zindex-message;
width: 100%;
2015-07-11 18:22:35 +08:00
top: 16px;
2016-02-22 19:25:10 +08:00
left: 0;
pointer-events: none;
&-notice {
padding: 8px;
text-align: center;
&:first-child {
margin-top: -8px;
}
}
2015-07-11 18:00:58 +08:00
&-notice-content {
padding: @message-notice-content-padding;
2015-07-11 18:00:58 +08:00
border-radius: @border-radius-base;
2016-04-17 18:19:22 +08:00
box-shadow: @shadow-2;
background: @component-background;
display: inline-block;
pointer-events: all;
}
&-success .@{iconfont-css-prefix} {
2015-07-11 18:00:58 +08:00
color: @success-color;
}
&-error .@{iconfont-css-prefix} {
2015-07-11 18:00:58 +08:00
color: @error-color;
}
&-warning .@{iconfont-css-prefix} {
color: @warning-color;
}
&-info .@{iconfont-css-prefix},
&-loading .@{iconfont-css-prefix} {
color: @info-color;
}
.@{iconfont-css-prefix} {
margin-right: 8px;
2016-11-08 21:07:01 +08:00
font-size: @font-size-lg;
top: 1px;
position: relative;
}
&-notice.move-up-leave.move-up-leave-active {
animation-name: MessageMoveOut;
overflow: hidden;
animation-duration: .3s;
}
}
@keyframes MessageMoveOut {
0% {
opacity: 1;
max-height: 150px;
padding: 8px;
}
100% {
opacity: 0;
max-height: 0;
padding: 0;
}
}