You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

172 lines
3.1 KiB

@import "../../style/themes/default";
@import "../../style/mixins/index";
9 years ago
@alert-prefix-cls: ~"@{ant-prefix}-alert";
9 years ago
@alert-message-color: @heading-color;
@alert-text-color: @text-color;
.@{alert-prefix-cls} {
.reset-component;
9 years ago
position: relative;
8 years ago
padding: 8px 48px 8px 38px;
9 years ago
border-radius: @border-radius-base;
8 years ago
&&-no-icon {
padding: 8px 48px 8px 16px;
}
9 years ago
&-icon {
font-size: @font-size-lg;
top: 8px + @font-size-base * @line-height-base / 2 - @font-size-lg / 2;
8 years ago
left: 16px;
position: absolute;
9 years ago
}
9 years ago
&-description {
font-size: @font-size-base;
line-height: 21px;
display: none;
9 years ago
}
&-success {
border: @border-width-base @border-style-base @green-2;
background-color: @green-1;
.@{alert-prefix-cls}-icon {
9 years ago
color: @success-color;
9 years ago
}
}
&-info {
border: @border-width-base @border-style-base @primary-2;
background-color: @primary-1;
.@{alert-prefix-cls}-icon {
color: @info-color;
9 years ago
}
}
&-warning {
border: @border-width-base @border-style-base @yellow-2;
background-color: @yellow-1;
.@{alert-prefix-cls}-icon {
9 years ago
color: @warning-color;
9 years ago
}
}
&-error {
border: @border-width-base @border-style-base @red-2;
background-color: @red-1;
.@{alert-prefix-cls}-icon {
9 years ago
color: @error-color;
9 years ago
}
}
&-close-icon {
font-size: @font-size-base;
position: absolute;
right: 16px;
8 years ago
top: 10px;
height: 12px;
line-height: 12px;
overflow: hidden;
cursor: pointer;
.@{iconfont-css-prefix}-cross {
color: @text-color-secondary;
transition: color .3s ease;
&:hover {
color: #404040;
}
}
9 years ago
}
&-close-text {
position: absolute;
right: 16px;
}
&-with-description {
padding: 16px 16px 16px 60px;
position: relative;
border-radius: @border-radius-base;
9 years ago
color: @text-color;
line-height: 1.5;
}
9 years ago
&-with-description&-no-icon {
padding: 16px;
}
&-with-description &-icon {
position: absolute;
top: 16px;
left: 20px;
font-size: 24px;
}
&-with-description &-close-icon {
position: absolute;
top: 16px;
right: 16px;
cursor: pointer;
font-size: @font-size-base;
}
&-with-description &-message {
font-size: @font-size-lg;
color: @alert-message-color;
display: block;
margin-bottom: 4px;
}
&-with-description &-description {
display: block;
9 years ago
}
&&-close {
height: 0 !important;
margin: 0;
padding-top: 0;
padding-bottom: 0;
transition: all .3s @ease-in-out-circ;
transform-origin: 50% 0;
}
&-slide-up-leave {
animation: antAlertSlideUpOut .3s @ease-in-out-circ;
animation-fill-mode: both;
}
8 years ago
&-banner {
border-radius: 0;
border: 0;
margin-bottom: 0;
}
}
@keyframes antAlertSlideUpIn {
0% {
opacity: 0;
transform-origin: 0% 0%;
transform: scaleY(0);
}
100% {
opacity: 1;
transform-origin: 0% 0%;
transform: scaleY(1);
}
}
@keyframes antAlertSlideUpOut {
0% {
opacity: 1;
transform-origin: 0% 0%;
transform: scaleY(1);
}
100% {
opacity: 0;
transform-origin: 0% 0%;
transform: scaleY(0);
}
}