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.
74 lines
1.5 KiB
74 lines
1.5 KiB
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@alert-prefix-cls: ~'@{ant-prefix}-alert';
|
|
|
|
.@{alert-prefix-cls} {
|
|
&&-rtl {
|
|
padding: 8px 37px 8px 15px;
|
|
direction: rtl;
|
|
}
|
|
|
|
&&-no-icon {
|
|
.@{alert-prefix-cls}-rtl& {
|
|
padding: @alert-no-icon-padding-vertical 15px;
|
|
}
|
|
}
|
|
|
|
&&-closable {
|
|
.@{alert-prefix-cls}.@{alert-prefix-cls}-rtl& {
|
|
padding-right: 37px;
|
|
padding-left: 30px;
|
|
}
|
|
}
|
|
|
|
&&-no-icon&-closable {
|
|
.@{alert-prefix-cls}.@{alert-prefix-cls}-rtl& {
|
|
padding-right: 15px;
|
|
padding-left: 30px;
|
|
}
|
|
}
|
|
|
|
&-icon {
|
|
.@{alert-prefix-cls}-rtl & {
|
|
right: @padding-md;
|
|
left: auto;
|
|
}
|
|
}
|
|
|
|
&-close-icon {
|
|
.@{alert-prefix-cls}-rtl & {
|
|
right: auto;
|
|
left: @padding-md;
|
|
}
|
|
}
|
|
|
|
&-with-description,
|
|
&-with-description&-closable {
|
|
.@{alert-prefix-cls}.@{alert-prefix-cls}-rtl& {
|
|
padding: @alert-with-description-padding-vertical @alert-with-description-icon-size * 2 +
|
|
@alert-with-description-padding-vertical @alert-with-description-no-icon-padding-vertical
|
|
15px;
|
|
}
|
|
}
|
|
|
|
&-with-description&-no-icon {
|
|
.@{alert-prefix-cls}.@{alert-prefix-cls}-rtl& {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
&-with-description &-icon {
|
|
.@{alert-prefix-cls}-rtl& {
|
|
right: @alert-with-description-icon-size;
|
|
left: auto;
|
|
}
|
|
}
|
|
|
|
&-with-description &-close-icon {
|
|
.@{alert-prefix-cls}-rtl& {
|
|
right: auto;
|
|
left: @padding-md;
|
|
}
|
|
}
|
|
}
|
|
|