home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / transmission / web / javascript / menu.js < prev    next >
Encoding:
Text File  |  2009-03-30  |  845 b   |  45 lines

  1. /*
  2.  *    Copyright ¬© Dave Perrett and Malcolm Jarvis
  3.  *    This code is licensed under the GPL version 2.
  4.  *    For more details, see http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  5.  *
  6.  * Menu Configuration Properties
  7.  */
  8.  
  9. Menu = {
  10.     
  11.     context: {
  12.         
  13.         menu_style: {
  14.             width: '310px',
  15.             backgroundColor: '#fff',
  16.             border: 'none',
  17.             padding: '5px 0',
  18.             textAlign: 'left'},
  19.         
  20.         item_style: {
  21.             backgroundColor: 'transparent',
  22.             margin: '0',
  23.             padding: '0 10px 2px 20px',
  24.             color: '#000',
  25.             fontSize: '14px',
  26.             cursor: 'default',
  27.             border: 'none'},
  28.         
  29.         item_hover_style: {
  30.             backgroundColor: '#24e',
  31.             color: '#fff',
  32.             border: 'none'},
  33.         
  34.         item_disabled_style: {
  35.             backgroundColor: 'transparent',
  36.             margin: '0',
  37.             padding: '0 10px 2px 20px',
  38.             color: '#aaa',
  39.             fontSize: '1.5em',
  40.             cursor: 'default',
  41.             border: 'none'}
  42.     }
  43.     
  44.     
  45. }