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

172 lines
3.1 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
2015-07-27 20:53:08 +08:00
@alert-prefix-cls: ~"@{ant-prefix}-alert";
2015-07-27 20:53:08 +08:00
2015-08-20 16:55:42 +08:00
.@{alert-prefix-cls} {
2015-07-27 20:53:08 +08:00
position: relative;
2016-08-03 14:54:10 +08:00
padding: 8px 48px 8px 38px;
2015-07-27 20:53:08 +08:00
border-radius: @border-radius-base;
2015-07-29 16:00:18 +08:00
color: @text-color;
2016-08-28 17:16:43 +08:00
font-size: @font-size-base;
2015-07-27 20:53:08 +08:00
line-height: 16px;
margin-bottom: 10px;
2016-08-03 14:54:10 +08:00
&&-no-icon {
padding: 8px 48px 8px 16px;
}
2015-07-27 20:53:08 +08:00
&-icon {
2016-11-08 21:07:01 +08:00
font-size: @font-size-lg;
2016-11-24 00:34:31 +08:00
top: 9.5px;
2016-08-03 14:54:10 +08:00
left: 16px;
position: absolute;
2015-07-27 20:53:08 +08:00
}
2015-07-29 10:27:31 +08:00
&-description {
2016-08-28 17:16:43 +08:00
font-size: @font-size-base;
line-height: 21px;
display: none;
2015-07-27 20:53:08 +08:00
}
&-success {
2015-07-29 17:22:36 +08:00
border: 1px solid tint(@success-color, 80%);
2015-07-27 20:53:08 +08:00
background-color: tint(@success-color, 90%);
.@{alert-prefix-cls}-icon {
2015-07-29 10:27:31 +08:00
color: @success-color;
2015-07-27 20:53:08 +08:00
}
}
&-info {
2015-07-29 17:22:36 +08:00
border: 1px solid tint(@primary-color, 80%);
2015-07-27 20:53:08 +08:00
background-color: tint(@primary-color, 90%);
.@{alert-prefix-cls}-icon {
2015-07-29 10:27:31 +08:00
color: @primary-color;
2015-07-27 20:53:08 +08:00
}
}
2016-03-28 14:38:25 +08:00
&-warning {
2015-07-29 17:22:36 +08:00
border: 1px solid tint(@warning-color, 80%);
2015-07-27 20:53:08 +08:00
background-color: tint(@warning-color, 90%);
.@{alert-prefix-cls}-icon {
2015-07-29 10:27:31 +08:00
color: @warning-color;
2015-07-27 20:53:08 +08:00
}
}
&-error {
2015-07-29 17:22:36 +08:00
border: 1px solid tint(@error-color, 80%);
2015-07-27 20:53:08 +08:00
background-color: tint(@error-color, 90%);
.@{alert-prefix-cls}-icon {
2015-07-29 10:27:31 +08:00
color: @error-color;
2015-07-27 20:53:08 +08:00
}
}
&-close-icon {
2016-08-28 17:16:43 +08:00
font-size: @font-size-base;
2015-07-29 15:22:47 +08:00
position: absolute;
right: 16px;
2016-08-03 14:54:10 +08:00
top: 10px;
2015-07-29 15:22:47 +08:00
height: 12px;
line-height: 12px;
2015-07-29 15:22:47 +08:00
overflow: hidden;
cursor: pointer;
2015-07-29 15:22:47 +08:00
.@{iconfont-css-prefix}-cross {
color: @text-color-secondary;
transition: color .3s ease;
&:hover {
2016-08-28 17:16:43 +08:00
color: #404040;
2015-07-29 15:22:47 +08:00
}
}
2015-07-27 20:53:08 +08:00
}
&-close-text {
position: absolute;
right: 16px;
}
2015-07-29 17:22:36 +08:00
&-with-description {
2016-08-28 17:16:43 +08:00
padding: 16px 16px 16px 60px;
2015-07-29 17:22:36 +08:00
position: relative;
border-radius: @border-radius-base;
margin-bottom: 10px;
2015-07-27 20:53:08 +08:00
color: @text-color;
line-height: 1.5;
}
2015-07-27 20:53:08 +08:00
&-with-description&-no-icon {
padding: 16px;
}
&-with-description &-icon {
position: absolute;
2016-08-28 17:16:43 +08:00
top: 16px;
left: 20px;
font-size: 24px;
}
2015-07-29 15:22:47 +08:00
&-with-description &-close-icon {
position: absolute;
2016-08-28 17:16:43 +08:00
top: 16px;
right: 16px;
cursor: pointer;
2016-08-28 17:16:43 +08:00
font-size: @font-size-base;
}
2015-07-29 15:22:47 +08:00
&-with-description &-message {
2016-11-08 21:07:01 +08:00
font-size: @font-size-lg;
2016-08-28 17:16:43 +08:00
color: @heading-color;
display: block;
2016-08-28 17:16:43 +08:00
margin-bottom: 4px;
}
2015-07-29 15:22:47 +08:00
&-with-description &-description {
display: block;
2015-07-27 20:53:08 +08:00
}
2015-08-20 13:06:47 +08:00
&&-close {
height: 0 !important;
2015-08-20 13:06:47 +08:00
margin: 0;
padding-top: 0;
padding-bottom: 0;
transition: all .3s @ease-in-out-circ;
2015-08-20 13:06:47 +08:00
transform-origin: 50% 0;
}
&-slide-up-leave {
animation: antAlertSlideUpOut .3s @ease-in-out-circ;
animation-fill-mode: both;
}
2016-08-03 14:54:10 +08:00
&-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);
2015-08-20 13:06:47 +08:00
}
2015-07-29 16:00:18 +08:00
}