329 lines
7.5 KiB
Plaintext
329 lines
7.5 KiB
Plaintext
|
|
// button reset
|
||
|
|
.ant-btn.ant-btn {
|
||
|
|
border-radius: 15px;
|
||
|
|
|
||
|
|
[data-theme='light'] &-default {
|
||
|
|
color: @button-default-color;
|
||
|
|
background-color: @button-default-bg-color;
|
||
|
|
border-color: @button-default-border-color;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-default-hover-color;
|
||
|
|
background-color: @button-default-hover-bg-color;
|
||
|
|
border-color: @button-default-hover-border-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
//&.active {
|
||
|
|
// background-color: @button-default-hover-bg-color;
|
||
|
|
// border-color: @button-default-hover-border-color;
|
||
|
|
//}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-primary {
|
||
|
|
color: @white;
|
||
|
|
background-color: @button-primary-color;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @white;
|
||
|
|
background-color: @button-primary-hover-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:not(&-background-ghost):not([disabled]) {
|
||
|
|
color: @white;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:disabled {
|
||
|
|
color: @white;
|
||
|
|
background-color: fade(@primary-color, 70%);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-link {
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
border-color: transparent !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
[data-theme='light'] &.ant-btn-link.is-disabled {
|
||
|
|
color: rgb(0 0 0 / 25%);
|
||
|
|
text-shadow: none;
|
||
|
|
cursor: not-allowed !important;
|
||
|
|
background-color: transparent !important;
|
||
|
|
border-color: transparent !important;
|
||
|
|
box-shadow: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
[data-theme='dark'] &.ant-btn-link.is-disabled {
|
||
|
|
color: rgb(255 255 255 / 25%) !important;
|
||
|
|
text-shadow: none;
|
||
|
|
cursor: not-allowed !important;
|
||
|
|
background-color: transparent !important;
|
||
|
|
border-color: transparent !important;
|
||
|
|
box-shadow: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
&-success.ant-btn-link:not([disabled='disabled']) {
|
||
|
|
color: @button-success-color;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-success-hover-color;
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active {
|
||
|
|
color: @button-success-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-success.ant-btn-link.ant-btn-loading,
|
||
|
|
&-warning.ant-btn-link.ant-btn-loading,
|
||
|
|
&-error.ant-btn-link.ant-btn-loading,
|
||
|
|
&-background-ghost.ant-btn-link.ant-btn-loading,
|
||
|
|
&.ant-btn-link.ant-btn-loading {
|
||
|
|
&::before {
|
||
|
|
background: transparent;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-success:not(.ant-btn-link):not(.is-disabled) {
|
||
|
|
color: @white;
|
||
|
|
background-color: @button-success-color;
|
||
|
|
border-color: @button-success-color;
|
||
|
|
//border-width: 0;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @white;
|
||
|
|
background-color: @button-success-hover-color;
|
||
|
|
border-color: @button-success-hover-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
background-color: @button-success-active-color;
|
||
|
|
border-color: @button-success-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-warning.ant-btn-link:not([disabled='disabled']) {
|
||
|
|
color: @button-warn-color;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-warn-hover-color;
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
color: @button-warn-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-warning:not(.ant-btn-link):not(.is-disabled) {
|
||
|
|
color: @white;
|
||
|
|
background-color: @button-warn-color;
|
||
|
|
border-color: @button-warn-color;
|
||
|
|
//border-width: 0;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @white;
|
||
|
|
background-color: @button-warn-hover-color;
|
||
|
|
border-color: @button-warn-hover-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
background-color: @button-warn-active-color;
|
||
|
|
border-color: @button-warn-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-error.ant-btn-link:not([disabled='disabled']) {
|
||
|
|
color: @button-error-color;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-error-hover-color;
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
color: @button-error-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-error:not(.ant-btn-link):not(.is-disabled) {
|
||
|
|
color: @white;
|
||
|
|
background-color: @button-error-color;
|
||
|
|
border-color: @button-error-color;
|
||
|
|
//border-width: 0;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @white;
|
||
|
|
background-color: @button-error-hover-color;
|
||
|
|
border-color: @button-error-hover-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
background-color: @button-error-active-color;
|
||
|
|
border-color: @button-error-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-background-ghost {
|
||
|
|
border-width: 1px;
|
||
|
|
background-color: transparent !important;
|
||
|
|
|
||
|
|
&[disabled],
|
||
|
|
&[disabled]:hover {
|
||
|
|
color: fade(@white, 40%) !important;
|
||
|
|
background-color: transparent !important;
|
||
|
|
border-color: fade(@white, 40%) !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-dashed&-background-ghost,
|
||
|
|
&-default&-background-ghost {
|
||
|
|
color: @button-ghost-color;
|
||
|
|
border-color: @button-ghost-color;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-ghost-hover-color;
|
||
|
|
border-color: @button-ghost-hover-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
color: @button-ghost-active-color;
|
||
|
|
border-color: @button-ghost-active-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&[disabled],
|
||
|
|
&[disabled]:hover {
|
||
|
|
color: fade(@white, 40%) !important;
|
||
|
|
border-color: fade(@white, 40%) !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-background-ghost&-success:not(.ant-btn-link) {
|
||
|
|
color: @button-success-color;
|
||
|
|
background-color: transparent;
|
||
|
|
border-color: @button-success-color;
|
||
|
|
border-width: 1px;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-success-hover-color !important;
|
||
|
|
border-color: @button-success-hover-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
color: @button-success-active-color;
|
||
|
|
border-color: @button-success-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-background-ghost&-warning:not(.ant-btn-link) {
|
||
|
|
color: @button-warn-color;
|
||
|
|
background-color: transparent;
|
||
|
|
border-color: @button-warn-color;
|
||
|
|
border-width: 1px;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-warn-hover-color !important;
|
||
|
|
border-color: @button-warn-hover-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active {
|
||
|
|
color: @button-warn-active-color;
|
||
|
|
border-color: @button-warn-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-background-ghost&-error:not(.ant-btn-link) {
|
||
|
|
color: @button-error-color;
|
||
|
|
background-color: transparent;
|
||
|
|
border-color: @button-error-color;
|
||
|
|
border-width: 1px;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-error-hover-color !important;
|
||
|
|
border-color: @button-error-hover-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:active,
|
||
|
|
&:not(:disabled):active {
|
||
|
|
color: @button-error-active-color;
|
||
|
|
border-color: @button-error-active-color;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&-ghost.ant-btn-link:not([disabled='disabled']) {
|
||
|
|
color: @button-ghost-color;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: @button-ghost-hover-color;
|
||
|
|
border-color: transparent;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&.purple {
|
||
|
|
color: #fff !important;
|
||
|
|
border-color: #605ca8 !important;
|
||
|
|
background-color: #605ca8 !important;
|
||
|
|
|
||
|
|
&:hover,
|
||
|
|
&:focus,
|
||
|
|
&:not(:disabled):hover,
|
||
|
|
&:not(:disabled):focus {
|
||
|
|
color: #fff !important;
|
||
|
|
border-color: lighten(#605ca8, 10%) !important;
|
||
|
|
background-color: lighten(#605ca8, 10%) !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|