Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-03-19 00:06:55 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-03-19 00:13:01 +0300
commit6e5ed881f23c59603ce68629cd7fe643527f0052 (patch)
treee7e1637ee5cc1d802abf819182a6e5b9e9b185da /web/html/xui/index.html
parentd52c50fd9ec8c74ca42a2682d8e5991b171f0c70 (diff)
chore: pretty `Inbounds` page (#2791)
* chore: pretty 'Inbounds' page * chore: return styles for aCustomStatistic styles was intended to properly display a-statistic in the app, but for some unknown reason it was removed * fix: switch style in dark mode ---------
Diffstat (limited to 'web/html/xui/index.html')
-rw-r--r--web/html/xui/index.html13
1 files changed, 4 insertions, 9 deletions
diff --git a/web/html/xui/index.html b/web/html/xui/index.html
index f98e9716..92b25d5c 100644
--- a/web/html/xui/index.html
+++ b/web/html/xui/index.html
@@ -24,11 +24,9 @@
}
.dark .ant-backup-list-item svg,
.dark .ant-badge-status-text,
- .dark .ant-statistic-content,
.dark .ant-card-extra {
color: var(--dark-color-text-primary);
}
- .dark .ant-statistic-title,
.dark .ant-card-actions>li {
color: rgba(255, 255, 255, 0.55);
}
@@ -48,9 +46,6 @@
.ant-card-actions {
background: transparent;
}
- .ant-statistic-content {
- font-size: 16px;
- }
.ip-hidden {
-webkit-user-select: none;
-moz-user-select: none;
@@ -299,16 +294,16 @@
</template>
<a-row :class="showIp ? 'ip-visible' : 'ip-hidden'">
<a-col :xs="24" :xxl="12" :style="{ marginTop: isMobile ? '10px' : 0 }">
- <a-custom-statistic :value="status.publicIP.ipv4">
+ <a-custom-statistic title="IPv4" :value="status.publicIP.ipv4">
<template #prefix>
- IPv4:
+ <a-icon type="global" />
</template>
</a-custom-statistic>
</a-col>
<a-col :xs="24" :xxl="12" :style="{ marginTop: isMobile ? '10px' : 0 }">
- <a-custom-statistic :value="status.publicIP.ipv6">
+ <a-custom-statistic title="IPv6" :value="status.publicIP.ipv6">
<template #prefix>
- IPv6:
+ <a-icon type="global" />
</template>
</a-custom-statistic>
</a-col>