home *** CD-ROM | disk | FTP | other *** search
/ Chip 2006 July / CHIP 2006-07.2.iso / program / google / google-browsersync.xpi / chrome / chromeFiles / content / component-selector.xul < prev    next >
Encoding:
Extensible Markup Language  |  2006-06-07  |  1.4 KB  |  50 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4. Copyright 2005 and onwards, Google
  5. Author: Aaron Boodman
  6. -->
  7.  
  8. <?xml-stylesheet href="component-selector.css" type="text/css" ?>
  9.  
  10. <overlay 
  11.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  12.   xmlns:html="http://www.w3.org/1999/xhtml">
  13.  
  14.   <vbox id="clb-component-selector" flex="1">
  15.     <!-- 
  16.       As Firefox likes to focus the first link on a XUL page, we include
  17.       this blank link to avoid things being focused for strange reasons.
  18.     -->
  19.     <html:a href="#"></html:a>
  20.  
  21.     <description>
  22.       Choose the browser components that you'd like to continuously synchronize 
  23.       between computers.
  24.     </description>
  25.     
  26.     <description>
  27.       For increased security, you may choose to encrypt the information that's 
  28.       stored on Google Browser Sync. <html:a href="#" 
  29.       id="clb-componentselector-learnmore"
  30.       style="color:blue; text-decoration:underline; white-space:nowrap;"
  31.       >Learn More</html:a>
  32.     </description>
  33.  
  34.     <listbox id="clb-settings-list" flex="1"
  35.       style="-moz-user-focus:none; -moz-user-select:none;">
  36.       <listhead>
  37.         <listheader label=""/>
  38.         <listheader label="Store"/>
  39.         <listheader label="Encrypt"/>
  40.       </listhead>
  41.       <listcols>
  42.         <listcol flex="2"/>
  43.         <listcol flex="1"/>
  44.         <listcol flex="1"/>
  45.       </listcols>
  46.     </listbox>
  47.   </vbox>
  48.  
  49. </overlay>
  50.