mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
2341a25d91
* more refactor * chore: motion support * chore: tmp test * test: Hooks * chore: static function * tmp of it * all of it * mv prefix * chore: clean up * chore: clean up * more test case * test: all base test * test: all test case * init * refactor: rm notification.open instance related code * follow up * refactor: singlton * test: notification test case * refactor to destroy * refactor: message base * test: part test case * test: more * test: more * test: all test * chore: clean up * docs: reorder * chore: fix lint * test: fix test case * chore: add act * chore: back * chore: fix style * test: notification test * test: more and more * test: fix more test * test: index * test: more & more * test: fix placement * test: fix coverage * chore: clean up * chore: bundle size * fix: 17 * chore: more * test: message * test: more test * fix: lint * test: rm class in static * chore: clean up * test: coverage * chore: fix lint
112 lines
2.0 KiB
Plaintext
112 lines
2.0 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@message-prefix-cls: ~'@{ant-prefix}-message';
|
|
|
|
.@{message-prefix-cls} {
|
|
.reset-component();
|
|
|
|
position: fixed;
|
|
top: 8px;
|
|
left: 0;
|
|
z-index: @zindex-message;
|
|
width: 100%;
|
|
pointer-events: none;
|
|
|
|
&-notice {
|
|
padding: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
&-notice-content {
|
|
display: inline-block;
|
|
padding: @message-notice-content-padding;
|
|
background: @message-notice-content-bg;
|
|
border-radius: @border-radius-base;
|
|
box-shadow: @shadow-2;
|
|
pointer-events: all;
|
|
}
|
|
|
|
&-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;
|
|
}
|
|
|
|
&-move-up {
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
&-move-up-appear,
|
|
&-move-up-enter {
|
|
animation-name: MessageMoveIn;
|
|
animation-duration: 0.3s;
|
|
animation-play-state: paused;
|
|
animation-timing-function: @ease-out-circ;
|
|
}
|
|
|
|
&-move-up-appear&-move-up-appear-active,
|
|
&-move-up-enter&-move-up-enter-active {
|
|
animation-play-state: running;
|
|
}
|
|
|
|
&-move-up-leave {
|
|
animation-name: MessageMoveOut;
|
|
animation-duration: 0.3s;
|
|
animation-play-state: paused;
|
|
animation-timing-function: @ease-out-circ;
|
|
}
|
|
|
|
&-move-up-leave&-move-up-leave-active {
|
|
animation-play-state: running;
|
|
}
|
|
}
|
|
|
|
@keyframes MessageMoveIn {
|
|
0% {
|
|
padding: 0;
|
|
transform: translateY(-100%);
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
padding: 8px;
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes MessageMoveOut {
|
|
0% {
|
|
max-height: 150px;
|
|
padding: 8px;
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
max-height: 0;
|
|
padding: 0;
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@import './rtl';
|