Question how to change css for mouse over?

moshbit

Member
i'm using a dark theme, and i can't figure out which style property to use to fix the mouse over on the navigation menu:

1492954658864screensave.webp

also, i can't find where to change the color of the settings menu:

1492954818822screensave.webp

it should be dark, not white.
 
Oops. It is hardcode T_T
For hotfix you can put this css to EXTRA.css template.
Code:
.Team_NavContainer .Team_navItem:hover {
    background-color: <your color>;
}
 
Oops. It is hardcode T_T
For hotfix you can put this css to EXTRA.css template.
Code:
.Team_NavContainer .Team_navItem:hover {
    background-color: <your color>;
}
Nobita
thank you for that, but it still doesn't change the color for the admin menu:

1492954818822screensave-png.1975
 
okay, nevermind, i figured it out. for those with dark themes, you'll want to edit these css values to your own color scheme:

Code:
.mdl-menu {
    border: none;
    background-color: #353535;
    }
    
.mdl-menu__item:hover {
    background-color: #464646;
    }
    
.Team_menuName {
    color: rgb(188, 187, 185);
    background-color: #242526;
    }
    
.Team_userNav .Team_menuPopup .Team_subMenu {
    background-color: #373737;
    }
    
.Team_menuPopup .Team_subMenu li:hover {
    background-color: #2d2d2d;
    }

that's what worked for me at least:

1495808632784screensave.webp
 
Back
Top