Fixing display: none; title for zoom

This commit is contained in:
Yury Delendik 2012-05-04 12:34:18 -05:00
parent c04ea2897e
commit 92a9003191
2 changed files with 5 additions and 2 deletions

View File

@ -176,7 +176,10 @@ body {
}
.toolbarButton > span {
display: none;
display: inline-block;
width: 0;
height: 0;
overflow: hidden;
}
.toolbarButton[disabled] {

View File

@ -119,7 +119,7 @@
</button>
</div>
<span class="dropdownToolbarButton">
<select id="scaleSelect" onchange="PDFView.parseScale(this.value);" oncontextmenu="return false;" tabindex="9">
<select id="scaleSelect" onchange="PDFView.parseScale(this.value);" title="Zoom" oncontextmenu="return false;" tabindex="9">
<option id="pageAutoOption" value="auto" selected="selected">Automatic Zoom</option>
<option value="page-actual">Actual Size</option>
<option id="pageFitOption" value="page-fit">Fit Page</option>