Created
July 3, 2015 04:10
-
-
Save FMCorz/ef5c529ed228ac6c01bf to your computer and use it in GitHub Desktop.
Styling Moodle's user menu using theme_more
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Not logged in */ | |
.usermenu .login { | |
color: red; | |
} | |
.usermenu .login a { | |
color: green; | |
} | |
.usermenu .login a:focus, | |
.usermenu .login a:hover { | |
color: yellow; | |
} | |
/* Logged in */ | |
.jsenabled .usermenu .moodle-actionmenu.show { | |
background-color: yellow; | |
} | |
.usermenu .moodle-actionmenu .toggle-display { | |
color: blue; | |
} | |
.usermenu .moodle-actionmenu .toggle-display:hover { | |
color: orange; | |
} | |
.jsenabled .usermenu .moodle-actionmenu.show .menu a:hover { | |
color: purple; | |
background: pink; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment