Remove scrollbar from thumbnail study browser

This commit is contained in:
Erik Ziegler 2016-01-27 19:34:26 +01:00
parent d2ab42e11c
commit 4c80c57d73
2 changed files with 15 additions and 3 deletions

View File

@ -1,7 +1,9 @@
<template name="studyBrowser"> <template name="studyBrowser">
<div class="studyBrowser"> <div class="studyBrowser">
<div class="scrollableStudyThumbnails">
{{ #each studies }} {{ #each studies }}
{{ >thumbnails }} {{ >thumbnails }}
{{ /each }} {{ /each }}
</div>
</div> </div>
</template> </template>

View File

@ -2,8 +2,18 @@
float: left float: left
height: 100% height: 100%
width: 100% width: 100%
//min-width: 120px overflow: hidden
overflow-y: auto
overflow-x: hidden
background-color: black background-color: black
padding-bottom: 20px padding-bottom: 20px
.scrollableStudyThumbnails
height: 100%
overflow-y: auto
overflow-x: hidden
padding-bottom: 50px
padding-right: 16px
padding-left: 4px
margin-right: -16px
&::-webkit-scrollbar
display: none