Skip to content

Commit

Permalink
right align time label
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketMan committed Mar 3, 2024
1 parent d7d8b58 commit 874dc41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions css/zoostyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,10 @@ td.label-form {
vertical-align: bottom;
line-height: 10px;
}
.trackEditor th.duration {
text-align: right;
padding-right: 4px;
}

.trackTable td {
line-height: 18px;
Expand Down
2 changes: 1 addition & 1 deletion ui/Editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ private function emitTrackList($focusTrack, $isCollection) {
$artistHdr = $isCollection ? "<TH>Artist</TH>" : "";
$cellWidth = $isCollection ? "c3" : "c2";

echo "<TR><TH></TH><TH>Track Name</TH>${artistHdr}<TH>Time</TH><TH>URL</TH><TD align=right>Insert/Delete&nbsp;Track:&nbsp;<INPUT TYPE=BUTTON NAME=insert id='insert' CLASS=submit VALUE='+'>&nbsp;<INPUT TYPE=BUTTON NAME=delete id='delete' CLASS=submit VALUE='&minus;'></TD></TR>\n";
echo "<TR><TH></TH><TH>Track Name</TH>${artistHdr}<TH class='duration'>Time</TH><TH>URL</TH><TD align=right>Insert/Delete&nbsp;Track:&nbsp;<INPUT TYPE=BUTTON NAME=insert id='insert' CLASS=submit VALUE='+'>&nbsp;<INPUT TYPE=BUTTON NAME=delete id='delete' CLASS=submit VALUE='&minus;'></TD></TR>\n";

for($i=0; $i<$this->tracksPerPage; $i++) {
$trackNum = $_REQUEST["nextTrack"] + $i;
Expand Down

0 comments on commit 874dc41

Please sign in to comment.