From 60fc4cf2f57c8e599ca08653e2eb9d2b81e000dd Mon Sep 17 00:00:00 2001 From: duergner Date: Mon, 7 Feb 2005 09:36:57 +0000 Subject: [PATCH] Correct handling of image path; CSS info for button --- lam/style/500_layout.css | 4 ++++ lam/templates/pdfedit/pdfpage.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lam/style/500_layout.css b/lam/style/500_layout.css index aad72345..d1a8981a 100644 --- a/lam/style/500_layout.css +++ b/lam/style/500_layout.css @@ -62,6 +62,10 @@ input { font-weight:bold; background-color:#CCCCFF; } +button { +font-weight:bold; +background-color:#CCCCFF; +} fieldset { background-color:#EEEEEE; diff --git a/lam/templates/pdfedit/pdfpage.php b/lam/templates/pdfedit/pdfpage.php index e3038c09..53117943 100644 --- a/lam/templates/pdfedit/pdfpage.php +++ b/lam/templates/pdfedit/pdfpage.php @@ -578,7 +578,7 @@ $sections = '\n"; // Print every entry in the current structure foreach($_SESSION['currentPDFStructure'] as $key => $entry) { // Create the up/down/remove links - $links = "\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\""\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\""\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\""\n\t\t\t\t\t\t\t\t\t\n"; + $links = "\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\""\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\""\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\""\n\t\t\t\t\t\t\t\t\t\n"; // We have a new section to start if($entry['tag'] == "SECTION" && $entry['type'] == "open") { $name = $entry['attributes']['NAME'];