diff options
author | Mark Longair <mhl@pobox.com> | 2013-09-27 10:53:33 +0100 |
---|---|---|
committer | Mark Longair <mhl@pobox.com> | 2013-11-19 17:31:36 +0000 |
commit | 3953060348dbb14a76bc74173dca7d50afbeb197 (patch) | |
tree | d3865f5174237f6880d8316581c6d2e51a6c0608 | |
parent | ab460b44463f45eea544b8d0d0333cb3c28e305a (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; } |