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

170 lines
3.1 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
2015-07-27 20:53:08 +08:00
@alert-prefix-cls: ~"@{ant-prefix}-alert";
2015-07-27 20:53:08 +08:00
@alert-message-color: @heading-color;
@alert-text-color: @text-color;
2015-08-20 16:55:42 +08:00
.@{alert-prefix-cls} {
.reset-component;
2015-07-27 20:53:08 +08:00
position: relative;
padding: 8px 15px 8px 37px;
2015-07-27 20:53:08 +08:00
border-radius: @border-radius-base;
2016-08-03 14:54:10 +08:00
&&-no-icon {
padding: 8px 15px;
2016-08-03 14:54:10 +08:00
}
2015-07-27 20:53:08 +08:00
&-icon {
top: 8px + @font-size-base * @line-height-base / 2 - @font-size-base / 2 + 1px;
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: 22px;
display: none;
2015-07-27 20:53:08 +08:00
}
&-success {
border: @border-width-base @border-style-base @green-3;
background-color: @green-1;
.@{alert-prefix-cls}-icon {
2015-07-29 10:27:31 +08:00
color: @success-color;
2015-07-27 20:53:08 +08:00
}
}
&-info {
border: @border-width-base @border-style-base @primary-3;
background-color: @primary-1;
.@{alert-prefix-cls}-icon {
color: @info-color;
2015-07-27 20:53:08 +08:00
}
}
2016-03-28 14:38:25 +08:00
&-warning {
border: @border-width-base @border-style-base @gold-3;
background-color: @gold-1;
.@{alert-prefix-cls}-icon {
2015-07-29 10:27:31 +08:00
color: @warning-color;
2015-07-27 20:53:08 +08:00
}
}
&-error {
border: @border-width-base @border-style-base @red-3;
background-color: @red-1;
.@{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 {
font-size: @font-size-sm;
2015-07-29 15:22:47 +08:00
position: absolute;
right: 16px;
top: 8px;
line-height: 22px;
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;
&: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 {
padding: 15px 15px 15px 64px;
2015-07-29 17:22:36 +08:00
position: relative;
border-radius: @border-radius-base;
2015-07-27 20:53:08 +08:00
color: @text-color;
line-height: @line-height-base;
}
2015-07-27 20:53:08 +08:00
&-with-description&-no-icon {
padding: 15px;
}
&-with-description &-icon {
position: absolute;
2016-08-28 17:16:43 +08:00
top: 16px;
left: 24px;
2016-08-28 17:16:43 +08:00
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;
color: @alert-message-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
}