1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/c90e760da0fd/ Changeset: c90e760da0fd User: james_taylor Date: 2013-09-11 21:47:26 Summary: style: do not word wrap in pre blocks Affected #: 3 files diff -r 669dd89d39c410688d5c6201fcdb9d30f2259787 -r c90e760da0fdc89f2e6b9e42dfaa7b365c8eeea4 lib/galaxy/__init__.py --- a/lib/galaxy/__init__.py +++ b/lib/galaxy/__init__.py @@ -106,4 +106,6 @@ class NullHandler( logging.Handler ): def emit( self, record ): pass - logging.NullHandler = NullHandler \ No newline at end of file + logging.NullHandler = NullHandler + +import galaxy.eggs \ No newline at end of file diff -r 669dd89d39c410688d5c6201fcdb9d30f2259787 -r c90e760da0fdc89f2e6b9e42dfaa7b365c8eeea4 static/style/blue/base.css --- a/static/style/blue/base.css +++ b/static/style/blue/base.css @@ -752,6 +752,7 @@ .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} .affix{position:fixed} .navbar-fixed-top .navbar-brand{font-family:Verdana;font-weight:bold;font-size:160%} +pre{overflow:auto;word-wrap:normal;white-space:pre} .btn.active,.btn:active{color:inherit} .dropdown-menu{max-width:auto} input[type="checkbox"],input[type="radio"]{margin-left:0.5ex;margin-right:0.5ex} diff -r 669dd89d39c410688d5c6201fcdb9d30f2259787 -r c90e760da0fdc89f2e6b9e42dfaa7b365c8eeea4 static/style/src/less/galaxy_bootstrap/overrides.less --- a/static/style/src/less/galaxy_bootstrap/overrides.less +++ b/static/style/src/less/galaxy_bootstrap/overrides.less @@ -1,9 +1,17 @@ .navbar-fixed-top .navbar-brand { - font-family: Verdana; - font-weight: bold; - font-size: 160%; + font-family: Verdana; + font-weight: bold; + font-size: 160%; } +// Don't wrap text inside pre +pre { + overflow: auto; + word-wrap: normal; + white-space: pre; +} + + .btn.hover { @btn:hover(); } Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.