123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- .ant-modal-body {
- width: 280px;
- background-color: #ffffff;
- border-radius: 8px;
- padding-top: 20px;
- display: flex;
- flex-direction: column;
- }
- .ant-modal-body-title {
- font-size: 18px;
- line-height: 25px;
- text-align: center;
- color: #333333;
- margin: 0 12px 8px;
- }
- .ant-modal-body-content {
- line-height: 21px;
- font-size: 15px;
- color: #333333;
- text-align: center;
- margin: 0 12px 20px;
- }
- .ant-modal-body-footer-focus {
- padding: 0 12px 12px;
- }
- .ant-modal-body-footer-focus-secondary,
- .ant-modal-body-footer-focus-cancel {
- color: #1677ff;
- text-align: center;
- font-size: 18px;
- margin-top: 8px;
- padding-top: 12px;
- }
- .ant-modal-body-footer-vertical {
- padding: 0 0 12px;
- }
- .ant-modal-body-footer-vertical-primary,
- .ant-modal-body-footer-vertical-secondary,
- .ant-modal-body-footer-vertical-cancel {
- color: #1677ff;
- text-align: center;
- font-size: 18px;
- margin-top: 8px;
- padding-top: 12px;
- position: relative;
- }
- .ant-modal-body-footer-vertical-primary::before,
- .ant-modal-body-footer-vertical-secondary::before,
- .ant-modal-body-footer-vertical-cancel::before {
- content: '';
- position: absolute;
- background-color: #eeeeee;
- display: block;
- top: 0;
- right: 0;
- bottom: auto;
- left: 0;
- height: 1px;
- transform: scaleY(0.5);
- }
- .ant-modal-body-footer-horizontal {
- display: flex;
- flex-direction: row;
- position: relative;
- }
- .ant-modal-body-footer-horizontal::before {
- content: '';
- position: absolute;
- background-color: #eeeeee;
- display: block;
- top: 0;
- right: 0;
- bottom: auto;
- left: 0;
- height: 1px;
- transform: scaleY(0.5);
- }
- .ant-modal-body-footer-horizontal-primary,
- .ant-modal-body-footer-horizontal-secondary,
- .ant-modal-body-footer-horizontal-cancel {
- position: relative;
- flex: 1;
- color: #1677ff;
- text-align: center;
- font-size: 18px;
- padding: 12px 0;
- }
- .ant-modal-body-footer-horizontal-primary:nth-child(1)::after,
- .ant-modal-body-footer-horizontal-secondary:nth-child(1)::after,
- .ant-modal-body-footer-horizontal-cancel:nth-child(1)::after {
- content: '';
- position: absolute;
- background-color: #eeeeee;
- display: block;
- top: 0;
- right: 0;
- bottom: 0;
- left: auto;
- width: 1px;
- transform: scaleX(0.5);
- }
- .ant-modal-close {
- position: absolute;
- right: 8px;
- top: 6.5px;
- z-index: 3;
- width: 26px;
- height: 29px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 18px;
- color: #999999;
- }
- .ant-modal .ant-popup-content.ant-popup-center {
- min-height: 0;
- padding: 0;
- }
|