Fix for JFX webview layout bug

This commit is contained in:
Reinhard Pointner 2018-06-17 19:51:27 +07:00
parent 6550892e9e
commit 6e9ec6ae75
1 changed files with 21 additions and 17 deletions

View File

@ -1,31 +1,35 @@
body { body {
margin: 0; margin: 0;
padding: 0; padding: 0;
background: #000; background: black;
} }
div.galleria { div.galleria {
width: 100%; width: 100%;
height: 100%; height: 100%;
background: #000; background: #000;
position: absolute; position: absolute;
top: 0; top: 0;
bottom: 0; bottom: 0;
} }
div.galleria-thumbnails { div.galleria-thumbnails {
margin: auto; margin: auto;
} }
div.galleria-thumbnails-list div.galleria-image { div.galleria-thumbnails-list div.galleria-image {
max-height: 20px; max-height: 20px;
} }
img.fullscreen { img.fullscreen {
position: absolute; position: absolute;
top: 5px; top: 5px;
right: 5px; right: 5px;
z-index: 10; z-index: 10;
cursor: pointer; cursor: pointer;
opacity: 0.3 opacity: 0.3
}
div.galleria-thumbnails div.galleria-image {
padding: 30px 0px;
} }