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.
66 lines
1.2 KiB
66 lines
1.2 KiB
@confirm-prefix-cls: ~"@{ant-prefix}-confirm";
|
|
|
|
.@{confirm-prefix-cls} {
|
|
.@{ant-prefix}-modal-header {
|
|
display: none;
|
|
}
|
|
|
|
.@{ant-prefix}-modal-close {
|
|
display: none;
|
|
}
|
|
|
|
.@{ant-prefix}-modal-body {
|
|
padding: 30px 40px;
|
|
}
|
|
|
|
&-body {
|
|
.@{confirm-prefix-cls}-title {
|
|
color: @text-color;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.@{confirm-prefix-cls}-content {
|
|
margin-left: 42px;
|
|
font-size: @font-size-base;
|
|
color: @text-color;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
> .@{iconfont-css-prefix} {
|
|
font-size: 24px;
|
|
margin-right: 16px;
|
|
padding: 0 1px;
|
|
position: relative;
|
|
top: 1px;
|
|
float: left;
|
|
}
|
|
}
|
|
|
|
.@{confirm-prefix-cls}-btns {
|
|
margin-top: 30px;
|
|
float: right;
|
|
|
|
button + button {
|
|
margin-left: 10px;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
&-error &-body > .@{iconfont-css-prefix} {
|
|
color: @error-color;
|
|
}
|
|
|
|
&-warning &-body > .@{iconfont-css-prefix},
|
|
&-confirm &-body > .@{iconfont-css-prefix} {
|
|
color: @warning-color;
|
|
}
|
|
|
|
&-info &-body > .@{iconfont-css-prefix} {
|
|
color: @primary-color;
|
|
}
|
|
|
|
&-success &-body > .@{iconfont-css-prefix} {
|
|
color: @success-color;
|
|
}
|
|
}
|
|
|