123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .ant-button {
- position: relative;
- display: flex;
- flex-direction: column;
- justify-self: center;
- align-items: center;
- height: auto;
- line-height: normal;
- padding: 12px;
- border-radius: 4px;
- border: 0 none;
- box-sizing: border-box;
- font-size: 18px;
- z-index: 2;
- }
- .ant-button-large {
- font-size: 18px;
- padding: 12px 12px 12px 12px;
- }
- .ant-button-medium {
- font-size: 17px;
- padding: 8px 12px 8px 12px;
- }
- .ant-button-small {
- font-size: 15px;
- padding: 4px 12px 4px 12px;
- }
- .ant-button-primary {
- color: #ffffff;
- background-color: #1677ff;
- box-shadow: inset 0 0 0 1px #1677ff;
- }
- .ant-button-default {
- color: #1677ff;
- background-color: #ffffff;
- box-shadow: inset 0 0 0 1px #1677ff;
- }
- .ant-button-text {
- color: #1677ff;
- background-color: transparent;
- box-shadow: none;
- }
- .ant-button-primary-danger {
- color: #ffffff;
- background-color: #ff3141;
- box-shadow: inset 0 0 0 1px #ff3141;
- }
- .ant-button-default-danger {
- color: #ff3141;
- background-color: #ffffff;
- box-shadow: inset 0 0 0 1px #ff3141;
- }
- .ant-button-text-danger {
- color: #ff3141;
- background-color: transparent;
- box-shadow: none;
- }
- .ant-button-text-active {
- background-color: rgba(255, 255, 255, 0.92);
- }
- .ant-button-active {
- filter: brightness(0.92);
- }
- .ant-button-disabled {
- opacity: 0.4;
- }
- .ant-button-wrap {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .ant-button-content-text-margin {
- margin-left: 8px;
- }
- .ant-button-content-text:empty {
- margin-left: 0;
- width: 0;
- opacity: 0;
- }
- .ant-button-content-text:empty::after {
- content: '\00a0';
- }
- .ant-button-content-subtext {
- font-size: 12px;
- opacity: 0.6;
- }
- .ant-button-content-loading-container {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 33px;
- height: 16px;
- margin-left: 8px;
- }
- .ant-button-content-loading {
- position: relative;
- }
- .ant-button-inline {
- display: inline-block;
- border-radius: 4px;
- }
- .ant-button-inline .ant-button-content-loading-container {
- width: 16px;
- height: 16px;
- }
- .ant-button-inline .ant-button-content-loading {
- transform: scale(0.5);
- }
- .ant-button::after {
- border-width: 0;
- }
|