mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Small css cleaning for preview film
This commit is contained in:
parent
b824207d1d
commit
6a0ba8acfe
44
css/preview-film-section.css
Normal file
44
css/preview-film-section.css
Normal file
@ -0,0 +1,44 @@
|
||||
|
||||
.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.droppable-active {
|
||||
background-color: pink;
|
||||
}
|
||||
|
||||
.preview-tile.droppable-hover-active {
|
||||
background-color: yellow;
|
||||
}
|
@ -12,6 +12,7 @@
|
||||
<link rel="stylesheet" href="css/reset.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/tools.css">
|
||||
<link rel="stylesheet" href="css/preview-film-section.css">
|
||||
|
||||
|
||||
</head>
|
||||
@ -56,7 +57,7 @@
|
||||
|
||||
<div class='left-nav'>
|
||||
<!-- List of frames: -->
|
||||
<ul id="preview-list"></ul>
|
||||
<ul class="preview-list" id="preview-list"></ul>
|
||||
</div>
|
||||
|
||||
<div class='main-panel'>
|
||||
|
Loading…
Reference in New Issue
Block a user