Fix buttons

This commit is contained in:
1ilit 2023-12-18 01:21:33 +02:00
parent 46685a98fe
commit c5f929ac55
2 changed files with 22 additions and 1 deletions

View File

@ -206,9 +206,10 @@ export default function Table(props) {
icon={<IconMore />} icon={<IconMore />}
type="tertiary" type="tertiary"
size="small" size="small"
theme="solid"
style={{ style={{
opacity: "0.7", opacity: "0.7",
backgroundColor: "grey",
color: "white",
}} }}
></Button> ></Button>
</Popover> </Popover>

View File

@ -21,6 +21,26 @@
border: none !important; border: none !important;
} }
.semi-button.semi-button-light {
background-color: rgba(var(--semi-grey-1), 1);
}
.semi-button.semi-button-light:hover {
background-color: rgba(var(--semi-grey-2), 1);
}
.semi-button.semi-button-primary:not(.semi-button-light):not(
.semi-button-borderless
) {
background-color: rgba(var(--semi-blue-5), 1);
}
.semi-button.semi-button-primary:not(.semi-button-light):not(
.semi-button-borderless
):hover {
background-color: rgba(var(--semi-blue-6), 1);
}
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 8px; width: 8px;
} }