summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-03-12 00:13:34 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-03-12 00:13:48 -0500
commitb00797906d29e573be6d200208ccaacdf7118b7c (patch)
treeb6e92f885549228065f910f4962a14449982dd94
parent92f99bb3b08ab0181ab90cc5019862b38ff2c18c (diff)
downloadaskbot-b00797906d29e573be6d200208ccaacdf7118b7c.tar.gz
askbot-b00797906d29e573be6d200208ccaacdf7118b7c.tar.bz2
askbot-b00797906d29e573be6d200208ccaacdf7118b7c.zip
added a css fix for spanish language for the search bar
-rw-r--r--askbot/skins/default/media/style/style.less24
1 files changed, 24 insertions, 0 deletions
diff --git a/askbot/skins/default/media/style/style.less b/askbot/skins/default/media/style/style.less
index 4f096bd0..e63ff373 100644
--- a/askbot/skins/default/media/style/style.less
+++ b/askbot/skins/default/media/style/style.less
@@ -3359,3 +3359,27 @@ pre.prettyprint { clear:both;padding: 3px; border: 0px solid #888; }
#leading-sidebar {
float: left;
}
+
+/* language-specific fixes */
+body.lang-es {
+ #searchBar {
+ width: 398px;
+ .searchInput {
+ width: 337px;
+ }
+ .searchInputCancelable {
+ width: 302px;
+ }
+ }
+}
+body.anon.lang-es {
+ #searchBar {
+ width: 485px;
+ .searchInput {
+ width: 425px;
+ }
+ .searchInputCancelable {
+ width: 390px;
+ }
+ }
+}