people dir listing tweaks
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
parent
d8369913cb
commit
6fbb37ea57
2 changed files with 16 additions and 1 deletions
|
@ -47,5 +47,20 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
var tables = document.getElementsByTagName("table");
|
||||
for (var i=0; i<tables.length; i++)
|
||||
{
|
||||
var thetable = tables[i];
|
||||
thetable.setAttribute( "class", "table table-striped" );
|
||||
}
|
||||
|
||||
var tds = document.getElementsByTagName("td");
|
||||
for (var i=0; i<tds.length; i++)
|
||||
{
|
||||
var td = tds[i];
|
||||
td.setAttribute( "align", "" );
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<nav class="navbar navbar-expand-lg navbar-light masthead py-2">
|
||||
<a class="navbar-brand" href="https://fedorapeople.org/"><img src="//fedoraproject.org/assets/images/logos/fedora-blue.png" alt="Fedora logo" height="40"></a>
|
||||
</nav>
|
||||
<div class="container mt-5 mb-5" style="min-height:400px">
|
||||
<div class="container my-5 mx-3" style="min-height:400px">
|
||||
<div id="content">
|
||||
<div id="pageLogin">
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue