allocate more space to the freq column
This commit is contained in:
parent
69c3a63794
commit
30b46c4cdd
@ -827,7 +827,7 @@ img.openwebrx-mirror-img
|
|||||||
}
|
}
|
||||||
|
|
||||||
#openwebrx-panel-wsjt-message .message {
|
#openwebrx-panel-wsjt-message .message {
|
||||||
width: 400px;
|
width: 380px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#openwebrx-panel-wsjt-message .decimal {
|
#openwebrx-panel-wsjt-message .decimal {
|
||||||
@ -835,6 +835,10 @@ img.openwebrx-mirror-img
|
|||||||
width: 35px;
|
width: 35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#openwebrx-panel-wsjt-message .decimal.freq {
|
||||||
|
width: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
#openwebrx-panel-digimodes[data-mode="ft8"] #openwebrx-digimode-content-container,
|
#openwebrx-panel-digimodes[data-mode="ft8"] #openwebrx-digimode-content-container,
|
||||||
#openwebrx-panel-digimodes[data-mode="wspr"] #openwebrx-digimode-content-container
|
#openwebrx-panel-digimodes[data-mode="wspr"] #openwebrx-digimode-content-container
|
||||||
{
|
{
|
||||||
|
@ -147,7 +147,7 @@
|
|||||||
<th>UTC</th>
|
<th>UTC</th>
|
||||||
<th class="decimal">dB</th>
|
<th class="decimal">dB</th>
|
||||||
<th class="decimal">DT</th>
|
<th class="decimal">DT</th>
|
||||||
<th class="decimal">Freq</th>
|
<th class="decimal freq">Freq</th>
|
||||||
<th class="message">Message</th>
|
<th class="message">Message</th>
|
||||||
</tr></thead>
|
</tr></thead>
|
||||||
<tbody></tbody>
|
<tbody></tbody>
|
||||||
|
@ -1405,7 +1405,7 @@ function update_wsjt_panel(msg) {
|
|||||||
'<td>' + pad(t.getUTCHours()) + pad(t.getUTCMinutes()) + pad(t.getUTCSeconds()) + '</td>' +
|
'<td>' + pad(t.getUTCHours()) + pad(t.getUTCMinutes()) + pad(t.getUTCSeconds()) + '</td>' +
|
||||||
'<td class="decimal">' + msg['db'] + '</td>' +
|
'<td class="decimal">' + msg['db'] + '</td>' +
|
||||||
'<td class="decimal">' + msg['dt'] + '</td>' +
|
'<td class="decimal">' + msg['dt'] + '</td>' +
|
||||||
'<td class="decimal">' + msg['freq'] + '</td>' +
|
'<td class="decimal freq">' + msg['freq'] + '</td>' +
|
||||||
'<td class="message">' + linkedmsg + '</td>' +
|
'<td class="message">' + linkedmsg + '</td>' +
|
||||||
'</tr>'
|
'</tr>'
|
||||||
));
|
));
|
||||||
|
Loading…
Reference in New Issue
Block a user