summaryrefslogtreecommitdiffstats
path: root/askbot/media
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-21 01:28:54 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-21 01:28:54 -0400
commit0ca7e110bad0c45f37f88354757bcea296dc03bc (patch)
treeaab5b04741225499cca569fd19b0072780a43fdb /askbot/media
parent065a92439cb788e0570dc2ebf749e4b7f7a36fed (diff)
downloadaskbot-0ca7e110bad0c45f37f88354757bcea296dc03bc.tar.gz
askbot-0ca7e110bad0c45f37f88354757bcea296dc03bc.tar.bz2
askbot-0ca7e110bad0c45f37f88354757bcea296dc03bc.zip
improved responsive design of edit question and edit answer pages
Diffstat (limited to 'askbot/media')
-rw-r--r--askbot/media/style/style.css16
-rw-r--r--askbot/media/style/style.less28
2 files changed, 34 insertions, 10 deletions
diff --git a/askbot/media/style/style.css b/askbot/media/style/style.css
index 0f873790..fc2373db 100644
--- a/askbot/media/style/style.css
+++ b/askbot/media/style/style.css
@@ -1872,6 +1872,9 @@ ul#related-tags li {
.edit-answer-page .retagger-buttons button {
margin: 8px 10px 5px 0;
}
+.edit-answer-page .wmd-container {
+ margin-top: 13px;
+}
#editor {
/* adjustment for editor preview */
@@ -1969,9 +1972,6 @@ ul#related-tags li {
line-height: 13px;
margin-bottom: 5px;
}
-.question-options label {
- vertical-align: text-top;
-}
.edit-content-html {
border-top: 1px dotted #D8D2A9;
border-bottom: 1px dotted #D8D2A9;
@@ -4087,15 +4087,20 @@ textarea.tipped-input {
/* category selector */
.category-selector {
border-spacing: 0;
+ width: 100%;
}
.category-selector ul.select-box {
height: 150px;
- width: 235px;
+ width: 100%;
overflow: auto;
border: #ccc 3px solid;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
}
.category-selector td {
vertical-align: top;
+ width: 33.333%;
}
.category-selector li {
position: relative;
@@ -4319,6 +4324,9 @@ textarea.tipped-input {
.edit-question-page #fmedit #id_title {
margin: 15px 0 0 0;
}
+ .edit-answer-page .after-editor {
+ margin-top: 8px;
+ }
.question-page .comment-votes {
display: none;
}
diff --git a/askbot/media/style/style.less b/askbot/media/style/style.less
index 96b826cf..28b2ee67 100644
--- a/askbot/media/style/style.less
+++ b/askbot/media/style/style.less
@@ -1974,6 +1974,12 @@ ul#related-tags li {
}
}
+.edit-answer-page {
+ .wmd-container {
+ margin-top: 13px;
+ }
+}
+
#editor { /* adjustment for editor preview */
display: block;
font-size: 100%;
@@ -2083,10 +2089,6 @@ ul#related-tags li {
color: #666;
line-height: 13px;
margin-bottom:5px;
-
- label {
- vertical-align: text-top;
- }
}
.edit-content-html {
@@ -2095,7 +2097,9 @@ ul#related-tags li {
margin: 5px 0 5px 0;
}
-.edit-question-page, #fmedit, .wmd-preview{
+.edit-question-page,
+#fmedit,
+.wmd-preview {
color:@info-text-dark;
#id_revision{
@@ -4271,14 +4275,20 @@ textarea.tipped-input {
/* category selector */
.category-selector {
border-spacing: 0;
+ width: 100%;
+
ul.select-box {
height: 150px;
- width: 235px;
+ width: 100%;
overflow: auto;
border: #ccc 3px solid;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
}
td {
vertical-align: top;
+ width: 33.333%
}
li {
position: relative;
@@ -4511,6 +4521,12 @@ textarea.tipped-input {
}
}
+ .edit-answer-page {
+ .after-editor {
+ margin-top: 8px;
+ }
+ }
+
.question-page {
.comment-votes {
display: none;