diff options
| author | Phil Crosby | 2011-11-26 18:59:53 -0800 | 
|---|---|---|
| committer | Phil Crosby | 2011-11-26 19:06:21 -0800 | 
| commit | 97ff152140acacc7c01d98823390ea4c76653b10 (patch) | |
| tree | 1a7ce749947f9f5e1502a1c7e0fcbba7ce161ff7 | |
| parent | 4c996dbe1198210fc645dfb5758fda17097135fd (diff) | |
| download | vimium-97ff152140acacc7c01d98823390ea4c76653b10.tar.bz2 | |
Make the preferences UI for the new link filtering mode look nicer.
| -rw-r--r-- | options.html | 20 | 
1 files changed, 13 insertions, 7 deletions
| diff --git a/options.html b/options.html index 7b1d77bc..26d41aa4 100644 --- a/options.html +++ b/options.html @@ -18,12 +18,13 @@          border:1px solid red;        }        .example { -        font-size:80%; +        font-size: 12px;          color:#555;          margin-left:20px;        }        .caption {          margin-right:10px; +        min-width: 130px;        }        td {          padding:5px 0; @@ -75,6 +76,8 @@          background-color: #eee;          color: #666;        } +      /* Boolean options have a tighter form representation than text options. */ +      td.booleanOption { font-size: 12px; }      </style>    <script type="text/javascript"> @@ -229,7 +232,7 @@          </td>        </tr>        <tr class="advancedOption"> -        <td class="caption">Key mappings</td> +        <td class="caption">Custom key<br/>mappings</td>          <td id="mappingsHelp" verticalAlign="top">            <div class="help">              <div class="example"> @@ -273,15 +276,18 @@          </td>        </tr>        <tr class="advancedOption"> -        <td class="caption">Filter link hints</td> -        <td verticalAlign="top"> +        <td class="caption"></td> +        <td verticalAlign="top" class="booleanOption">            <div class="help">              <div class="example"> -              Typing in link hints mode will filter link hints by the link text.<br/><br/> -              Note: You <em>must</em> use numeric link hint characters in this mode +              After typing "F" to enter link hinting mode, this option lets you type the text of a link +              to select it.              </div>            </div> -          <input id="filterLinkHints" type="checkbox"/> +          <label> +            <input id="filterLinkHints" type="checkbox"/> +            Use the link's name and numbers for link hint filtering +          </label>          </td>        </tr>      </table> | 
