This commit is contained in:
Roland Gruber 2016-08-27 15:31:59 +02:00
parent ddd5df2bfe
commit 5b284f84f8
3 changed files with 7 additions and 7 deletions

View File

@ -344,6 +344,9 @@ td.loginLogo {
display: inline-block;
background-color: white;
padding: 20px;
}
.limitWidth {
max-width: 580px;
}

View File

@ -78,8 +78,7 @@ echo $_SESSION['header'];
</tr>
</table>
<br><br>
<fieldset class="ui-corner-all roundedShadowBox fullwidth">
<TABLE border="0">
<TABLE border="0" width="100%" class="ui-corner-all roundedShadowBox">
<?php
if (isLAMProVersion()) {
echo "<tr><td rowspan=4 width=20>&nbsp;</td><td></td><td></td></tr>\n";
@ -129,7 +128,6 @@ echo $_SESSION['header'];
}
?>
</TABLE>
</fieldset>
<p><br></p>
<?php

View File

@ -221,7 +221,7 @@ if (!isset($cfg->default)) {
$topicSpacer = new htmlSpacer(null, '20px');
$tabindex = 1;
$container = new htmlTable();
$container = new htmlTable('100%');
$container->addElement(new htmlTitle(_("Profile management")), true);
@ -323,11 +323,10 @@ $dialogDiv = new htmlDiv('passwordDialogDiv', $dialogDivContent);
$dialogDiv->setCSSClasses(array('hidden'));
$container->addElement($dialogDiv, true);
$mainDiv = new htmlDiv('mainDiv', $container);
$mainDiv->setCSSClasses(array('roundedShadowBox', 'fullwidth', 'ui-corner-all'));
$container->setCSSClasses(array('roundedShadowBox', 'ui-corner-all'));
$mainContainer = new htmlGroup();
$mainContainer->addElement($mainDiv);
$mainContainer->addElement($container);
$mainContainer->addElement(new htmlOutputText('<p><br></p>', false));
$mainContainer->addElement(new htmlLink(_("Back to profile login"), 'conflogin.php', '../../graphics/undo.png'));