mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
472 B
Plaintext
21 lines
472 B
Plaintext
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
||
|
|
||
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
||
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||
|
>
|
||
|
|
||
|
<html:style>
|
||
|
#prog {
|
||
|
-moz-appearance: none;
|
||
|
background-color: blue;
|
||
|
}
|
||
|
#prog .progress-bar {
|
||
|
-moz-border-radius: 3px 3px;
|
||
|
background-color: red;
|
||
|
}
|
||
|
</html:style>
|
||
|
|
||
|
<progressmeter id="prog" value="50" max="200"/>
|
||
|
|
||
|
</window>
|