Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
3 <window xmlns:html="http://www.w3.org/1999/xhtml"
4 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
5 >
7 <html:style>
8 #prog {
9 -moz-appearance: none;
10 background-color: blue;
11 }
12 #prog .progress-bar {
13 -moz-appearance: none;
14 border-radius: 3px 3px;
15 background-color: red;
16 }
17 </html:style>
19 <progressmeter id="prog" value="50" max="200"/>
21 </window>