Gere les domaines jusqu'a 255 caractères (tld compris).
Indentation du CSS Should fix #1428
This commit is contained in:
parent
dc0079f7b2
commit
07d6b8d7a9
|
@ -58,7 +58,7 @@ else {
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
__("You can set passwords to protect some of your folders.<br/>This will create .htaccess and .htpassword files that restrict access to these directory and to any sub-elements.");
|
__("You can set passwords to protect some of your folders.<br/>This will create .htaccess and .htpasswd files that restrict access to these directory and to any sub-elements.");
|
||||||
// __("help_hta_list");
|
// __("help_hta_list");
|
||||||
$mem->show_help("hta_list2");
|
$mem->show_help("hta_list2");
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -37,16 +37,14 @@ if ($q["t"] > 0 || $q['u'] > 0)
|
||||||
<div class="menu-content" id="menu-dom">
|
<div class="menu-content" id="menu-dom">
|
||||||
<ul>
|
<ul>
|
||||||
<?php if ($quota->cancreate("dom")) { ?>
|
<?php if ($quota->cancreate("dom")) { ?>
|
||||||
<li><a href="dom_add.php"><img src="images/new.png" alt="<?php __("Add a domain"); ?>" /> <?php __("Add a domain"); ?></a></li>
|
<li><a href="dom_add.php"><img src="images/new.png" alt="<?php __("Add a domain"); ?>" /> <?php __("Add a domain"); ?></a></li>
|
||||||
<?php }
|
<?php }
|
||||||
|
|
||||||
/* Enumeration des domaines : */
|
/* Enumeration des domaines : */
|
||||||
$domlist = $dom->enum_domains();
|
$domlist = $dom->enum_domains();
|
||||||
reset($domlist);
|
reset($domlist);
|
||||||
while (list($key, $val) = each($domlist))
|
while (list($key, $val) = each($domlist)) { ?>
|
||||||
{
|
<li><a href="dom_edit.php?domain=<?php echo urlencode($val) ?>" title="<?php echo htmlentities($val); ?>"><?php echo $val; ?></a></li>
|
||||||
?>
|
|
||||||
<li><a href="dom_edit.php?domain=<?php echo urlencode($val) ?>"><?php echo $val ?></a></li>
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -43,7 +43,7 @@ if ($q["u"] > 0 || ( $r["u"] > 0 && $q['t'] > 0 )) {
|
||||||
$domlist = $mail->enum_domains();
|
$domlist = $mail->enum_domains();
|
||||||
foreach($domlist as $l => $v){
|
foreach($domlist as $l => $v){
|
||||||
?>
|
?>
|
||||||
<li><a href="mail_list.php?domain_id=<?php echo urlencode($v["id"]) ?>"><?php echo $v["domaine"] ?> (<?php echo $v["nb_mail"]; ?>)</a></li>
|
<li><a href="mail_list.php?domain_id=<?php echo urlencode($v["id"]) ?>" title='<?php echo htmlentities($v["domaine"]).' '.htmlentities("(".$v["nb_mail"].")"); ?>'><?php echo $v['domaine']; ?> (<?php echo $v["nb_mail"]; ?>)</a></li>
|
||||||
<?php
|
<?php
|
||||||
}?>
|
}?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -1,500 +1,504 @@
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
background-color: #F0F0FA;
|
background-color: #F0F0FA;
|
||||||
/* background-color: cyan; */
|
/* background-color: cyan; */
|
||||||
}
|
}
|
||||||
|
|
||||||
body.light {
|
body.light {
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
background-color: #F0F0FA;
|
background-color: #F0F0FA;
|
||||||
/* background-color: cyan; */
|
/* background-color: cyan; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.hlp {
|
.hlp {
|
||||||
font-family: Helvetica, Tahoma, sans-serif;
|
font-family: Helvetica, Tahoma, sans-serif;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #202020;
|
color: #202020;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
padding-right: 6px;
|
padding-right: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: black;
|
color: black;
|
||||||
background: #ABCDE4;
|
background: #ABCDE4;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #10507C;
|
color: #10507C;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 11px;
|
padding: 11px;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.trbtn {
|
.trbtn {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #007777
|
color: #007777
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
color: #007799;
|
color: #007799;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border: 1px solid #007799;
|
border: 1px solid #007799;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inp {
|
.inp {
|
||||||
/* Should not be use anymore !!! */
|
/* Should not be use anymore !!! */
|
||||||
border-color: blue;
|
border-color: blue;
|
||||||
border-width: 5px;
|
border-width: 5px;
|
||||||
background-color: #500000;
|
background-color: #500000;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inc, .inl {
|
.inc, .inl {
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
color: black;
|
color: black;
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inb {
|
.inb {
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
padding-right: 6px;
|
padding-right: 6px;
|
||||||
color: black;
|
color: black;
|
||||||
background-color: #CFE3F1;
|
background-color: #CFE3F1;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
}
|
}
|
||||||
.inb:hover {
|
.inb:hover {
|
||||||
background-color: #BFD3E1;
|
background-color: #BFD3E1;
|
||||||
}
|
}
|
||||||
|
|
||||||
input.ina:hover, input.ina, input.inav, input.inav:hover {
|
input.ina:hover, input.ina, input.inav, input.inav:hover {
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
padding: 2px 4px 2px 4px;
|
padding: 2px 4px 2px 4px;
|
||||||
color: black;
|
color: black;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
/*float: right;*/
|
/*float: right;*/
|
||||||
}
|
}
|
||||||
input.ina, .ina a {
|
input.ina, .ina a {
|
||||||
background-color: #F1F8FD;
|
background-color: #F1F8FD;
|
||||||
}
|
}
|
||||||
input.ina:hover, .ina a:hover,
|
input.ina:hover, .ina a:hover,
|
||||||
input.inav, .inav a {
|
input.inav, .inav a {
|
||||||
background-color: #CFE3F1;
|
background-color: #CFE3F1;
|
||||||
}
|
}
|
||||||
input.inav:hover, .inav a:hover, a.inav:hover {
|
input.inav:hover, .inav a:hover, a.inav:hover {
|
||||||
background-color: #F1F8FD;
|
background-color: #F1F8FD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ina-active a, a.ina-active, input.ina-active {
|
.ina-active a, a.ina-active, input.ina-active {
|
||||||
background-color: #C1FFCD;
|
background-color: #C1FFCD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ina a, a.ina, .inav a, a.inav {
|
.ina a, a.ina, .inav a, a.inav {
|
||||||
color: black;
|
color: black;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
color: black;
|
color: black;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.ina a:hover, a.ina:hover, .inav a:hover, a.inav:hover {
|
.ina a:hover, a.ina:hover, .inav a:hover, a.inav:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ina img, .ina img {
|
.ina img, .ina img {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
.bff {
|
.bff {
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
background-color: #F1F8FD;
|
background-color: #F1F8FD;
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
padding-left: 2px;
|
padding-left: 2px;
|
||||||
padding-right: 4px;
|
padding-right: 4px;
|
||||||
color: black;
|
color: black;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.int {
|
.int {
|
||||||
border: 1px dotted black;
|
border: 1px dotted black;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
.intleft {
|
.intleft {
|
||||||
border-right: 0px;
|
border-right: 0px;
|
||||||
padding-right: 0px;
|
padding-right: 0px;
|
||||||
}
|
}
|
||||||
.intright {
|
.intright {
|
||||||
border-left: 0px;
|
border-left: 0px;
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lst2 {
|
.lst2 {
|
||||||
/*background-color: #F1F8FD;*/
|
/*background-color: #F1F8FD;*/
|
||||||
background-color: #E7F0F9;
|
background-color: #E7F0F9;
|
||||||
}
|
}
|
||||||
.lst1 {
|
.lst1 {
|
||||||
background-color: #CFE3F1;
|
background-color: #CFE3F1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dlogin {
|
.dlogin {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login {
|
.login {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
border: 0px;
|
border: 0px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
color: red;
|
color: red;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Over quota class */
|
/* Over quota class */
|
||||||
.over {
|
.over {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.code {
|
.code {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-family: Courier New, Fixed;
|
font-family: Courier New, Fixed;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#global {
|
#global {
|
||||||
display: block;
|
display: block;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
width: 1020px;
|
width: 1020px;
|
||||||
border: 5px solid #1D6A9F;
|
border: 5px solid #1D6A9F;
|
||||||
-webkit-border-radius: 10px;
|
-webkit-border-radius: 10px;
|
||||||
-moz-border-radius: 10px;
|
-moz-border-radius: 10px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background-color: #F0F0FA;
|
background-color: #F0F0FA;
|
||||||
/* background: #F1F8FD url(/admin/images/bgborder.gif) repeat-y scroll top left; */
|
/* background: #F1F8FD url(/admin/images/bgborder.gif) repeat-y scroll top left; */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Main container */
|
/* Main container */
|
||||||
|
|
||||||
#tdMenu, #tdContent {
|
#tdMenu, #tdContent {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tdMenu {
|
#tdMenu {
|
||||||
border-right: 1px dotted #1D6A9F;
|
border-right: 1px dotted #1D6A9F;
|
||||||
}
|
}
|
||||||
|
|
||||||
#content {
|
#content {
|
||||||
display: block;
|
display: block;
|
||||||
width: 770px;
|
width: 770px;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Menu */
|
/* Menu */
|
||||||
|
|
||||||
#menu {
|
#menu {
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: left;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box {
|
.menu-box {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box .menu-title {
|
.menu-box .menu-title {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
border: 1px solid #1D6A9F;
|
border: 1px solid #1D6A9F;
|
||||||
background-color: #C0DCF0;
|
background-color: #C0DCF0;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
-webkit-border-radius: 4px;
|
-webkit-border-radius: 4px;
|
||||||
-moz-border-radius: 4px;
|
-moz-border-radius: 4px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box .menu-content {
|
.menu-box .menu-content {
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box ul {
|
.menu-box ul {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box a {
|
.menu-box a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #0D5689;
|
color: #0D5689;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box a:hover {
|
.menu-box a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box li a {
|
.menu-box li a {
|
||||||
display: block;
|
display: block;
|
||||||
padding-top: 6px;
|
padding-top: 6px;
|
||||||
padding-bottom: 6px;
|
padding-bottom: 6px;
|
||||||
color: #0D5689;
|
color: #0D5689;
|
||||||
padding-left: 2px;
|
padding-left: 2px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border: 1px solid #F1F8FD;
|
border: 1px solid #F1F8FD;
|
||||||
line-height: 0.75em;
|
line-height: 0.75em;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
-o-text-overflow: ellipsis; /* Opera 9*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box li a img {
|
.menu-box li a img {
|
||||||
float: left;
|
float: left;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
top: -3px;
|
top: -3px;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box li a:hover {
|
.menu-box li a:hover {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
border: 1px solid #1D6A9F;
|
border: 1px solid #1D6A9F;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: #DFEEF8;
|
background-color: #DFEEF8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-box .full {
|
.menu-box .full {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Bars */
|
/* Bars */
|
||||||
|
|
||||||
.barempty {
|
.barempty {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
-webkit-border-radius:4px;
|
-webkit-border-radius:4px;
|
||||||
-moz-border-radius: 4px;
|
-moz-border-radius: 4px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.barfill {
|
.barfill {
|
||||||
float: left;
|
float: left;
|
||||||
background-color: red;
|
background-color: red;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Infos */
|
/* Infos */
|
||||||
#recap table {
|
#recap table {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.searchtable {
|
table.searchtable {
|
||||||
width: 700px;
|
width: 700px;
|
||||||
border: 1px dotted #99f;
|
border: 1px dotted #99f;
|
||||||
margin: 20px 0 20px 0px;
|
margin: 20px 0 20px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.searchtable td {
|
table.searchtable td {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Others */
|
/* Others */
|
||||||
.center {
|
.center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #0D5689;
|
color: #0D5689;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.border {
|
.border {
|
||||||
border: 1px solid #C0DCF0;
|
border: 1px solid #C0DCF0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bold {
|
.bold {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#sendthisfile {
|
#sendthisfile {
|
||||||
margin-top: 6px;
|
margin-top: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.breadcrumb {
|
.breadcrumb {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#newdomwww, #sub, #usernpfx, #dbnpfx {
|
#newdomwww, #sub, #usernpfx, #dbnpfx {
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
#newdomain, #newsubname, #usern, #dbn {
|
#newdomain, #newsubname, #usern, #dbn {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#create_dom_list_pfx {
|
#create_dom_list_pfx {
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
#create_dom_list {
|
#create_dom_list {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
input#email {
|
input#email {
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
span#emaildom {
|
span#emaildom {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
padding-left: 2px;
|
padding-left: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tedit {
|
.tedit {
|
||||||
border: 1px solid #aaa;
|
border: 1px solid #aaa;
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
.tedit td, .tedit th {
|
.tedit td, .tedit th {
|
||||||
border: 1px solid #aaa;
|
border: 1px solid #aaa;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.formcell {
|
.formcell {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
border: 1px solid #aaa;
|
border: 1px solid #aaa;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tlist, .tlist td, .tlist th,
|
.tlist, .tlist td, .tlist th,
|
||||||
.tlist2, .tlist2 td, .tlist2 th {
|
.tlist2, .tlist2 td, .tlist2 th {
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tlist {
|
.tlist {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tlistb, .tlistb td, .tlistb th {
|
.tlistb, .tlistb td, .tlistb th {
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.tlistb, .tlistb tr {
|
table.tlistb, .tlistb tr {
|
||||||
border: solid 1px #AAA;
|
border: solid 1px #AAA;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tlist tr:hover, .tlist2 tr:hover {
|
.tlist tr:hover, .tlist2 tr:hover {
|
||||||
background-color: #F1D5CF;
|
background-color: #F1D5CF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tlist th, .tlist2 th {
|
.tlist th, .tlist2 th {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
input#dir, input#sub_local {
|
input#dir, input#sub_local {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.warningmsg {
|
.warningmsg {
|
||||||
width: 500px;
|
width: 500px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mx {
|
#mx {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#admlistbtn {
|
#admlistbtn {
|
||||||
padding-bottom: 6px;
|
padding-bottom: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.advdom {
|
.advdom {
|
||||||
padding-top: 6px;
|
padding-top: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grey, .grey td {
|
.grey, .grey td {
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
|
@ -200,6 +200,9 @@ ALTER TABLE `domaines_type` ADD create_tmpdir BOOLEAN NOT NULL DEFAULT FALSE ;
|
||||||
ALTER TABLE `domaines_type` ADD create_targetdir BOOLEAN NOT NULL DEFAULT FALSE ;
|
ALTER TABLE `domaines_type` ADD create_targetdir BOOLEAN NOT NULL DEFAULT FALSE ;
|
||||||
UPDATE domaines_type SET create_tmpdir=true, create_targetdir=true WHERE target='DIRECTORY';
|
UPDATE domaines_type SET create_tmpdir=true, create_targetdir=true WHERE target='DIRECTORY';
|
||||||
|
|
||||||
|
-- Allow 255 caracters in the tld
|
||||||
|
ALTER IGNORE TABLE domaines MODIFY domaine VARCHAR(255);
|
||||||
|
|
||||||
-- Defaults subdomains to create when a domain is added
|
-- Defaults subdomains to create when a domain is added
|
||||||
CREATE TABLE IF NOT EXISTS `default_subdomains` (
|
CREATE TABLE IF NOT EXISTS `default_subdomains` (
|
||||||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
|
|
Loading…
Reference in New Issue