NIHVIVO-2838: Fixed more layout issues for ie6,7,8,9 in main account management page
This commit is contained in:
parent
d9567f69ab
commit
e9b939e1c5
2 changed files with 24 additions and 31 deletions
|
@ -27,37 +27,29 @@ table#account th {
|
||||||
background-color: #F7F9F9;
|
background-color: #F7F9F9;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
color: #064D68;
|
color: #064D68;
|
||||||
padding-top: 7px;
|
padding-top: 5px;
|
||||||
border: 1px solid #d9e4ea;
|
border: 1px solid #d9e4ea;
|
||||||
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 {
|
|
||||||
vertical-align: top;
|
|
||||||
padding: .5em;
|
|
||||||
border: 1px solid #d9e4ea;
|
|
||||||
font-size: .9em;
|
font-size: .9em;
|
||||||
}
|
}
|
||||||
|
table#account th {
|
||||||
|
text-align: left;
|
||||||
|
} /*Fix for IE8 and 9, force text in a cell to be aligned to the left*/
|
||||||
table#account tr {
|
table#account tr {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
table#account tr:nth-child(2n+1) {
|
table#account tr:nth-child(2n+1) {
|
||||||
background-color: rgba(200, 200, 180,.25);
|
background-color: rgba(200, 200, 180,.25);
|
||||||
}
|
}
|
||||||
|
table#account td {
|
||||||
|
vertical-align: top;
|
||||||
|
padding: .5em;
|
||||||
|
border: 1px solid #d9e4ea;
|
||||||
|
font-size: .825em;
|
||||||
|
padding-top: .5em;
|
||||||
|
padding-bottom: .5em;
|
||||||
|
}
|
||||||
#filter-roles {
|
#filter-roles {
|
||||||
float: left;
|
float: left;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
|
|
@ -81,14 +81,15 @@
|
||||||
|
|
||||||
<thead>
|
<thead>
|
||||||
<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">
|
<span>Email Address</span>
|
||||||
<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>
|
||||||
</nav>
|
</nav>
|
||||||
</th>
|
</th>
|
||||||
|
|
||||||
<th scope="col">
|
<th scope="col">
|
||||||
First name
|
First name
|
||||||
<nav class="account-alpha-browse">
|
<nav class="account-alpha-browse">
|
||||||
|
@ -115,13 +116,13 @@
|
||||||
|
|
||||||
<th scope="col">Roles</th>
|
<th scope="col">Roles</th>
|
||||||
|
|
||||||
<th scope="col">
|
<#--<th scope="col">
|
||||||
Login count
|
Login count
|
||||||
<nav class="account-alpha-browse">
|
<nav class="account-alpha-browse">
|
||||||
<a class="sort-asc" href="?accountsPerPage=${accountsPerPage}&orderField=count&orderDirection=ASC" title="ascending order"></a>
|
<a class="sort-asc" href="?accountsPerPage=${accountsPerPage}&orderField=count&orderDirection=ASC" title="ascending order"></a>
|
||||||
<a class="sort-desc" href="?accountsPerPage=${accountsPerPage}&orderField=count&orderDirection=DESC" title="descending order"></a>
|
<a class="sort-desc" href="?accountsPerPage=${accountsPerPage}&orderField=count&orderDirection=DESC" title="descending order"></a>
|
||||||
</nav>
|
</nav>
|
||||||
</th>
|
</th>-->
|
||||||
|
|
||||||
<th scope="col">
|
<th scope="col">
|
||||||
Last Login Time
|
Last Login Time
|
||||||
|
@ -151,7 +152,7 @@
|
||||||
<div>${permissionSet}</div>
|
<div>${permissionSet}</div>
|
||||||
</#list>
|
</#list>
|
||||||
</td>
|
</td>
|
||||||
<td>${account.loginCount}</td>
|
<#--<td>${account.loginCount}</td>-->
|
||||||
<td>
|
<td>
|
||||||
<#if account.lastLoginTime??>
|
<#if account.lastLoginTime??>
|
||||||
${account.lastLoginTime?datetime?string.full}
|
${account.lastLoginTime?datetime?string.full}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue