home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / setup.exe / %AppDir% / menubar / ThemeMiniBlack / theme.js < prev   
Encoding:
Text File  |  2009-12-08  |  1.7 KB  |  49 lines

  1. var cmThemeMiniBlack =
  2. {
  3.     prefix:    'ThemeMiniBlack',
  4.       // main menu display attributes
  5.       //
  6.       // Note.  When the menu bar is horizontal,
  7.       // mainFolderLeft and mainFolderRight are
  8.       // put in <span></span>.  When the menu
  9.       // bar is vertical, they would be put in
  10.       // a separate TD cell.
  11.  
  12.       // HTML code to the left of the folder item
  13.       mainFolderLeft: '',
  14.       // HTML code to the right of the folder item
  15.       mainFolderRight: '',
  16.     // HTML code to the left of the regular item
  17.     mainItemLeft: '',
  18.     // HTML code to the right of the regular item
  19.     mainItemRight: '',
  20.  
  21.     // sub menu display attributes
  22.  
  23.     // HTML code to the left of the folder item
  24.     folderLeft: '',
  25.     // HTML code to the right of the folder item
  26.     folderRight: '',
  27.     // HTML code to the left of the regular item
  28.     itemLeft: '',
  29.     // HTML code to the right of the regular item
  30.     itemRight: '',
  31.     // cell spacing for main menu
  32.     mainSpacing: 0,
  33.     // cell spacing for sub menus
  34.     subSpacing: 0,
  35.     // auto dispear time for submenus in milli-seconds
  36.     delay: 100,
  37.  
  38.     // move the sub-submenus up a bit due to a white top border
  39.     offsetSubAdjust:    [0, -1]
  40.     // rest use default settings
  41. };
  42.  
  43. // horizontal split, used only in sub menus
  44. var cmThemeMiniBlackHSplit = [_cmNoClick, '<td colspan="3" class="ThemeMiniBlackMenuSplit"><div class="ThemeMiniBlackMenuSplit"></div></td>'];
  45. // horizontal split, used only in main menu
  46. var cmThemeMiniBlackMainHSplit = [_cmNoClick, '<td colspan="3" class="ThemeMiniBlackMenuSplit"><div class="ThemeMiniBlackMenuSplit"></div></td>'];
  47. // vertical split, used only in main menu
  48. var cmThemeMiniBlackMainVSplit = [_cmNoClick, '<div class="ThemeMiniBlackMenuVSplit">|</div>'];
  49.