File: options.xul

package info (click to toggle)
custom-tab-width 1.0.1-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 100 kB
  • ctags: 3
  • sloc: makefile: 9
file content (27 lines) | stat: -rw-r--r-- 821 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>

<prefwindow xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
            title="Custom Tab Width">

<prefpane>
  <preferences>
    <preference id="minwidth"
                name="browser.tabs.tabMinWidth"
                type="int"/>
    <preference id="maxwidth"
                name="browser.tabs.tabMaxWidth"
                type="int"/>
  </preferences>
  <vbox>
    <label control="minwidth-input">min:</label>
    <textbox preference="minwidth" id="minwidth-input" type="number" min="1" max="1000"/>
  </vbox>
  <spacer/>
  <vbox>
    <label control="maxwidth-input">max:</label>
    <textbox preference="maxwidth" id="maxwidth-input" type="number" min="10" max="1000"/>
  </vbox>
</prefpane>

</prefwindow>