alfresco-ng2-components/lib/core/viewer/components/pdfViewer-thumbnails.component.scss
Cilibiu Bogdan 9bbdf4331e [ADF-2338] PDF Thumbnail Pane - close button (#2977)
* close thumblist panel

* thumbnails template container
2018-02-22 09:29:20 +00:00

39 lines
884 B
SCSS

@mixin adf-pdf-thumbnails-theme($theme) {
$background: map-get($theme, background);
.pdf-thumbnails {
display: block;
overflow: hidden;
overflow-y: auto;
height: 100%;
position: relative;
&__content {
top: 0;
left: 50%;
height: 0;
position: absolute;
}
&__thumb:first-child {
margin-top: 15px;
}
&__thumb {
cursor: pointer;
display: block;
height: 114px;
width: 91px;
background: mat-color($background, background);
margin-bottom: 15px;
}
&__thumb:hover {
box-shadow: 0px 0px 5px 0px $black-87-opacity;
}
&__thumb--selected:not(:hover) {
box-shadow: 0px 0px 5px 0px $black-87-opacity;
}
}
}