Commit 7afcf893 by Scott

Fix typos in SnowFlat CSS

parent b39f545b
...@@ -346,7 +346,8 @@ ...@@ -346,7 +346,8 @@
public function body_hidden() public function body_hidden()
{ {
$this->output('<div style="position:absolute; left:-9999px; top:-9999px;">'); $indent = $this->isRTL ? '9999px' : '-9999px';
$this->output('<div style="position:absolute; left:'.$indent.'; top:-9999px;">');
$this->waiting_template(); $this->waiting_template();
$this->output('</div>'); $this->output('</div>');
} }
......
...@@ -417,9 +417,6 @@ blockquote p { ...@@ -417,9 +417,6 @@ blockquote p {
display: none; display: none;
margin: 0 10px 10px; margin: 0 10px 10px;
} }
.qam-search.the-top .qa-search-field {
margin-right: -40px;
}
.qa-error { .qa-error {
background: #e74c3c; background: #e74c3c;
...@@ -898,7 +895,7 @@ blockquote p { ...@@ -898,7 +895,7 @@ blockquote p {
line-height: normal; line-height: normal;
} }
.qa-nav-user .qa-logged-in { .qa-nav-user .qa-logged-in {
display: blcok; display: block;
padding: 10px 20px; padding: 10px 20px;
border-bottom: 1px solid #2c3e50; border-bottom: 1px solid #2c3e50;
} }
...@@ -1738,7 +1735,7 @@ h1 a:hover, h1 a:focus, h1 a:visited { ...@@ -1738,7 +1735,7 @@ h1 a:hover, h1 a:focus, h1 a:visited {
.qa-template-users .qa-avatar-link img, .qa-template-favorites .qa-avatar-link img { .qa-template-users .qa-avatar-link img, .qa-template-favorites .qa-avatar-link img {
border: 1px solid #cbd7e3; border: 1px solid #cbd7e3;
} }
.qa-template-users .qam-usre-score-icon, .qa-template-favorites .qam-usre-score-icon { .qa-template-users .qam-user-score-icon, .qa-template-favorites .qam-user-score-icon {
display: inline-block; display: inline-block;
padding: 2px 6px 2px 1.8em; padding: 2px 6px 2px 1.8em;
background-color: #2ecc71; background-color: #2ecc71;
...@@ -1746,7 +1743,7 @@ h1 a:hover, h1 a:focus, h1 a:visited { ...@@ -1746,7 +1743,7 @@ h1 a:hover, h1 a:focus, h1 a:visited {
position: relative; position: relative;
float: right; float: right;
} }
.qa-template-users .qam-usre-score-icon:before, .qa-template-favorites .qam-usre-score-icon:before { .qa-template-users .qam-user-score-icon:before, .qa-template-favorites .qam-user-score-icon:before {
background-color: #27ae60; background-color: #27ae60;
content: '\e810'; content: '\e810';
font-family: "fontello"; font-family: "fontello";
......
...@@ -67,7 +67,7 @@ $(document).ready(function () { ...@@ -67,7 +67,7 @@ $(document).ready(function () {
/* /*
* Add wrapper to users point on users list * Add wrapper to users point on users list
*/ */
$('.qa-top-users-score').wrapInner('<div class="qam-usre-score-icon"></div>'); $('.qa-top-users-score').wrapInner('<div class="qam-user-score-icon"></div>');
/* /*
* add option lable in plugin option section * add option lable in plugin option section
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment