diff options
Diffstat (limited to 'UI')
-rw-r--r-- | UI/menu/drilldown.html | 34 | ||||
-rw-r--r-- | UI/menu/expanding.css | 3 | ||||
-rw-r--r-- | UI/menu/expanding.html (renamed from UI/menu_expand.html) | 2 |
3 files changed, 38 insertions, 1 deletions
diff --git a/UI/menu/drilldown.html b/UI/menu/drilldown.html new file mode 100644 index 00000000..a09a3c7e --- /dev/null +++ b/UI/menu/drilldown.html @@ -0,0 +1,34 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <title>Accounting Menu - LedgerSMB Version 1.2.7 - Chris Travers - metatron_ledger</title> + <meta http-equiv="Pragma" content="no-cache" /> + <meta http-equiv="Expires" content="-1" /> + <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> + <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" title="LedgerSMB stylesheet" /> + <link rel="stylesheet" href="UI/menu/expanding.css" type="text/css" title="LedgerSMB stylesheet" /> + + <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> + + <meta name="robots" content="noindex,nofollow" /> +</head> +<body> + <?lsmb FOR item = menu_items ?> + <a href="<?lsmb IF item.module ?><?lsmb item.module + ?><?lsmb ELSE ?>menu.pl<?lsmb END + ?>?login=<?lsmb login + ?>&<?lsmb FOREACH arg IN item.args + ?><?lsmb arg + ?><?lsmb END + ?><?lsmb IF item.menu + ?>&parent_id=<?lsmb item.id + ?>&open=<?lsmb open + ?><?lsmb END ?>&menubar=1" + class = "<?lsmb IF item.menu ?>Menu<?lsmb + ELSE ?>Item<?lsmb END ?>" + ><?lsmb text(item.label) ?></a> + <br/> + <?lsmb END ?> +</body> +</html> diff --git a/UI/menu/expanding.css b/UI/menu/expanding.css new file mode 100644 index 00000000..46461cff --- /dev/null +++ b/UI/menu/expanding.css @@ -0,0 +1,3 @@ +div.submenu { + display: none; +} diff --git a/UI/menu_expand.html b/UI/menu/expanding.html index 7a4ef447..9aa4fead 100644 --- a/UI/menu_expand.html +++ b/UI/menu/expanding.html @@ -7,7 +7,7 @@ <meta http-equiv="Expires" content="-1" /> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" title="LedgerSMB stylesheet" /> - <link rel="stylesheet" href="UI/menu_expand.css" type="text/css" title="LedgerSMB stylesheet" /> + <link rel="stylesheet" href="UI/menu/expanding.css" type="text/css" title="LedgerSMB stylesheet" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |