Browse Source

fixing sidebarView scroll bar overflow

Artur Adib 13 years ago
parent
commit
8363ca88ad
  1. 7
      web/viewer.css
  2. 4
      web/viewer.html

7
web/viewer.css

@ -31,7 +31,6 @@ body { @@ -31,7 +31,6 @@ body {
background-color: hsla(0,0%,0%,.1);
box-shadow: inset -1px 0 0 hsla(0,0%,0%,.25);
overflow: auto;
padding-top: 33px;
}
#sidebarContainer.hidden {
display:none;
@ -348,7 +347,8 @@ body { @@ -348,7 +347,8 @@ body {
#thumbnailView {
position: fixed;
width: 120px;
height: 100%;
top: 33px;
bottom: 0;
padding: 10px 40px 0;
overflow: auto;
}
@ -406,7 +406,8 @@ body { @@ -406,7 +406,8 @@ body {
#outlineView {
position: fixed;
width: 188px;
height: 100%;
top: 33px;
bottom: 0;
padding: 52px 4px 0;
overflow: auto;
}

4
web/viewer.html

@ -41,7 +41,7 @@ @@ -41,7 +41,7 @@
<div class="toolbar">
<div id="toolbarContainer">
<div id="toolbarSidebar" class="hidden">
<div id="toolbarSidebar">
<div class="splitToolbarButton toggled">
<div class="toolbarButton viewThumbnail toggled" title="Show Thumbnails"></div>
<div class="splitToolbarButtonSeparator"></div>
@ -74,7 +74,7 @@ @@ -74,7 +74,7 @@
</div>
</div>
<div id="sidebarContainer" class="hidden">
<div id="sidebarContainer">
<div id="thumbnailView">
</div>

Loading…
Cancel
Save