style(ui): improve network metrics readability
- Increased font size for easier readability. - Applied bold font weight for better emphasis.
This commit is contained in:
@ -59,7 +59,7 @@
|
||||
<span class="info-box-icon bg-primary"><i class="fas fa-exchange-alt"></i></span>
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">Network Speed</span>
|
||||
<div style="font-size: 14px; line-height: 1.2;">
|
||||
<div style="font-size: 16px; line-height: 1.3; font-weight: bold;">
|
||||
<span class="d-block" id="download-speed">🔽 Download: --</span>
|
||||
<span class="d-block" id="upload-speed">🔼 Upload: --</span>
|
||||
</div>
|
||||
@ -71,7 +71,7 @@
|
||||
<span class="info-box-icon bg-dark"><i class="fas fa-project-diagram"></i></span>
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">Active Connections</span>
|
||||
<div style="font-size: 14px; line-height: 1.2;">
|
||||
<div style="font-size: 16px; line-height: 1.3; font-weight: bold;">
|
||||
<span class="d-block" id="tcp-connections">TCP: --</span>
|
||||
<span class="d-block" id="udp-connections">UDP: --</span>
|
||||
</div>
|
||||
@ -85,7 +85,7 @@
|
||||
<span class="info-box-text">Server IPs
|
||||
<a href="#" id="toggle-ip-visibility" class="text-muted ml-2"><i class="fas fa-eye"></i></a>
|
||||
</span>
|
||||
<div id="ip-addresses" style="filter: blur(5px); font-size: 14px; line-height: 1.2;">
|
||||
<div id="ip-addresses" style="filter: blur(5px); font-size: 16px; line-height: 1.3; font-weight: bold;">
|
||||
<span class="d-block" id="server-ipv4">IPv4: --</span>
|
||||
<span class="d-block" id="server-ipv6">IPv6: --</span>
|
||||
</div>
|
||||
@ -219,7 +219,6 @@
|
||||
.catch(error => console.error('Error fetching server info:', error));
|
||||
}
|
||||
|
||||
|
||||
function updateServiceStatuses() {
|
||||
fetch('{{ url_for("server_services_status_api") }}')
|
||||
.then(response => response.json())
|
||||
|
||||
Reference in New Issue
Block a user