ant-design/style/components/confirm.less

60 lines
968 B
Plaintext
Raw Normal View History

2015-08-20 16:55:42 +08:00
@confirm-prefix-cls: ant-confirm;
2015-06-10 22:02:13 +08:00
2015-08-20 16:55:42 +08:00
.@{confirm-prefix-cls} {
2015-06-10 22:02:13 +08:00
2015-06-12 12:01:02 +08:00
.ant-modal-header {
2015-06-10 22:02:13 +08:00
display: none;
}
2015-06-12 12:01:02 +08:00
.ant-modal-body {
2015-06-10 22:02:13 +08:00
padding: 30px 40px;
}
2015-08-20 16:55:42 +08:00
.@{confirm-prefix-cls}-body {
.@{confirm-prefix-cls}-title {
2015-07-21 17:39:19 +08:00
color: @text-color;
2015-07-29 16:00:18 +08:00
font-weight: bold;
font-size: 14px;
2015-07-21 17:39:19 +08:00
}
2015-08-20 16:55:42 +08:00
.@{confirm-prefix-cls}-content {
2015-06-12 19:41:30 +08:00
margin-left: 37px;
2015-07-29 16:00:18 +08:00
font-size: @font-size-base;
color: @text-color;
2015-06-09 15:21:44 +08:00
}
2015-06-10 22:02:13 +08:00
.anticon {
font-size: 24px;
2015-06-12 19:41:30 +08:00
margin-right: 12px;
position: relative;
2015-11-13 18:04:39 +08:00
top: 5px;
2015-06-09 15:21:44 +08:00
}
2015-06-10 22:02:13 +08:00
.anticon-exclamation-circle {
2015-09-07 11:48:57 +08:00
color: @error-color;
2015-06-10 22:02:13 +08:00
}
2015-06-12 19:41:30 +08:00
.anticon-question-circle {
2015-09-07 11:48:57 +08:00
color: @warning-color;
}
.anticon-check-circle {
color: @success-color;
}
.anticon-info-circle {
2015-07-08 15:31:14 +08:00
color: @primary-color;
2015-06-12 19:41:30 +08:00
}
2015-06-09 15:21:44 +08:00
}
2015-08-20 16:55:42 +08:00
.@{confirm-prefix-cls}-btns {
2015-06-10 22:02:13 +08:00
margin-top: 30px;
float: right;
2015-06-09 15:21:44 +08:00
2015-06-10 22:02:13 +08:00
button + button {
margin-left: 10px;
margin-bottom: 0;
}
2015-06-09 15:21:44 +08:00
}
}