NIHVIVO-2838: Fixed some layout issues for ie6,7,8,9 in main account management page
This commit is contained in:
parent
ea5094d0ef
commit
2e757891e3
2 changed files with 17 additions and 3 deletions
|
@ -32,6 +32,20 @@ table#account th {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
}
|
}
|
||||||
|
/* Fix for IE8 and 9
|
||||||
|
table#account thead tr:first-child th:first-child {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
table#account input.delete-all {
|
||||||
|
position: absolute;
|
||||||
|
left: 5px;
|
||||||
|
top: 10px;
|
||||||
|
}
|
||||||
|
table#account thead span {
|
||||||
|
position: absolute;
|
||||||
|
left: 30px;
|
||||||
|
}
|
||||||
|
*/
|
||||||
table#account td {
|
table#account td {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
padding: .5em;
|
padding: .5em;
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
<#import "userAccounts-accountsNav.ftl" as p>
|
<#import "userAccounts-accountsNav.ftl" as p>
|
||||||
|
|
||||||
<form method="POST" action="${formUrls.add}" class="customForm" role="">
|
<form method="POST" action="${formUrls.add}" id="add-account" class="customForm" role="Add account">
|
||||||
<h3>User accounts | <input type="submit" class="submit add-account" value="Add new account" /></h3>
|
<h3><span>User accounts | </span><input type="submit" class="submit add-account" value="Add new account" /></h3>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<#if newUserAccount?? >
|
<#if newUserAccount?? >
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">
|
<th scope="col">
|
||||||
<input class="delete-all hidden" type="checkbox" name="delete-all">
|
<input class="delete-all hidden" type="checkbox" name="delete-all">
|
||||||
Email Address
|
<span>Email Address</span>
|
||||||
<nav class="account-alpha-browse">
|
<nav class="account-alpha-browse">
|
||||||
<a class="sort-asc" href="?accountsPerPage=${accountsPerPage}&orderField=email&orderDirection=ASC" title="ascending order"></a>
|
<a class="sort-asc" href="?accountsPerPage=${accountsPerPage}&orderField=email&orderDirection=ASC" title="ascending order"></a>
|
||||||
<a class="sort-desc" href="?accountsPerPage=${accountsPerPage}&orderField=email&orderDirection=DESC" title="descending order"></a>
|
<a class="sort-desc" href="?accountsPerPage=${accountsPerPage}&orderField=email&orderDirection=DESC" title="descending order"></a>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue