mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 09:08:47 +02:00
Use HiFi glyph for delete "x"s
This commit is contained in:
parent
5f333ee02c
commit
11a2559df9
2 changed files with 15 additions and 2 deletions
|
@ -62,6 +62,18 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#recordings-list tr td:last-child span {
|
||||||
|
font-family: HiFi-Glyphs;
|
||||||
|
font-size: 24px;
|
||||||
|
height: 24px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#recordings-list tr td:last-child span:hover {
|
||||||
|
color: #00b4ef;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#recordings tfoot tr {
|
#recordings tfoot tr {
|
||||||
height: 24px;
|
height: 24px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,7 +62,8 @@ function updateRecordings() {
|
||||||
span,
|
span,
|
||||||
input,
|
input,
|
||||||
length,
|
length,
|
||||||
i;
|
i,
|
||||||
|
HIFI_GLYPH_CLOSE_SMALL = "C";
|
||||||
|
|
||||||
recordingsBeingPlayed.sort(orderRecording);
|
recordingsBeingPlayed.sort(orderRecording);
|
||||||
|
|
||||||
|
@ -76,7 +77,7 @@ function updateRecordings() {
|
||||||
tr.appendChild(td);
|
tr.appendChild(td);
|
||||||
td = document.createElement("td");
|
td = document.createElement("td");
|
||||||
span = document.createElement("span");
|
span = document.createElement("span");
|
||||||
span.innerHTML = "x";
|
span.innerHTML = HIFI_GLYPH_CLOSE_SMALL;
|
||||||
span.addEventListener("click", stopPlayingRecording);
|
span.addEventListener("click", stopPlayingRecording);
|
||||||
input = document.createElement("input");
|
input = document.createElement("input");
|
||||||
input.setAttribute("type", "hidden");
|
input.setAttribute("type", "hidden");
|
||||||
|
|
Loading…
Reference in a new issue