Web: Client: Data import fixed styles

This commit is contained in:
Elyor Djalilov 2024-03-06 12:56:30 +05:00
parent 176d1c7f16
commit 8ce74c371a
5 changed files with 8 additions and 6 deletions

View File

@ -38,7 +38,7 @@ const StyledTableRow = styled(TableRow)`
.combo-button-label {
color: ${(props) =>
props.theme.client.settings.migration.tableRowTextColor};
props.theme.client.settings.migration.comboBoxLabelColor};
}
.combo-buttons_arrow-icon {
@ -49,7 +49,7 @@ const StyledTableRow = styled(TableRow)`
svg {
path {
fill: ${(props) =>
props.theme.client.settings.migration.tableRowTextColor};
props.theme.client.settings.migration.comboBoxLabelColor};
}
}
}

View File

@ -38,7 +38,7 @@ const StyledTableRow = styled(TableRow)`
.combo-button-label {
color: ${(props) =>
props.theme.client.settings.migration.tableRowTextColor};
props.theme.client.settings.migration.comboBoxLabelColor};
}
.combo-buttons_arrow-icon {
@ -49,7 +49,7 @@ const StyledTableRow = styled(TableRow)`
svg {
path {
fill: ${(props) =>
props.theme.client.settings.migration.tableRowTextColor};
props.theme.client.settings.migration.comboBoxLabelColor};
}
}
}

View File

@ -38,7 +38,7 @@ const StyledTableRow = styled(TableRow)`
.combo-button-label {
color: ${(props) =>
props.theme.client.settings.migration.tableRowTextColor};
props.theme.client.settings.migration.comboBoxLabelColor};
}
.combo-buttons_arrow-icon {
@ -49,7 +49,7 @@ const StyledTableRow = styled(TableRow)`
svg {
path {
fill: ${(props) =>
props.theme.client.settings.migration.tableRowTextColor};
props.theme.client.settings.migration.comboBoxLabelColor};
}
}
}

View File

@ -3080,6 +3080,7 @@ export const getBaseTheme = () => {
tableHeaderText: "#A3A9AE",
tableRowHoverColor: "#F3F4F4",
tableRowTextColor: "#A3A9AE",
comboBoxLabelColor: "#333333",
importSectionBackground: "#F8F9F9",
importSectionTextColor: "#A3A9AE",
importItemBackground: "#eceef1",

View File

@ -3057,6 +3057,7 @@ const Dark: TTheme = {
tableHeaderText: "#858585",
tableRowHoverColor: "#3D3D3D",
tableRowTextColor: "#858585",
comboBoxLabelColor: "#FFFFFF",
importSectionBackground: "#282828",
importSectionTextColor: "#858585",
importItemBackground: "#333333",