ant-design/style/components/confirm.less

52 lines
831 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 {
2015-07-21 17:39:19 +08:00
.@{confirmPrefixCls}-title {
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-06-12 12:01:02 +08:00
.@{confirmPrefixCls}-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;
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
}
}