Mercurial > public > bravenewsurf
changeset 87:fbeda0f5f3be
Fix for odd Webkit CSS issue when using jPlayer Blue Monday skin and our CSS. All instances of the Future Bugler font on the Listen page were jaggie and smaller than expected.
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Sun, 27 Nov 2011 15:06:26 -0600 |
parents | 54f616fbd3c5 |
children | 7d0f660be46a |
files | bns_website/static/css/base.css bns_website/templates/base.html |
diffstat | 2 files changed, 12 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/bns_website/static/css/base.css Sat Nov 26 15:10:44 2011 -0600 +++ b/bns_website/static/css/base.css Sun Nov 27 15:06:26 2011 -0600 @@ -88,3 +88,14 @@ margin-bottom: 2em; border-top: 2px solid DimGray; /* some other gray color might be better */ } + +/* +----------------------------------------------- +Fix for weird CSS font issue between jPlayer +Blue Monday skin, our CSS, and Webkit on OSX. +----------------------------------------------- +*/ +div.jp-audio, div.jp-video { + font-size:1.25em; +} +
--- a/bns_website/templates/base.html Sat Nov 26 15:10:44 2011 -0600 +++ b/bns_website/templates/base.html Sun Nov 27 15:06:26 2011 -0600 @@ -10,8 +10,8 @@ <link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico" /> <link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css" /> <link rel="stylesheet" href="{{ STATIC_URL }}css/fonts/future_bugler.css" /> +{% block custom_css %}{% endblock %} <link rel="stylesheet" href="{{ STATIC_URL }}css/base.css" /> -{% block custom_css %}{% endblock %} {% block custom_js %}{% endblock %} </head> <body>{% block begin_body %}{% endblock %}