style
This commit is contained in:
parent
ddd5df2bfe
commit
5b284f84f8
|
@ -344,6 +344,9 @@ td.loginLogo {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.limitWidth {
|
||||||
max-width: 580px;
|
max-width: 580px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -78,8 +78,7 @@ echo $_SESSION['header'];
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br><br>
|
<br><br>
|
||||||
<fieldset class="ui-corner-all roundedShadowBox fullwidth">
|
<TABLE border="0" width="100%" class="ui-corner-all roundedShadowBox">
|
||||||
<TABLE border="0">
|
|
||||||
<?php
|
<?php
|
||||||
if (isLAMProVersion()) {
|
if (isLAMProVersion()) {
|
||||||
echo "<tr><td rowspan=4 width=20> </td><td></td><td></td></tr>\n";
|
echo "<tr><td rowspan=4 width=20> </td><td></td><td></td></tr>\n";
|
||||||
|
@ -129,7 +128,6 @@ echo $_SESSION['header'];
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</TABLE>
|
</TABLE>
|
||||||
</fieldset>
|
|
||||||
<p><br></p>
|
<p><br></p>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -221,7 +221,7 @@ if (!isset($cfg->default)) {
|
||||||
$topicSpacer = new htmlSpacer(null, '20px');
|
$topicSpacer = new htmlSpacer(null, '20px');
|
||||||
|
|
||||||
$tabindex = 1;
|
$tabindex = 1;
|
||||||
$container = new htmlTable();
|
$container = new htmlTable('100%');
|
||||||
|
|
||||||
$container->addElement(new htmlTitle(_("Profile management")), true);
|
$container->addElement(new htmlTitle(_("Profile management")), true);
|
||||||
|
|
||||||
|
@ -323,11 +323,10 @@ $dialogDiv = new htmlDiv('passwordDialogDiv', $dialogDivContent);
|
||||||
$dialogDiv->setCSSClasses(array('hidden'));
|
$dialogDiv->setCSSClasses(array('hidden'));
|
||||||
$container->addElement($dialogDiv, true);
|
$container->addElement($dialogDiv, true);
|
||||||
|
|
||||||
$mainDiv = new htmlDiv('mainDiv', $container);
|
$container->setCSSClasses(array('roundedShadowBox', 'ui-corner-all'));
|
||||||
$mainDiv->setCSSClasses(array('roundedShadowBox', 'fullwidth', 'ui-corner-all'));
|
|
||||||
|
|
||||||
$mainContainer = new htmlGroup();
|
$mainContainer = new htmlGroup();
|
||||||
$mainContainer->addElement($mainDiv);
|
$mainContainer->addElement($container);
|
||||||
$mainContainer->addElement(new htmlOutputText('<p><br></p>', false));
|
$mainContainer->addElement(new htmlOutputText('<p><br></p>', false));
|
||||||
$mainContainer->addElement(new htmlLink(_("Back to profile login"), 'conflogin.php', '../../graphics/undo.png'));
|
$mainContainer->addElement(new htmlLink(_("Back to profile login"), 'conflogin.php', '../../graphics/undo.png'));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue