style
This commit is contained in:
parent
ddd5df2bfe
commit
5b284f84f8
|
@ -344,6 +344,9 @@ td.loginLogo {
|
|||
display: inline-block;
|
||||
background-color: white;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.limitWidth {
|
||||
max-width: 580px;
|
||||
}
|
||||
|
||||
|
|
|
@ -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> </td><td></td><td></td></tr>\n";
|
||||
|
@ -129,7 +128,6 @@ echo $_SESSION['header'];
|
|||
}
|
||||
?>
|
||||
</TABLE>
|
||||
</fieldset>
|
||||
<p><br></p>
|
||||
|
||||
<?php
|
||||
|
|
|
@ -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'));
|
||||
|
||||
|
|
Loading…
Reference in New Issue