change tooltip bg color

This commit is contained in:
PhilReact 2025-04-26 19:20:00 +03:00
parent 38c3cc92aa
commit c7b19c0d72
6 changed files with 13 additions and 23 deletions

View File

@ -1525,7 +1525,7 @@ function App() {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {
@ -1565,7 +1565,7 @@ function App() {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {
@ -1605,7 +1605,7 @@ function App() {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {
@ -1645,7 +1645,7 @@ function App() {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {
@ -1682,7 +1682,7 @@ function App() {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {
@ -1793,7 +1793,7 @@ function App() {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {
@ -1838,7 +1838,7 @@ function App() {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {
@ -1880,7 +1880,7 @@ function App() {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {

View File

@ -641,15 +641,6 @@ export const NotAuthenticated = ({
}}
control={
<Switch
sx={{
'& .MuiSwitch-switchBase.Mui-checked': {
color: '#5EB049',
},
'& .MuiSwitch-switchBase.Mui-checked + .MuiSwitch-track':
{
backgroundColor: theme.palette.background.default,
},
}}
checked={useLocalNode}
onChange={(event) => {
if (event.target.checked) {

View File

@ -358,14 +358,14 @@ export const ChatOptions = ({
return (
<Box
sx={{
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.surface,
borderBottomLeftRadius: '20px',
borderTopLeftRadius: '20px',
display: 'flex',
flexDirection: 'column',
flexGrow: 0,
flexShrink: 0,
height: '100%',
height: '98%',
overflow: 'auto',
width: '300px',
}}

View File

@ -63,7 +63,7 @@ export const GeneralNotifications = ({ address }) => {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {

View File

@ -76,7 +76,7 @@ export const QMailStatus = () => {
tooltip: {
sx: {
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
backgroundColor: theme.palette.background.paper,
},
},
arrow: {

View File

@ -131,9 +131,8 @@ export const CustomButton = styled(Box)(({ theme }) => ({
width: 'fit-content',
'&:hover': {
backgroundColor: theme.palette.background.paper,
color: theme.palette.text.secondary,
'svg path': {
fill: theme.palette.background.paper,
fill: theme.palette.background.secondary,
},
},
}));