fixed compose preview spacing issue on blockquotes/paragraphs - made post selection buttons more prominent

This commit is contained in:
Kris Aubuchon 2013-10-29 22:00:18 -04:00
parent 0337c293c1
commit be27e1dfee
3 changed files with 34 additions and 5 deletions

View File

@ -309,9 +309,7 @@
border: 1px dashed $gray;
overflow: auto;
visibility: visible;
p {
margin-top: 0;
}
&.hidden {
width: 0;
visibility: hidden;

View File

@ -668,10 +668,8 @@ body {
.alert {
padding: 8px 35px 8px 14px;
margin-bottom: 18px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
border-radius: 4px;
color: #c09853;
}
.alert .close {

View File

@ -637,6 +637,7 @@ h3 {
blockquote {
margin: 0;
margin-top: 17px;
padding: 12px;
}
@ -882,10 +883,42 @@ clear: both;
}
#selected-posts {
margin-left: 330px;
width: 12%;
.btn {
border: none;
color: $white;
font-weight: normal;
color: #fff;
background: $btn-primary-background-color;
&[href] {
color: $white;
}
&:hover
{
color: #fff;
background: darken($btn-primary-background-color, 12%);
}
&:active {
@include linear-gradient(darken($btn-primary-background-color, 18%), darken($btn-primary-background-color, 12%));
@include box-shadow(inset 0 1px 3px rgba($black, 0.2));
color: #fff;
}
&[disabled] {
text-shadow: 0 1px 0 rgba($black, 0.2);
@include linear-gradient($btn-primary-background-color, $btn-primary-background-color-dark);
@include box-shadow((inset 0 1px 0 rgba($white, 0.33), inset 0 -1px 2px rgba($black, 0.2)));
}
}
p {
font-size: 13px;
}