summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-19 03:20:22 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-19 03:20:26 -0400
commitab973ae52c100fc6a281187023360fa4c563f535 (patch)
tree9aa11a65783aad02a90f223cd08a51d2a20e3c7b
parentddaff077f60d879010ea85c5cfe02570a744ef28 (diff)
downloadaskbot-ab973ae52c100fc6a281187023360fa4c563f535.tar.gz
askbot-ab973ae52c100fc6a281187023360fa4c563f535.tar.bz2
askbot-ab973ae52c100fc6a281187023360fa4c563f535.zip
fixed a bug in the narrowest layout for the sidebar
-rw-r--r--askbot/media/style/style.css51
-rw-r--r--askbot/media/style/style.less64
2 files changed, 63 insertions, 52 deletions
diff --git a/askbot/media/style/style.css b/askbot/media/style/style.css
index c48728b5..cae896cc 100644
--- a/askbot/media/style/style.css
+++ b/askbot/media/style/style.css
@@ -4170,6 +4170,30 @@ textarea.tipped-input {
width: 515px;
margin-bottom: 0px;
}
+.tag-subscriptions {
+ border-spacing: 10px;
+ border-collapse: separate;
+}
+.tag-subscriptions form {
+ display: inline-block;
+ margin-bottom: 0;
+}
+.tag-subscriptions td {
+ vertical-align: middle;
+}
+.tag-subscriptions .action {
+ cursor: pointer;
+ color: #4A757F;
+ font-family: 'Open Sans Condensed', Arial, sans-serif;
+ text-decoration: none;
+}
+.tag-subscriptions ul.tags li {
+ margin: 2px 5px;
+}
+.auto-tweeting select {
+ width: auto;
+ margin-bottom: 0;
+}
/* modifications for small screens */
@media screen and (max-width: 960px) {
/* content margins touch viewport */
@@ -4352,27 +4376,8 @@ textarea.tipped-input {
width: 100%;
}
}
-.tag-subscriptions {
- border-spacing: 10px;
- border-collapse: separate;
-}
-.tag-subscriptions form {
- display: inline-block;
- margin-bottom: 0;
-}
-.tag-subscriptions td {
- vertical-align: middle;
-}
-.tag-subscriptions .action {
- cursor: pointer;
- color: #4A757F;
- font-family: 'Open Sans Condensed', Arial, sans-serif;
- text-decoration: none;
-}
-.tag-subscriptions ul.tags li {
- margin: 2px 5px;
-}
-.auto-tweeting select {
- width: auto;
- margin-bottom: 0;
+@media screen and (max-width: 338px) {
+ #scopeNav {
+ display: none;
+ }
}
diff --git a/askbot/media/style/style.less b/askbot/media/style/style.less
index 44b918b5..261edefb 100644
--- a/askbot/media/style/style.less
+++ b/askbot/media/style/style.less
@@ -4357,6 +4357,38 @@ textarea.tipped-input {
margin-bottom: 0px;
}
+.tag-subscriptions {
+ border-spacing: 10px;
+ border-collapse: separate;
+
+ form {
+ display: inline-block;
+ margin-bottom: 0;
+ }
+
+ td {
+ vertical-align: middle;
+ }
+
+ .action {
+ cursor: pointer;
+ color: #4A757F;
+ font-family: 'Open Sans Condensed', Arial, sans-serif;
+ text-decoration: none;
+ }
+
+ ul.tags li {
+ margin: 2px 5px;
+ }
+}
+
+.auto-tweeting {
+ select {
+ width: auto;
+ margin-bottom: 0;
+ }
+}
+
/* modifications for small screens */
@media screen and (max-width: 960px) {/* content margins touch viewport */
* {
@@ -4545,34 +4577,8 @@ textarea.tipped-input {
}
}
-.tag-subscriptions {
- border-spacing: 10px;
- border-collapse: separate;
-
- form {
- display: inline-block;
- margin-bottom: 0;
- }
-
- td {
- vertical-align: middle;
- }
-
- .action {
- cursor: pointer;
- color: #4A757F;
- font-family: 'Open Sans Condensed', Arial, sans-serif;
- text-decoration: none;
- }
-
- ul.tags li {
- margin: 2px 5px;
- }
-}
-
-.auto-tweeting {
- select {
- width: auto;
- margin-bottom: 0;
+@media screen and (max-width: 338px) {
+ #scopeNav {
+ display: none;
}
}