mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
c66ce4c9ad
Interstitial tiles are fake slides and allow us to insert drag n drop tiles between two other.
63 lines
912 B
CSS
63 lines
912 B
CSS
|
|
.preview-list {
|
|
list-style-type: none;
|
|
}
|
|
|
|
.preview-tile {
|
|
padding : 10px;
|
|
overflow: hidden;
|
|
background-color: gray;
|
|
}
|
|
|
|
.preview-tile .canvas-container {
|
|
float: left;
|
|
}
|
|
|
|
.preview-tile .tile-view {
|
|
float: left;
|
|
border: blue 1px solid;
|
|
}
|
|
|
|
.preview-tile .tile-action {
|
|
display: none;
|
|
float: right;
|
|
}
|
|
|
|
.preview-tile:hover .tile-action {
|
|
display: block;
|
|
}
|
|
|
|
.preview-tile:hover {
|
|
background-color: lightgray;
|
|
}
|
|
|
|
.preview-tile.selected {
|
|
background-color: lightyellow;
|
|
}
|
|
|
|
.preview-tile.ui-draggable-dragging {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
|
|
.preview-tile.droppable-active {
|
|
background-color: pink;
|
|
}
|
|
|
|
.interstitial-tile.droppable-hover-active {
|
|
background-color: purple;
|
|
}
|
|
|
|
.preview-tile.droppable-hover-active {
|
|
background-color: yellow;
|
|
}
|
|
|
|
.interstitial-tile {
|
|
visibility: hidden;
|
|
background-color: blue;
|
|
height: 10px;
|
|
}
|
|
|
|
.show-interstitial-tiles .interstitial-tile {
|
|
visibility: visible;
|
|
} |