home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Komunikace / mozilla / mozilla-win32-M18-mathml-svg-xslt.exe / chrome / toolkit / content / global / wizardOverlay.xul < prev    next >
Extensible Markup Language  |  2000-04-27  |  974b  |  23 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!DOCTYPE window SYSTEM "chrome://global/locale/wizardOverlay.dtd">
  4.  
  5. <?xml-stylesheet href="chrome://global/skin/wizardOverlay.css" type="text/css"?>
  6.  
  7. <overlay id="wizardOverlay"
  8.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  9.  
  10.     <!-- Wizard Buttons -->
  11.      <box id="wizardButtons" align="horizontal">
  12.     <spring flex="100%"/>
  13.         <button class="dialog" id="wiz-cancel-button" value="&cancelButton.label;" onclick="wizardManager.onCancel()" />
  14.     <spring flex="20%"/>
  15.         <button class="dialog" id="wiz-back-button" value="&backButton.label;" onclick="wizardManager.onBack()" align="left" />
  16.         <button class="dialog right" id="wiz-next-button" value="&nextButton.label;" onclick="wizardManager.onNext()" align="right" />
  17.     <spring flex="5%"/>
  18.         <button class="dialog" id="wiz-finish-button" value="&finishButton.label;" onclick="wizardManager.onFinish()" />
  19.     <spring flex="5%"/>
  20.     </box>
  21.     
  22. </overlay>        
  23.