diff --git a/lam/lib/html.inc b/lam/lib/html.inc index 42b97d37..54da9c12 100644 --- a/lam/lib/html.inc +++ b/lam/lib/html.inc @@ -2557,10 +2557,13 @@ class htmlFieldset extends htmlElement { * @return array List of input field names and their type (name => type) */ function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) { - $class = 'ui-corner-all'; + $classes = $this->cssClasses; + $classes[] = 'ui-corner-all'; if ($scope != null) { - $class .= ' ' . $scope . '-border ' . $scope . '-bright'; + $classes[] = $scope . '-border'; + $classes[] = $scope . '-bright'; } + $class = implode(' ', $classes); echo "
\n"; // generate legend if (($this->label != null) || ($this->labelImage != null)) { diff --git a/lam/style/500_layout.css b/lam/style/500_layout.css index 25dd1fe3..1e4b5183 100644 --- a/lam/style/500_layout.css +++ b/lam/style/500_layout.css @@ -85,8 +85,7 @@ a.classicBold { } fieldset { - background-color:#fff3c8; - border:1px solid #af8800; + border:1px solid black; padding:10px; } @@ -519,12 +518,6 @@ div.confModList { overflow-y: auto; } -div.licenseInfo { - display: inline-block; - padding: 20px; - min-width: 200px; -} - /* schema browser */ table.schema_oclasses { diff --git a/lam/templates/config/conflogin.php b/lam/templates/config/conflogin.php index 6121e52d..0b0ad772 100644 --- a/lam/templates/config/conflogin.php +++ b/lam/templates/config/conflogin.php @@ -3,7 +3,7 @@ $Id$ This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) - Copyright (C) 2003 - 2015 Roland Gruber + Copyright (C) 2003 - 2016 Roland Gruber This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -114,9 +114,6 @@ echo $_SESSION['header']; - - configuration  -

@@ -199,7 +196,7 @@ echo $_SESSION['header']; -
+
configuration  diff --git a/lam/templates/config/index.php b/lam/templates/config/index.php index 7d142555..c9c842a2 100644 --- a/lam/templates/config/index.php +++ b/lam/templates/config/index.php @@ -3,7 +3,7 @@ $Id$ This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) - Copyright (C) 2003 - 2013 Roland Gruber + Copyright (C) 2003 - 2016 Roland Gruber This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -50,7 +50,7 @@ echo $_SESSION['header']; echo _("Configuration overview"); ?> - - - configuration  -

-
- +
\n"; - else echo "\n"; + if (isLAMProVersion()) { + echo "\n"; + } + else { + echo "\n"; + } ?> \n"; echo "
 
 
 
 
@@ -113,7 +113,7 @@ echo $_SESSION['header'];
\n"; echo "\n"; @@ -130,7 +130,18 @@ echo $_SESSION['header']; ?>
-

 

+


+ + printLicenseInfo(); + echo "

"; + } + ?> + +

 back 



diff --git a/lam/templates/config/mainlogin.php b/lam/templates/config/mainlogin.php index 434d74a9..196b96d5 100644 --- a/lam/templates/config/mainlogin.php +++ b/lam/templates/config/mainlogin.php @@ -123,9 +123,6 @@ echo $_SESSION['header']; - - configuration  -
@@ -181,18 +178,11 @@ echo $_SESSION['header']; -
+
configuration  - printLicenseInfo(); - } - ?> -



diff --git a/lam/templates/config/profmanage.php b/lam/templates/config/profmanage.php index 62d3c581..17456d9d 100644 --- a/lam/templates/config/profmanage.php +++ b/lam/templates/config/profmanage.php @@ -177,9 +177,6 @@ echo $_SESSION['header']; - - configuration  -
@@ -327,12 +324,12 @@ $dialogDiv->setCSSClasses(array('hidden')); $container->addElement($dialogDiv, true); $mainDiv = new htmlDiv('mainDiv', $container); -$mainDiv->setCSSClasses(array('filled', 'ui-corner-all')); +$mainDiv->setCSSClasses(array('roundedShadowBox', 'fullwidth', 'ui-corner-all')); $mainContainer = new htmlGroup(); $mainContainer->addElement($mainDiv); -$mainContainer->addElement(new htmlOutputText('
', false)); -$mainContainer->addElement(new htmlLink(_("Back to profile login"), 'conflogin.php')); +$mainContainer->addElement(new htmlOutputText('


', false)); +$mainContainer->addElement(new htmlLink(_("Back to profile login"), 'conflogin.php', '../../graphics/undo.png')); parseHtml('', $mainContainer, array(), false, $tabindex, 'user');