css fixes for insert/delete buttons

This commit is contained in:
Andy Miller
2014-10-07 14:23:53 -06:00
parent 902627efa9
commit 5a7d475808
3 changed files with 20 additions and 7 deletions

View File

@@ -1711,19 +1711,25 @@ body.remodal_active .remodal {
position: absolute;
left: 0;
right: 0;
bottom: 25px;
bottom: 22px;
border: 1px solid #e1e1e1;
width: 50%;
text-align: center;
cursor: pointer;
font-size: 0.8rem; }
.dropzone .dz-preview:hover .dz-remove:hover, .dropzone .dz-preview:hover .dz-insert:hover {
background: #EEEEEE; }
.dropzone .dz-preview:hover .dz-remove {
right: inherit; }
left: inherit;
border-left: 0; }
.dropzone .dz-preview:hover .dz-insert {
left: inherit; }
right: inherit; }
.dropzone .dz-preview .dz-details {
width: 150px;
height: 100px;
position: relative;
background: #f6f6f6;
border: 1px solid #e1e1e1;
font-size: 0.8rem;
padding: 5px;
margin-bottom: 22px; }

File diff suppressed because one or more lines are too long

View File

@@ -142,18 +142,24 @@ $error-color: #D55A4E;
position: absolute;
left: 0;
right: 0;
bottom: 25px;
bottom: 22px;
border:1px solid darken($content-bg,5%);
width: 50%;
text-align: center;
cursor: pointer;
font-size: 0.8rem;
&:hover {
background: $content-bg;
}
}
&:hover .dz-remove {
right: inherit;
left: inherit;
border-left: 0;
}
&:hover .dz-insert {
left: inherit;
right: inherit;
}
.dz-details {
@@ -161,6 +167,7 @@ $error-color: #D55A4E;
height: $preview-height;
position: relative;
background: lighten($content-bg,3%);
border:1px solid darken($content-bg,5%);
font-size: 0.8rem;
padding: 5px;
margin-bottom: 22px;