diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-10-10 23:42:46 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-10-10 23:42:46 -0300 |
commit | 8ebd946c4dc8bb3d28776ab507b7e140deacc53a (patch) | |
tree | 58a6d64c3a4b24d4e883320280c6a4e287365cbe /css | |
parent | 9e8c71bbcc912bf3fa5f7e88c3b981419fb1173b (diff) | |
download | muambeiro-8ebd946c4dc8bb3d28776ab507b7e140deacc53a.tar.gz muambeiro-8ebd946c4dc8bb3d28776ab507b7e140deacc53a.tar.bz2 |
User menu
Diffstat (limited to 'css')
-rw-r--r-- | css/muambeiro.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/css/muambeiro.css b/css/muambeiro.css index 3578c95..475aeec 100644 --- a/css/muambeiro.css +++ b/css/muambeiro.css @@ -34,3 +34,42 @@ ul.primary { display: none; visibility: hidden; } + +/* + * User menu. + */ +#block-system-user-menu { + background: #ffffff; + -moz-border-radius: 8px 8px 8px 8px; + -webkit-border-top-left-radius: 8px; + -webkit-border-top-right-radius: 8px; + border-radius: 8px 8px 8px 8px; +} + +#block-system-user-menu .content li { + list-style-type: none; + display: inline; + margin: 2px; + padding-right: 3px; +} + +#block-system-user-menu .content a { + display: inline-block; + color: #4D453E; + -moz-border-radius: 4px 4px 4px 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-radius: 4px 4px 4px 4px; + line-height: 4ex; + padding: 2px 5px 2px 5px; +} + +#block-system-user-menu .content a:link, +#block-system-user-menu .content a:visited { + background-color: #E1DFDC; +} + +#block-system-user-menu .content a:hover, +#block-system-user-menu .content a:active { + background-color: #ffffff; +} |