# HG changeset patch # User Marcin Kuzminski # Date 1360445865 -3600 # Node ID 030103d57e3054e0ec2fd1dd0a1cb8fef4335a06 # Parent f1491bad83397333712c15300346da6e99905854 drop down hover menu now fixes whole page padding diff -r f1491bad8339 -r 030103d57e30 rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css Sat Feb 09 22:21:31 2013 +0100 +++ b/rhodecode/public/css/style.css Sat Feb 09 22:37:45 2013 +0100 @@ -347,10 +347,10 @@ padding: 0; display: block; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6); - -webkit-border-radius: 4px 4px 4px 4px; - -khtml-border-radius: 4px 4px 4px 4px; - -moz-border-radius: 4px 4px 4px 4px; - border-radius: 4px 4px 4px 4px; + -webkit-border-radius: 0px 0px 4px 4px; + -khtml-border-radius: 0px 0px 4px 4px; + -moz-border-radius: 0px 0px 4px 4px; + border-radius: 0px 0px 4px 4px; } #header #header-inner.hover { width: 100% !important; @@ -3505,6 +3505,10 @@ padding: 10px 10px 14px 10px; } +#content.hover { + padding: 55px 10px 14px 10px !important; +} + #content div.box div.title div.search { border-left: 1px solid #316293; } diff -r f1491bad8339 -r 030103d57e30 rhodecode/templates/base/base.html --- a/rhodecode/templates/base/base.html Sat Feb 09 22:21:31 2013 +0100 +++ b/rhodecode/templates/base/base.html Sat Feb 09 22:37:45 2013 +0100 @@ -361,6 +361,7 @@ YUE.on('header-dd', 'click',function(e){ YUD.addClass('header-inner', 'hover'); + YUD.addClass('content', 'hover'); });