diff options
| author | Tara Rostami <132676256+TaraRostami@users.noreply.github.com> | 2024-03-20 13:43:37 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-20 13:43:37 +0300 |
| commit | 0bec29f2ba5d92087704d997b9d116f0b352cf2d (patch) | |
| tree | d76811ecc8604d9545049d20eda68f303f615e24 /web/html/xui/inbound_client_table.html | |
| parent | a7418d9708e4f03503315530e68133507ba53278 (diff) | |
UI Improvements (#2067)
Diffstat (limited to 'web/html/xui/inbound_client_table.html')
| -rw-r--r-- | web/html/xui/inbound_client_table.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/inbound_client_table.html b/web/html/xui/inbound_client_table.html index 3cc115ee..7eaed854 100644 --- a/web/html/xui/inbound_client_table.html +++ b/web/html/xui/inbound_client_table.html @@ -54,7 +54,7 @@ <template v-else-if="!client.enable">{{ i18n "disabled" }}</template> <template v-else-if="client.enable && isClientOnline(client.email)">{{ i18n "online" }}</template> </template> - <a-badge :color="client.enable ? statsExpColor(record, client.email) : themeSwitcher.isDarkTheme ? '#2c3950' : '#bcbcbc'"> + <a-badge :class="isClientOnline(client.email)? 'online-animation' : ''" :color="client.enable ? statsExpColor(record, client.email) : themeSwitcher.isDarkTheme ? '#2c3950' : '#bcbcbc'"> </a-badge> </a-tooltip> [[ client.email ]] @@ -258,7 +258,7 @@ </table> </template> <a-badge> - <a-icon v-if="!client.enable" slot="count" type="pause-circle" :style="'color: ' + themeSwitcher.isDarkTheme ? '#2c3950' : '#bcbcbc'"></a-icon> + <a-icon v-if="!client.enable" slot="count" type="pause-circle" theme="filled" :style="'color: ' + themeSwitcher.isDarkTheme ? '#2c3950' : '#bcbcbc'"></a-icon> <a-button shape="round" size="small" style="font-size: 14px; padding: 0 10px;"><a-icon type="solution"></a-icon></a-button> </a-badge> </a-popover> |
