diff options
| -rw-r--r-- | pages/options.html | 33 |
1 files changed, 11 insertions, 22 deletions
diff --git a/pages/options.html b/pages/options.html index b52974d6..bc4454cd 100644 --- a/pages/options.html +++ b/pages/options.html @@ -170,24 +170,13 @@ overflow: scroll; overflow-x: hidden; overflow-y: auto; - max-height: 135px; + /* Each exclusion rule is about 30px, so this allows 7 before scrolling */ + max-height: 215px; min-height: 75px; border-radius: 2px; color: #444; width: 100% } - #exclusionScrollBox::-webkit-scrollbar { - width: 12px; - } - #exclusionScrollBox::-webkit-scrollbar-track { - -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); - border-radius: 2px; - } - - #exclusionScrollBox::-webkit-scrollbar-thumb { - border-radius: 2px; - -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); - } #exclusionRules { width: 100%; } @@ -363,15 +352,6 @@ unmapAll <tr> <td class="caption" verticalAlign="top">Miscellaneous<br/>options</td> <td verticalAlign="top" class="booleanOption"> - <label> - <input id="smoothScroll" type="checkbox"/> - Use smooth scrolling - </label> - </td> - </tr> - <tr> - <td class="caption"></td> - <td verticalAlign="top" class="booleanOption"> <div class="help"> <div class="example"> In link-hint mode, this option lets you also select a link by typing its text. @@ -383,6 +363,15 @@ unmapAll </label> </td> </tr> + <tr style="display:none"> + <td class="caption"></td> + <td verticalAlign="top" class="booleanOption"> + <label> + <input id="smoothScroll" type="checkbox"/> + Use smooth scrolling + </label> + </td> + </tr> <tr> <td class="caption"></td> <td verticalAlign="top" class="booleanOption"> |
