mirror of
https://github.com/myvesta/vesta
synced 2025-08-21 05:44:08 -07:00
improved input styles
This commit is contained in:
parent
e4d1350569
commit
c080bcad00
2 changed files with 21 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<table class="sub-menu" style="background: white;">
|
<table class="sub-menu" style="background: white;">
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding: 12px 2px 16px 0;" ><a class="add-name"><b>Adding Mail Domain</b></a>
|
<td style="padding: 12px 2px 16px 0;" ><a class="add-name"><b>Adding Mail Account</b></a>
|
||||||
<?php
|
<?php
|
||||||
if (!empty($_SESSION['error_msg'])) {
|
if (!empty($_SESSION['error_msg'])) {
|
||||||
echo "<a class=\"add-error\"> → ".$_SESSION['error_msg']."</a>";
|
echo "<a class=\"add-error\"> → ".$_SESSION['error_msg']."</a>";
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
var rnum = Math.floor(Math.random() * chars.length);
|
var rnum = Math.floor(Math.random() * chars.length);
|
||||||
randomstring += chars.substring(rnum,rnum+1);
|
randomstring += chars.substring(rnum,rnum+1);
|
||||||
}
|
}
|
||||||
document.v_add_user.v_password.value = randomstring;
|
document.v_add_mail_acc.v_password.value = randomstring;
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -499,6 +499,10 @@
|
||||||
height: 120px;
|
height: 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.add-textinput:hover {
|
||||||
|
border: 1px solid #e5a907;
|
||||||
|
}
|
||||||
|
|
||||||
.add-textinput:disabled {
|
.add-textinput:disabled {
|
||||||
background-color: #F1F1F1;
|
background-color: #F1F1F1;
|
||||||
}
|
}
|
||||||
|
@ -514,14 +518,24 @@
|
||||||
width: 360px;
|
width: 360px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.add-input:hover {
|
||||||
|
border: 1px solid #e5a907;
|
||||||
|
}
|
||||||
|
|
||||||
.add-input:disabled {
|
.add-input:disabled {
|
||||||
background-color: #F1F1F1;
|
background-color: #f1f1f1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.add-list {
|
.add-list {
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
color: #555;
|
color: #555;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
border: 1px solid #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.add-list:hover {
|
||||||
|
border: 1px solid #e5a907;
|
||||||
}
|
}
|
||||||
|
|
||||||
.add-checkbox {
|
.add-checkbox {
|
||||||
|
@ -529,6 +543,10 @@
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.add-checkbox:hover {
|
||||||
|
border: 1px solid #e5a907;
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #333;
|
color: #333;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue