Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <?xml version="1.0"?>
2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
3 <?xml-stylesheet href="data:text/css,
4 vbox { height: 50px; }
5 button {
6 color: transparent;
7 margin: 0;
8 }
9 " type="text/css"?>
11 <window title="Buttons with mini, small and regular control font"
12 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
13 <vbox style="font-size: 9px">
14 <hbox><button label="Mini"/></hbox>
15 </vbox>
16 <vbox style="font: message-box">
17 <hbox><button label="Small"/></hbox>
18 </vbox>
19 <vbox style="font: -moz-dialog">
20 <hbox><button label="Regular"/></hbox>
21 </vbox>
22 </window>