Merge pull request #608 from ONLYOFFICE/bugfix/data-import

Web: Client: Data Import: fix styles
This commit is contained in:
Alexey Safronov 2024-08-30 13:04:31 +04:00 committed by GitHub
commit 67e1bcaad1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 16 deletions

View File

@ -77,6 +77,10 @@ export const WorkspacesContainer = styled.div`
justify-content: space-between;
cursor: pointer;
.link {
color: ${globalColors.lightBlueMain};
}
&:hover {
border-color: ${globalColors.lightBlueMain};
}

View File

@ -50,14 +50,7 @@ const StyledRowContainer = styled(RowContainer)`
height: 61px;
position: sticky;
z-index: 201;
${(props) =>
props.theme.interfaceDirection === "rtl"
? css`
margin-right: -16px;
`
: css`
margin-left: -16px;
`}
margin-inline-end: -16px;
width: 100%;
margin-top: 20px;
@ -71,14 +64,7 @@ const StyledRowContainer = styled(RowContainer)`
}
.table-container_group-menu-checkbox {
${(props) =>
props.theme.interfaceDirection === "rtl"
? css`
margin-right: 8px;
`
: css`
margin-left: 8px;
`}
margin-inline-end: 8px;
}
.table-container_group-menu-separator {