summaryrefslogtreecommitdiffstats
path: root/askbot/media
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-21 19:03:13 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-21 19:03:13 -0400
commit637052ee0353087af95eb0b9dc0754c875db30f4 (patch)
tree216ece5b047fa2dda14201b6e22b0c8ebfc19657 /askbot/media
parent0ca7e110bad0c45f37f88354757bcea296dc03bc (diff)
downloadaskbot-637052ee0353087af95eb0b9dc0754c875db30f4.tar.gz
askbot-637052ee0353087af95eb0b9dc0754c875db30f4.tar.bz2
askbot-637052ee0353087af95eb0b9dc0754c875db30f4.zip
styling + a unicode livesettings bugfix
Diffstat (limited to 'askbot/media')
-rw-r--r--askbot/media/style/style.css16
-rw-r--r--askbot/media/style/style.less22
2 files changed, 23 insertions, 15 deletions
diff --git a/askbot/media/style/style.css b/askbot/media/style/style.css
index fc2373db..8b6451a6 100644
--- a/askbot/media/style/style.css
+++ b/askbot/media/style/style.css
@@ -159,6 +159,8 @@ a:hover {
}
.avatar-box {
text-decoration: none;
+ width: 32px;
+ height: 32px;
}
.badge-context-toggle.active {
cursor: pointer;
@@ -838,8 +840,11 @@ body.anon.ask-page .search-drop-menu {
.box {
background: #fff;
padding: 4px 0px 10px 1px;
- width: 200px;
+ width: 100%;
overflow: hidden;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
/* widgets for question template */
/* notify by email box */
@@ -2032,11 +2037,11 @@ ul#related-tags li {
.question-page p.rss {
float: none;
clear: both;
- padding: 3px 0 3px 18px;
+ display: inline-block;
+ padding: 3px 0 3px 20px;
font-size: 15px;
- width: 130px;
+ width: auto;
background-position: center left;
- margin-left: 0px !important;
}
.question-page p.rss a {
font-family: 'Open Sans Condensed', Arial, sans-serif;
@@ -2565,8 +2570,7 @@ ul#related-tags li {
}
.question-page .vote-buttons .notify-sidebar {
text-align: center;
- width: 130px;
- margin: 7px auto 0;
+ margin: 6px auto 0;
}
.question-page .vote-buttons .notify-sidebar label {
vertical-align: top;
diff --git a/askbot/media/style/style.less b/askbot/media/style/style.less
index 28b2ee67..9190a726 100644
--- a/askbot/media/style/style.less
+++ b/askbot/media/style/style.less
@@ -164,6 +164,8 @@ a:hover {
.avatar-box {
text-decoration: none;
+ width: 32px;
+ height: 32px;
}
.badge-context-toggle.active {
@@ -869,8 +871,11 @@ body.anon.ask-page .search-drop-menu {
.box {
background: #fff;
padding: 4px 0px 10px 1px;
- width:200px;
+ width: 100%;
overflow: hidden;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
p {
margin-bottom: 4px;
@@ -2149,13 +2154,13 @@ ul#related-tags li {
}
p.rss {
- float:none;
- clear:both;
- padding: 3px 0 3px 18px;
+ float: none;
+ clear: both;
+ display: inline-block;
+ padding: 3px 0 3px 20px;
font-size: 15px;
- width:130px;
- background-position:center left;
- margin-left:0px !important;
+ width: auto;
+ background-position: center left;
}
p.rss a {
@@ -2693,8 +2698,7 @@ ul#related-tags li {
.vote-buttons .notify-sidebar {
text-align: center;
- width:130px;
- margin: 7px auto 0;
+ margin: 6px auto 0;
label {
vertical-align: top;
}