responsive design
This commit is contained in:
parent
5b284f84f8
commit
5c6988eea2
|
@ -44,6 +44,10 @@ body.selfservice {
|
||||||
background: #fffde2;
|
background: #fffde2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.admin {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.defaultBackground {
|
.defaultBackground {
|
||||||
background: #F5F5F5 !important;
|
background: #F5F5F5 !important;
|
||||||
}
|
}
|
||||||
|
@ -157,7 +161,19 @@ table.lamHeader {
|
||||||
background-image: url(lam-images/headerLine.png);
|
background-image: url(lam-images/headerLine.png);
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
height: 35px;
|
height: 35px;
|
||||||
margin: 0px;
|
}
|
||||||
|
|
||||||
|
table.lamTop {
|
||||||
|
background-image: url(lam-images/headerLine.png);
|
||||||
|
padding: 0px;
|
||||||
|
height: 35px;
|
||||||
|
width: 100%;
|
||||||
|
border-width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.lamTop td {
|
||||||
|
padding: 1px;
|
||||||
|
vertical-align: "bottom";
|
||||||
}
|
}
|
||||||
|
|
||||||
/* table preferences */
|
/* table preferences */
|
||||||
|
|
|
@ -45,11 +45,14 @@ echo $_SESSION['header'];
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>
|
<title>
|
||||||
<?php
|
<?php
|
||||||
echo _("Configuration overview");
|
echo _("Configuration overview");
|
||||||
?>
|
?>
|
||||||
</title>
|
</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../style/responsive/105_normalize.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../style/responsive/110_foundation.css">
|
||||||
<?php
|
<?php
|
||||||
// include all CSS files
|
// include all CSS files
|
||||||
$cssDirName = dirname(__FILE__) . '/../../style';
|
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||||
|
@ -69,10 +72,10 @@ echo $_SESSION['header'];
|
||||||
?>
|
?>
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="../../graphics/favicon.ico">
|
<link rel="shortcut icon" type="image/x-icon" href="../../graphics/favicon.ico">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="admin">
|
||||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
<table class="lamTop ui-corner-all">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" height="30">
|
<td align="left">
|
||||||
<a class="lamLogo" href="http://www.ldap-account-manager.org/" target="new_window">LDAP Account Manager</a>
|
<a class="lamLogo" href="http://www.ldap-account-manager.org/" target="new_window">LDAP Account Manager</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue