summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-18 16:44:55 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-18 16:44:55 -0400
commita4af4765dfd37c4da5c7f6471fc234f764d1482b (patch)
treed165b6ddcce7c81a255f44ef37bf6e1e1a666898
parent9921f8b795618bc017220c6ddd0a300b8e86a22a (diff)
downloadaskbot-a4af4765dfd37c4da5c7f6471fc234f764d1482b.tar.gz
askbot-a4af4765dfd37c4da5c7f6471fc234f764d1482b.tar.bz2
askbot-a4af4765dfd37c4da5c7f6471fc234f764d1482b.zip
fixed a css issue with the messages falling from the header
-rw-r--r--askbot/media/style/style.css9
-rw-r--r--askbot/media/style/style.less8
2 files changed, 8 insertions, 9 deletions
diff --git a/askbot/media/style/style.css b/askbot/media/style/style.css
index 695b33b4..bd381abd 100644
--- a/askbot/media/style/style.css
+++ b/askbot/media/style/style.css
@@ -199,7 +199,6 @@ body.user-messages {
top: 0px;
left: 0px;
width: 100%;
- height: 34px;
z-index: 100000;
padding: 0;
text-align: center;
@@ -207,11 +206,11 @@ body.user-messages {
font-family: 'Open Sans Condensed', Arial, sans-serif;
}
.notify .notification {
- margin-top: 6px;
- /*margin-bottom: 6px;*/
-
- font-size: 16px;
color: #424242;
+ font-size: 16px;
+ height: 34px;
+ line-height: 34px;
+ margin: 0 !important;
}
.wait-icon-box {
text-align: center;
diff --git a/askbot/media/style/style.less b/askbot/media/style/style.less
index a9c4f8fa..aa837bb4 100644
--- a/askbot/media/style/style.less
+++ b/askbot/media/style/style.less
@@ -210,7 +210,6 @@ body.user-messages {
top: 0px;
left: 0px;
width: 100%;
- height: 34px;
z-index: 100000;
padding: 0;
text-align: center;
@@ -218,10 +217,11 @@ body.user-messages {
font-family:@main-font;
.notification {
- margin-top: 6px;
- /*margin-bottom: 6px;*/
+ color: #424242;
font-size: 16px;
- color:#424242
+ height: 34px;
+ line-height: 34px;
+ margin: 0 !important;
}
}