blob: 08d1e9a670f726c0fbe587b2482a95b419af7b7e (
plain)
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
28
29
30
31
32
|
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="data:text/css,
vbox { height: 50px; }
box {
-moz-appearance: checkbox;
margin-left: 2px;
margin-top: 1px;
}
" type="text/css"?>
<window title="Reference for mini, small and regular checkbox sizes"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<vbox>
<hbox><box width="11" height="11"/></hbox>
</vbox>
<vbox>
<hbox><box width="13" height="13"/></hbox>
</vbox>
<vbox>
<hbox><box width="16" height="16"/></hbox>
</vbox>
<vbox>
<hbox checked="true"><box width="11" height="11"/></hbox>
</vbox>
<vbox>
<hbox checked="true"><box width="13" height="13"/></hbox>
</vbox>
<vbox>
<hbox checked="true"><box width="16" height="16"/></hbox>
</vbox>
</window>
|