2012-09-08 01:24:48 +04:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2012-09-08 04:50:59 +04:00
|
|
|
.preview-tile.ui-draggable-dragging {
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-08 01:24:48 +04:00
|
|
|
.preview-tile.droppable-active {
|
|
|
|
background-color: pink;
|
|
|
|
}
|
|
|
|
|
2012-09-08 04:50:59 +04:00
|
|
|
.interstitial-tile.droppable-hover-active {
|
|
|
|
background-color: purple;
|
|
|
|
}
|
|
|
|
|
2012-09-08 01:24:48 +04:00
|
|
|
.preview-tile.droppable-hover-active {
|
|
|
|
background-color: yellow;
|
2012-09-08 04:50:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
.interstitial-tile {
|
|
|
|
visibility: hidden;
|
|
|
|
background-color: blue;
|
|
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.show-interstitial-tiles .interstitial-tile {
|
|
|
|
visibility: visible;
|
2012-09-08 01:24:48 +04:00
|
|
|
}
|