add the rest of Clutch to m0k.org's svn

This commit is contained in:
Charles Kerr
2008-07-10 23:57:46 +00:00
parent f2022675bd
commit 2a1f6c8923
36 changed files with 9681 additions and 0 deletions

45
web/javascript/menu.js Normal file
View File

@@ -0,0 +1,45 @@
/*
* Copyright © Dave Perrett and Malcolm Jarvis
* This code is licensed under the GPL version 2.
* For more details, see http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* Menu Configuration Properties
*/
Menu = {
context: {
menu_style: {
width: '210px',
backgroundColor: '#fff',
border: 'none',
padding: '5px 0',
textAlign: 'left'},
item_style: {
backgroundColor: 'transparent',
margin: '0',
padding: '0 10px 2px 20px',
color: '#000',
fontSize: '14px',
cursor: 'default',
border: 'none'},
item_hover_style: {
backgroundColor: '#24e',
color: '#fff',
border: 'none'},
item_disabled_style: {
backgroundColor: 'transparent',
margin: '0',
padding: '0 10px 2px 20px',
color: '#aaa',
fontSize: '1.5em',
cursor: 'default',
border: 'none'}
}
}