From c81eb1329d8ce142828486267004f746a785e085 Mon Sep 17 00:00:00 2001 From: Anika Henke Date: Sat, 5 Nov 2011 01:23:47 +0000 Subject: removed font declarations from jquery-ui theme --- lib/scripts/jquery/jquery-ui-theme/smoothness.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/scripts/jquery') diff --git a/lib/scripts/jquery/jquery-ui-theme/smoothness.css b/lib/scripts/jquery/jquery-ui-theme/smoothness.css index 0f1a7e770..44883417d 100644 --- a/lib/scripts/jquery/jquery-ui-theme/smoothness.css +++ b/lib/scripts/jquery/jquery-ui-theme/smoothness.css @@ -56,9 +56,8 @@ /* Component containers ----------------------------------*/ -.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; } .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 input, .ui-widget select, .ui-widget textarea, .ui-widget button { 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; } .ui-widget-content a { color: #222222; } .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; } -- cgit v1.2.3 From 1811609e717748b047e83bde4d98069b9830aba5 Mon Sep 17 00:00:00 2001 From: Anika Henke Date: Sat, 5 Nov 2011 10:52:56 +0000 Subject: re-added font-size to .ui-widget of jqueryui theme to make programmatical removing of font-family easier --- lib/scripts/jquery/jquery-ui-theme/smoothness.css | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/scripts/jquery') diff --git a/lib/scripts/jquery/jquery-ui-theme/smoothness.css b/lib/scripts/jquery/jquery-ui-theme/smoothness.css index 44883417d..910d24b95 100644 --- a/lib/scripts/jquery/jquery-ui-theme/smoothness.css +++ b/lib/scripts/jquery/jquery-ui-theme/smoothness.css @@ -56,6 +56,7 @@ /* Component containers ----------------------------------*/ +.ui-widget { font-size: 1.1em; } .ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { 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; } -- cgit v1.2.3 From 67fd10d7d6376d0033f3bee5b62b5ec2b80b5a9a Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Sat, 5 Nov 2011 12:05:34 +0100 Subject: Remove font family declarations from css in the jquery update script --- lib/scripts/jquery/update.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/scripts/jquery') diff --git a/lib/scripts/jquery/update.sh b/lib/scripts/jquery/update.sh index 38f38bece..fde46f4d7 100755 --- a/lib/scripts/jquery/update.sh +++ b/lib/scripts/jquery/update.sh @@ -23,3 +23,6 @@ for img in $images do wget -nv https://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/smoothness/$img -O jquery-ui-theme/$img done + +# remove font family declarations from smoothness CSS +sed -i "s/font-family:[^;]*; \?//" jquery-ui-theme/smoothness.css -- cgit v1.2.3