fixed compose preview spacing issue on blockquotes/paragraphs - made post selection buttons more prominent
This commit is contained in:
parent
0337c293c1
commit
be27e1dfee
|
@ -309,9 +309,7 @@
|
||||||
border: 1px dashed $gray;
|
border: 1px dashed $gray;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
p {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
&.hidden {
|
&.hidden {
|
||||||
width: 0;
|
width: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
|
|
@ -668,10 +668,8 @@ body {
|
||||||
.alert {
|
.alert {
|
||||||
padding: 8px 35px 8px 14px;
|
padding: 8px 35px 8px 14px;
|
||||||
margin-bottom: 18px;
|
margin-bottom: 18px;
|
||||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
||||||
background-color: #fcf8e3;
|
background-color: #fcf8e3;
|
||||||
border: 1px solid #fbeed5;
|
border: 1px solid #fbeed5;
|
||||||
border-radius: 4px;
|
|
||||||
color: #c09853;
|
color: #c09853;
|
||||||
}
|
}
|
||||||
.alert .close {
|
.alert .close {
|
||||||
|
|
|
@ -637,6 +637,7 @@ h3 {
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
margin-top: 17px;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -882,10 +883,42 @@ clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#selected-posts {
|
#selected-posts {
|
||||||
|
|
||||||
margin-left: 330px;
|
margin-left: 330px;
|
||||||
width: 12%;
|
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 {
|
p {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue