Change some border colors to have higher contrast

Change-type: patch
Signed-off-by: Lorenzo Alberto Maria Ambrosi <lorenzothunder.ambrosi@gmail.com>
This commit is contained in:
Lorenzo Alberto Maria Ambrosi 2020-12-08 14:37:24 +01:00
parent 05497ce85c
commit 8c4edaabba
2 changed files with 18 additions and 0 deletions

View File

@ -74,6 +74,8 @@ function isDrivelistDrive(drive: Drive): drive is DrivelistDrive {
const DrivesTable = styled((props: GenericTableProps<Drive>) => (
<Table<Drive> {...props} />
))`
border-bottom: none;
[data-display='table-head'],
[data-display='table-body'] {
> [data-display='table-row'] > [data-display='table-cell'] {

View File

@ -64,3 +64,19 @@ input[type="checkbox"] + div {
#rendition-tooltip-root > div {
font-family: "SourceSansPro", sans-serif;
}
/* HIGH-CONTRAST CHANGES */
input[type="text"],
input[type="checkbox"] ~ div,
input[type="checkbox"] ~ span {
border-color: #b5b5b5 !important;
}
[data-display="table-head"]
> [data-display="table-row"]
> [data-display="table-cell"],
[data-display="table-body"]
> [data-display="table-row"]
> [data-display="table-cell"] {
border-bottom: 1px solid #b5b5b5 !important;
}