Fixed layout issue when hovering on non 32x32 tile previews

This commit is contained in:
juliandescottes
2012-09-20 23:01:49 +02:00
parent 29a44b79c5
commit 019df61cdc
2 changed files with 17 additions and 6 deletions

View File

@@ -39,8 +39,7 @@
}
.preview-tile .tile-action {
display: none;
float: right;
display: block;
cursor: pointer;
width: 30px;
height: 30px;
@@ -50,8 +49,14 @@
border: none;
}
.preview-tile:hover .tile-action {
display: block;
.preview-tile .tile-action-container {
float: right;
visibility : hidden;
overflow: hidden;
}
.preview-tile:hover .tile-action-container {
visibility : visible;
}
.preview-tile .tile-action.duplicate-frame-action {