Web: Files: Removed additional borders on the left and right in the table view (macOS, Safari).

This commit is contained in:
Tatiana Lopaeva 2022-05-30 13:28:59 +03:00
parent 89ac1296e3
commit 2119e35224

View File

@ -46,7 +46,6 @@ const contextMenuWrapperDraggingHoverStyle = css`
const StyledTableRow = styled(TableRow)`
.table-container_cell {
/* ${isSafari && `border-image-slice: 0 !important`}; */
background: ${(props) =>
(props.checked || props.isActive) &&
`${props.theme.filesSection.tableView.row.backgroundActive} !important`};
@ -132,6 +131,11 @@ const StyledTableRow = styled(TableRow)`
.table-container_cell {
margin-top: -1px;
border-top: 1px solid #2da7db;
border-right: 0;
border-left: 0;
}
.table-container_file-name-cell > .table-container_cell {
margin-top: 0;
}
`}
`;