1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Fix: Corrected table formating

This commit is contained in:
Philipp Schafft 2020-10-01 18:30:07 +00:00
parent afdba35f5c
commit e1bb38dd45
2 changed files with 5 additions and 3 deletions

View File

@ -119,13 +119,15 @@
<xsl:if test="playlist/*">
<h4>Playlist</h4>
<table class="table-block">
<tbody>
<thead>
<tr>
<th>Album</th>
<th>Track</th>
<th>Creator</th>
<th>Title</th>
</tr>
</thead>
<tbody>
<xsl:for-each select="playlist/trackList/track">
<tr>
<td><xsl:value-of select="album" /></td>

View File

@ -224,11 +224,11 @@ section.box table tr {
border-top: 1px solid #e7e7e7;
}
section.box table tr:hover {
section.box table tbody tr:hover {
background-color: #c0c0c0;
}
section.box table tr td {
section.box table tr > * {
padding: 0.4em 1.5em;
}