ant-design/style/components/confirm.less

46 lines
699 B
Plaintext
Raw Normal View History

2015-06-12 12:01:02 +08:00
@confirmPrefixCls: ant-confirm;
2015-06-10 22:02:13 +08:00
2015-06-12 12:01:02 +08:00
.@{confirmPrefixCls} {
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-06-12 12:01:02 +08:00
.@{confirmPrefixCls}-body {
.@{confirmPrefixCls}-content {
2015-06-12 19:41:30 +08:00
margin-left: 37px;
2015-06-10 22:02:13 +08:00
font-size: 12px;
color: #999;
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;
top: 2px;
2015-06-09 15:21:44 +08:00
}
2015-06-10 22:02:13 +08:00
.anticon-exclamation-circle {
2015-07-08 15:31:14 +08:00
color: @warning-color;
2015-06-10 22:02:13 +08:00
}
2015-06-12 19:41:30 +08:00
.anticon-question-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-06-12 12:01:02 +08:00
.@{confirmPrefixCls}-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
}
}