68 lines
1.4 KiB
SCSS
68 lines
1.4 KiB
SCSS
|
|
$disabled-ele: '.arco-btn-disabled';
|
||
|
|
|
||
|
|
.arco-btn {
|
||
|
|
border-radius: 2px;
|
||
|
|
border: 1px solid #d7d7d9 !important;
|
||
|
|
color: #3c4043 !important;
|
||
|
|
font-family: $font-family-regular;
|
||
|
|
font-size: 14px !important;
|
||
|
|
font-style: normal;
|
||
|
|
font-weight: 400 !important;
|
||
|
|
line-height: 22px !important;
|
||
|
|
&.arco-btn-disabled {
|
||
|
|
border-color: #f2f3f5 !important;
|
||
|
|
color: #b1b2b5 !important;
|
||
|
|
}
|
||
|
|
&:not(.arco-btn-disabled) {
|
||
|
|
&:hover {
|
||
|
|
border-color: #e6e6e8 !important;
|
||
|
|
color: #737478 !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.arco-btn-primary {
|
||
|
|
background-color: #6d4cfe !important;
|
||
|
|
border: none !important;
|
||
|
|
color: #fff !important;
|
||
|
|
&.arco-btn-disabled {
|
||
|
|
color: #fff !important;
|
||
|
|
background-color: #c5b7ff !important;
|
||
|
|
}
|
||
|
|
&:not(.arco-btn-disabled) {
|
||
|
|
&:hover {
|
||
|
|
color: #fff !important;
|
||
|
|
background-color: #8a70fe !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.arco-btn-outline {
|
||
|
|
border: 1px solid #6d4cfe !important;
|
||
|
|
color: #6d4cfe !important;
|
||
|
|
&.arco-btn-disabled {
|
||
|
|
border-color: #c5b7ff !important;
|
||
|
|
color: #c5b7ff !important;
|
||
|
|
}
|
||
|
|
&:not(.arco-btn-disabled) {
|
||
|
|
&:hover {
|
||
|
|
border-color: #8a70fe !important;
|
||
|
|
color: #8a70fe !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.arco-btn-text {
|
||
|
|
background-color: transparent !important;
|
||
|
|
border: none !important;
|
||
|
|
color: #6d4cfe !important;
|
||
|
|
&.arco-btn-disabled {
|
||
|
|
color: #c5b7ff !important;
|
||
|
|
}
|
||
|
|
&:not(.arco-btn-disabled) {
|
||
|
|
&:hover {
|
||
|
|
color: #8a70fe !important;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|