Client: PortalSettings: Security: fix display remove ip icon

This commit is contained in:
Elyor Djalilov 2023-05-12 15:53:47 +05:00
parent 50d0d6f2a6
commit 8394dcd826
3 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,9 @@ StyledPlusIcon.defaultProps = { theme: Base };
const StyledTrashIcon = styled(TrashIcon)` const StyledTrashIcon = styled(TrashIcon)`
${commonIconsStyles} ${commonIconsStyles}
cursor: pointer; cursor: pointer;
path {
fill: ${(props) => props.theme.client.settings.trashIcon};
}
`; `;
const StyledInputWrapper = styled.div` const StyledInputWrapper = styled.div`

View File

@ -2927,6 +2927,7 @@ const Base = {
settings: { settings: {
iconFill: black, iconFill: black,
trashIcon: "#A3A9AE",
article: { article: {
titleColor: grayMain, titleColor: grayMain,
fillIcon: "dimgray", fillIcon: "dimgray",

View File

@ -2931,6 +2931,7 @@ const Dark = {
settings: { settings: {
iconFill: white, iconFill: white,
trashIcon: "#858585",
article: { article: {
titleColor: "#c4c4c4", titleColor: "#c4c4c4",
fillIcon: "#c4c4c4", fillIcon: "#c4c4c4",