fixing the composer that I just re-broke

This commit is contained in:
Kris Aubuchon 2014-04-21 11:54:57 -04:00
parent 5fd874b74a
commit 2c44f724f4
2 changed files with 13 additions and 11 deletions

View File

@ -87,15 +87,6 @@ div.ac-wrap {
display: none; display: none;
} }
@media screen and (min-width: 1550px) {
#reply-control {
.wmd-controls {
width: 1450px;
left: auto;
right: auto;
}
}
}
.auto-close-fields { .auto-close-fields {
input { input {

View File

@ -372,10 +372,11 @@
} }
} }
.wmd-controls { .wmd-controls {
left: auto; left: 30px;
right: auto; right: 30px;
position: absolute; position: absolute;
bottom: 48px; bottom: 48px;
top: 50px;
// this removes the topmost margin; // this removes the topmost margin;
// if we don't have this, all posts would have extra space at the top // if we don't have this, all posts would have extra space at the top
@ -462,3 +463,13 @@
padding-left: 20px; padding-left: 20px;
padding-right: 20px; padding-right: 20px;
} }
@media screen and (min-width: 1550px) {
#reply-control {
.wmd-controls {
width: 1450px;
left: auto;
right: auto;
}
}
}