responsive
This commit is contained in:
parent
b65125beaf
commit
541684d49f
|
@ -86,6 +86,10 @@ a img {
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.img-padding1 img {
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
a.classicBold {
|
a.classicBold {
|
||||||
color: blue;
|
color: blue;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -457,6 +461,10 @@ table.collapse {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.display-as-block {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
.nowrap {
|
.nowrap {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
@ -484,7 +492,7 @@ div.smallScroll {
|
||||||
}
|
}
|
||||||
|
|
||||||
.fullwidth {
|
.fullwidth {
|
||||||
width: 100%;
|
width: 100%!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.halfwidth {
|
.halfwidth {
|
||||||
|
|
|
@ -42,6 +42,9 @@ setlanguage();
|
||||||
|
|
||||||
echo $_SESSION['header'];
|
echo $_SESSION['header'];
|
||||||
printHeaderContents(_("Configuration overview"), '../..');
|
printHeaderContents(_("Configuration overview"), '../..');
|
||||||
|
$tabindex = 0;
|
||||||
|
$content = new htmlResponsiveRow();
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</head>
|
</head>
|
||||||
<body class="admin">
|
<body class="admin">
|
||||||
|
@ -59,69 +62,39 @@ printHeaderContents(_("Configuration overview"), '../..');
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br><br>
|
<br><br>
|
||||||
<TABLE border="0" width="100%" class="ui-corner-all roundedShadowBox">
|
|
||||||
<?php
|
<?php
|
||||||
if (isLAMProVersion()) {
|
$topContent = new htmlResponsiveRow();
|
||||||
echo "<tr><td rowspan=4 width=20> </td><td></td><td></td></tr>\n";
|
$topContent->setCSSClasses(array('maxrow fullwidth roundedShadowBox spacing5'));
|
||||||
}
|
$mainCfgLink = new htmlLink(_("Edit general settings"), 'mainlogin.php', '../../graphics/bigTools.png');
|
||||||
else {
|
$mainCfgLink->setCSSClasses(array('img-padding1 display-as-block'));
|
||||||
echo "<tr><td rowspan=3 width=20> </td><td></td><td></td></tr>\n";
|
$topContent->add($mainCfgLink, 12);
|
||||||
}
|
$cfgLink = new htmlLink(_("Edit server profiles"), 'conflogin.php', '../../graphics/profiles.png');
|
||||||
?>
|
$cfgLink->setCSSClasses(array('img-padding1 display-as-block'));
|
||||||
<TR>
|
$topContent->add($cfgLink, 12);
|
||||||
<TD width="60" height="70">
|
if (isLAMProVersion()) {
|
||||||
<a href="mainlogin.php">
|
$selfServiceLink = new htmlLink(_("Edit self service"), '../selfService/adminLogin.php', '../../graphics/bigPeople.png');
|
||||||
<IMG height="32" width="32" alt="general settings" src="../../graphics/bigTools.png">
|
$selfServiceLink->setCSSClasses(array('img-padding1 display-as-block'));
|
||||||
</a>
|
$topContent->add($selfServiceLink, 12);
|
||||||
</TD>
|
}
|
||||||
<TD>
|
$content->add($topContent, 12);
|
||||||
<a href="mainlogin.php">
|
$content->addVerticalSpacer('4rem');
|
||||||
<?php echo _("Edit general settings") ?>
|
?>
|
||||||
</a>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<TR>
|
|
||||||
<TD height="70">
|
|
||||||
<a href="conflogin.php" target="_self">
|
|
||||||
<IMG height="32" width="32" alt="server settings" src="../../graphics/profiles.png">
|
|
||||||
</a>
|
|
||||||
</TD>
|
|
||||||
<TD>
|
|
||||||
<a href="conflogin.php" target="_self">
|
|
||||||
<?php echo _("Edit server profiles"); ?>
|
|
||||||
</a>
|
|
||||||
</TD>
|
|
||||||
</TR>
|
|
||||||
<?php
|
|
||||||
if (isLAMProVersion()) {
|
|
||||||
echo "<TR>\n";
|
|
||||||
echo "<TD height=\"70\">\n";
|
|
||||||
echo "<a href=\"../selfService/adminLogin.php\" target=\"_self\">\n";
|
|
||||||
echo "<IMG height=\"32\" width=\"32\" alt=\"self service\" src=\"../../graphics/bigPeople.png\">\n";
|
|
||||||
echo "</a>\n";
|
|
||||||
echo "</TD>\n";
|
|
||||||
echo "<TD>\n";
|
|
||||||
echo "<a href=\"../selfService/adminLogin.php\" target=\"_self\">\n";
|
|
||||||
echo _("Edit self service");
|
|
||||||
echo "</a>\n";
|
|
||||||
echo "</TD>\n";
|
|
||||||
echo "</TR>\n";
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</TABLE>
|
|
||||||
<p><br></p>
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if (isLAMProVersion()) {
|
if (isLAMProVersion()) {
|
||||||
include_once(__DIR__ . "/../../lib/env.inc");
|
include_once(__DIR__ . "/../../lib/env.inc");
|
||||||
$printer = new \LAM\ENV\LAMLicenseInfoPrinter();
|
$printer = new \LAM\ENV\LAMLicenseInfoPrinter();
|
||||||
$printer->printLicenseInfo();
|
$content->add($printer->getLicenseInfo(), 12);
|
||||||
echo "<br><br>";
|
$content->addVerticalSpacer('2rem');
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
|
|
||||||
<p> <a href="../login.php"><IMG alt="back" src="../../graphics/undo.png"> <?php echo _("Back to login") ?></a></p>
|
$content->add(new htmlLink(_("Back to login"), '../login.php', '../../graphics/undo.png'), 12);
|
||||||
<p><br><br></p>
|
$content->addVerticalSpacer('2rem');
|
||||||
|
|
||||||
|
parseHtml('none', $content, array(), true, $tabindex, 'none');
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue