summaryrefslogtreecommitdiffstats
path: root/askbot/media/style
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-07 05:37:16 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-07 05:37:16 -0400
commit67c5a4bb63a08c3620e6667f4b0c3a3c61cc61ce (patch)
tree4fe5381c2b2a16f994a8bfa6092db70e77e7a52f /askbot/media/style
parentb03f881b11204b7e0fe323dd9148085ef0dfa35d (diff)
parent60bc578f579d8b5a40e4c040a0bbd6a60e30e950 (diff)
downloadaskbot-67c5a4bb63a08c3620e6667f4b0c3a3c61cc61ce.tar.gz
askbot-67c5a4bb63a08c3620e6667f4b0c3a3c61cc61ce.tar.bz2
askbot-67c5a4bb63a08c3620e6667f4b0c3a3c61cc61ce.zip
merged with the master branch
Diffstat (limited to 'askbot/media/style')
-rw-r--r--askbot/media/style/style.css83
-rw-r--r--askbot/media/style/style.less69
2 files changed, 123 insertions, 29 deletions
diff --git a/askbot/media/style/style.css b/askbot/media/style/style.css
index 9e386c09..2c4f4209 100644
--- a/askbot/media/style/style.css
+++ b/askbot/media/style/style.css
@@ -455,6 +455,20 @@ body.user-messages {
height: 41px;
z-index: 10000;
position: relative;
+ /* the guts are absolute-positioned */
+
+}
+#searchBar input.searchInput,
+#searchBar div.input-tool-tip,
+#searchBar input[type="submit"].searchBtn,
+#searchBar input[type="button"].cancelSearchBtn {
+ position: absolute;
+ z-index: 100;
+}
+#searchBar input.searchInput {
+ z-index: 99;
+ /* just below the buttons and the hint */
+
}
#searchBar input.searchInput {
font-size: 22px;
@@ -467,18 +481,36 @@ body.user-messages {
font-family: Arial;
width: 100%;
margin: 8px 0 6px 0;
- padding: 0;
+ padding: 0 80px 0 8px;
+ top: 0;
+ left: 0;
-webkit-box-shadow: 0 0 0 #929292;
-moz-box-shadow: 0 0 0 #929292;
box-shadow: 0 0 0 #929292;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
}
#searchBar div.input-tool-tip {
- margin-top: -40px;
- padding-top: 10px;
- height: 30px;
- line-height: 20px;
+ padding: 0 0 0 10px;
+ height: 41px;
+ line-height: 41px;
font-size: 20px;
font-style: italic;
+ bottom: 0;
+ left: 0;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ width: 100% a;
+}
+#searchBar input[type="submit"].searchBtn {
+ right: 0;
+ top: 0;
+}
+#searchBar input[type="button"].cancelSearchBtn {
+ right: 48px;
+ top: 0;
}
.search-drop-menu {
box-sizing: border-box;
@@ -487,7 +519,6 @@ body.user-messages {
border-top: none;
margin: 0;
position: relative;
- top: 0;
z-index: 10000;
}
.search-drop-menu ul {
@@ -536,8 +567,7 @@ input[type="submit"].searchBtn {
border: #FFF 1px solid;
line-height: 22px;
text-align: center;
- float: right;
- margin: -39px -48px 0 0;
+ margin: 1px 0 0 0;
width: 48px;
background: -98px -37px url(../images/sprites.png) no-repeat;
border-radius: 0;
@@ -549,11 +579,9 @@ input[type="submit"].searchBtn {
-moz-box-shadow: 0 0 0 #929292;
box-shadow: 0 0 0 #929292;
cursor: pointer;
- position: relative;
z-index: 10001;
}
.groups-page input[type="submit"].searchBtn,
-.tags-page input[type="submit"].searchBtn,
.badges-pages input[type="submit"].searchBtn,
.user-profile-page input[type="submit"].searchBtn,
.meta input[type="submit"].searchBtn,
@@ -603,9 +631,6 @@ input[type="button"].cancelSearchBtn {
text-align: center;
width: 35px !important;
cursor: pointer;
- float: right;
- margin: -40px 0 0 0;
- position: relative;
z-index: 10001;
}
.cancelSearchBtn:hover {
@@ -2296,6 +2321,12 @@ ul#related-tags li {
width: 100%;
margin: 3px 0 20px 5px;
}
+.question-page .comments .edit-comment-buttons {
+ margin-left: -4px;
+}
+.question-page .comments .edit-comment-buttons .checkbox {
+ margin: 3px;
+}
.question-page .comments .controls a {
border: none;
color: #988e4c;
@@ -2333,15 +2364,24 @@ ul#related-tags li {
.question-page .comments textarea {
box-sizing: border-box;
border: #cce6ec 3px solid;
+ color: #666;
font-family: Arial;
font-size: 13px;
height: 54px;
line-height: 1.3;
- margin: -1px 0 7px 1px;
+ margin: -1px 0 0 1px;
outline: none;
overflow: auto;
- padding: 0px 19px 2px 3px;
- width: 100%;
+ padding: 5px 19px 2px 3px;
+ width: 99.6%;
+}
+.question-page .comments .wmd-container textarea {
+ border: none;
+}
+.question-page .comments .transient-comment {
+ margin-bottom: 3px;
+ /* match paragraph style */
+
}
.question-page .comments input {
margin-left: 10px;
@@ -2381,6 +2421,9 @@ ul#related-tags li {
font-size: 11px;
min-height: 25px;
}
+.question-page .comments .comment:last-child {
+ border-bottom: none;
+}
.question-page .comments div.comment:hover {
background-color: #efefef;
}
@@ -3136,6 +3179,14 @@ ins p,
ins {
background-color: #E6F0A2;
}
+body.question-page ins,
+body.main-page ins {
+ /* a hack for google adwords
+ * todo: make rule above more specific
+ * and remove this one */
+
+ background: transparent;
+}
/* ----- Red Popup notification ----- */
.vote-notification {
z-index: 1;
diff --git a/askbot/media/style/style.less b/askbot/media/style/style.less
index 55b99ddb..5ee2eab3 100644
--- a/askbot/media/style/style.less
+++ b/askbot/media/style/style.less
@@ -498,6 +498,19 @@ body.user-messages {
z-index: 10000;
position: relative;
+ /* the guts are absolute-positioned */
+ input.searchInput,
+ div.input-tool-tip,
+ input[type="submit"].searchBtn,
+ input[type="button"].cancelSearchBtn {
+ position: absolute;
+ z-index: 100;
+ }
+
+ input.searchInput {
+ z-index: 99;/* just below the buttons and the hint */
+ }
+
input.searchInput {
font-size: 22px;
height: 26px;
@@ -509,17 +522,36 @@ body.user-messages {
font-family:@body-font;
width: 100%;
margin: 8px 0 6px 0;
- padding: 0;
+ padding: 0 80px 0 8px;
+ top: 0;
+ left: 0;
.box-shadow(0, 0, 0);
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
}
div.input-tool-tip {
- margin-top: -40px;
- padding-top: 10px;
- height: 30px;
- line-height: 20px;
+ padding: 0 0 0 10px;
+ height: 41px;
+ line-height: 41px;
font-size: 20px;
font-style: italic;
+ bottom: 0;
+ left: 0;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ width: 100%a
+ }
+
+ input[type="submit"].searchBtn {
+ right: 0;
+ top: 0;
+ }
+ input[type="button"].cancelSearchBtn {
+ right: 48px;
+ top: 0;
}
}
@@ -530,7 +562,6 @@ body.user-messages {
border-top: none;
margin: 0;
position: relative;
- top: 0;
z-index: 10000;
ul {
@@ -587,19 +618,16 @@ input[type="submit"].searchBtn {
border:#FFF 1px solid;
line-height: 22px;
text-align: center;
- float:right;
- margin: -39px -48px 0 0;
+ margin: 1px 0 0 0;
width: 48px;
.sprites(-98px,-37px);
.rounded-corners(0);
.box-shadow(0, 0, 0);
cursor:pointer;
- position: relative;
z-index: 10001;
}
.groups-page, /* todo: clean up - should not need this */
-.tags-page,
.badges-pages,
.user-profile-page,
.meta,
@@ -650,9 +678,6 @@ input[type="button"].cancelSearchBtn {
text-align: center;
width: 35px !important;
cursor:pointer;
- float: right;
- margin: -40px 0 0 0;
- position: relative;
z-index: 10001;
}
@@ -2389,6 +2414,13 @@ ul#related-tags li {
width: 100%;
margin: 3px 0 20px 5px;
}
+
+ .edit-comment-buttons {
+ margin-left: -4px;
+ .checkbox {
+ margin: 3px;
+ }
+ }
.controls a {
border: none;
@@ -2484,6 +2516,9 @@ ul#related-tags li {
font-size: 11px;
min-height: 25px;
}
+ .comment:last-child {
+ border-bottom: none;
+ }
div.comment:hover {
background-color: #efefef;
}
@@ -3260,6 +3295,14 @@ ins .post-tag, ins p, ins {
background-color: #E6F0A2;
}
+body.question-page ins,
+body.main-page ins {
+ /* a hack for google adwords
+ * todo: make rule above more specific
+ * and remove this one */
+ background: transparent;
+}
+
/* ----- Red Popup notification ----- */
.vote-notification {