diff options
author | Mark Longair <mhl@pobox.com> | 2013-09-27 10:53:33 +0100 |
---|---|---|
committer | Mark Longair <mhl@pobox.com> | 2013-09-30 10:34:47 +0100 |
commit | f671ec44943b4f0cb436f1e6db7519168b467081 (patch) | |
tree | f05abf6fef44acf866a7830911feacf1d7cf7a22 | |
parent | cf21ebd8ebd4f2a585d18bffd811c415ea0819ab (diff) |
Fix a bug in jquery-ui-1.8.15.custom.css
The "font-size: ;" in jquery-ui-1.8.15.custom.css breaks asset
precompilation.
-rwxr-xr-x | app/assets/stylesheets/jquery-ui-1.8.15.custom.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/stylesheets/jquery-ui-1.8.15.custom.css b/app/assets/stylesheets/jquery-ui-1.8.15.custom.css index ea0254a2b..386d854ff 100755 --- a/app/assets/stylesheets/jquery-ui-1.8.15.custom.css +++ b/app/assets/stylesheets/jquery-ui-1.8.15.custom.css @@ -56,7 +56,7 @@ /* Component containers ----------------------------------*/ -.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: ; } +.ui-widget { font-family: Verdana,Arial,sans-serif; } .ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; } .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; } |