2018-09-05 13:28:54 +00:00
|
|
|
|
@notificationPrefixCls: rc-notification;
|
|
|
|
|
|
|
|
|
|
.@{notificationPrefixCls} {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
|
|
|
|
&-notice {
|
|
|
|
|
padding: 7px 20px 7px 10px;
|
|
|
|
|
border-radius: 3px 3px;
|
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
2019-01-09 14:03:04 +00:00
|
|
|
|
border: 0px solid rgba(0, 0, 0, 0);
|
2018-09-05 13:28:54 +00:00
|
|
|
|
background: #fff;
|
|
|
|
|
display: block;
|
|
|
|
|
width: auto;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
|
|
|
|
&-closable {
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 5px;
|
|
|
|
|
top: 3px;
|
|
|
|
|
color: #000;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
outline: none;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
|
|
|
|
filter: alpha(opacity=20);
|
2019-01-12 03:33:27 +00:00
|
|
|
|
opacity: 0.2;
|
2018-09-05 13:28:54 +00:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
&-x:after {
|
|
|
|
|
content: '×';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
filter: alpha(opacity=100);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fade-effect() {
|
|
|
|
|
animation-duration: 0.3s;
|
|
|
|
|
animation-fill-mode: both;
|
|
|
|
|
animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-fade-enter {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
.fade-effect();
|
|
|
|
|
animation-play-state: paused;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-fade-leave {
|
|
|
|
|
.fade-effect();
|
|
|
|
|
animation-play-state: paused;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-fade-enter&-fade-enter-active {
|
|
|
|
|
animation-name: rcNotificationFadeIn;
|
|
|
|
|
animation-play-state: running;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-fade-leave&-fade-leave-active {
|
|
|
|
|
animation-name: rcDialogFadeOut;
|
|
|
|
|
animation-play-state: running;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes rcNotificationFadeIn {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes rcDialogFadeOut {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-09 14:03:04 +00:00
|
|
|
|
}
|