diff options
| author | Alireza Ahmadi <alireza7@gmail.com> | 2023-12-04 21:17:38 +0300 |
|---|---|---|
| committer | Alireza Ahmadi <alireza7@gmail.com> | 2023-12-04 21:18:53 +0300 |
| commit | 729d8549e2b536a10c402a88e0d4cfde9e4baf3f (patch) | |
| tree | d108e2f29516766318ac89e4ee86c719eb14c1a3 /web/html/xui/form/stream | |
| parent | f734c821d6e62eca5a206b6048f3cd7d65f3e665 (diff) | |
new frontend and mobile view #1286
Diffstat (limited to 'web/html/xui/form/stream')
| -rw-r--r-- | web/html/xui/form/stream/stream_kcp.html | 2 | ||||
| -rw-r--r-- | web/html/xui/form/stream/stream_quic.html | 4 | ||||
| -rw-r--r-- | web/html/xui/form/stream/stream_settings.html | 2 | ||||
| -rw-r--r-- | web/html/xui/form/stream/stream_sockopt.html | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/web/html/xui/form/stream/stream_kcp.html b/web/html/xui/form/stream/stream_kcp.html index 0d6df9e3..59b708bf 100644 --- a/web/html/xui/form/stream/stream_kcp.html +++ b/web/html/xui/form/stream/stream_kcp.html @@ -1,7 +1,7 @@ {{define "form/streamKCP"}} <a-form layout="inline"> <a-form-item label='{{ i18n "camouflage" }}'> - <a-select v-model="inbound.stream.kcp.type" style="width: 280px;" :dropdown-class-name="themeSwitcher.darkCardClass"> + <a-select v-model="inbound.stream.kcp.type" style="width: 280px;" :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option value="none">None (Not Camouflage)</a-select-option> <a-select-option value="srtp">SRTP (Camouflage Video Call)</a-select-option> <a-select-option value="utp">UTP (Camouflage BT Download)</a-select-option> diff --git a/web/html/xui/form/stream/stream_quic.html b/web/html/xui/form/stream/stream_quic.html index 53e60b2d..d4e22dd7 100644 --- a/web/html/xui/form/stream/stream_quic.html +++ b/web/html/xui/form/stream/stream_quic.html @@ -1,7 +1,7 @@ {{define "form/streamQUIC"}} <a-form layout="inline"> <a-form-item label='{{ i18n "pages.inbounds.stream.quic.encryption" }}'> - <a-select v-model="inbound.stream.quic.security" style="width: 165px;" :dropdown-class-name="themeSwitcher.darkCardClass"> + <a-select v-model="inbound.stream.quic.security" style="width: 165px;" :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option value="none">none</a-select-option> <a-select-option value="aes-128-gcm">aes-128-gcm</a-select-option> <a-select-option value="chacha20-poly1305">chacha20-poly1305</a-select-option> @@ -12,7 +12,7 @@ <a-input v-model.trim="inbound.stream.quic.key" style="width: 150px;"></a-input> </a-form-item> <a-form-item label='{{ i18n "camouflage" }}'> - <a-select v-model="inbound.stream.quic.type" style="width: 280px;" :dropdown-class-name="themeSwitcher.darkCardClass"> + <a-select v-model="inbound.stream.quic.type" style="width: 280px;" :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option value="none">none (not camouflage)</a-select-option> <a-select-option value="srtp">srtp (camouflage video call)</a-select-option> <a-select-option value="utp">utp (camouflage BT download)</a-select-option> diff --git a/web/html/xui/form/stream/stream_settings.html b/web/html/xui/form/stream/stream_settings.html index e50caf19..cac65207 100644 --- a/web/html/xui/form/stream/stream_settings.html +++ b/web/html/xui/form/stream/stream_settings.html @@ -2,7 +2,7 @@ <!-- select stream network --> <a-form layout="inline"> <a-form-item label='{{ i18n "transmission" }}'> - <a-select v-model="inbound.stream.network" @change="streamNetworkChange" :dropdown-class-name="themeSwitcher.darkCardClass"> + <a-select v-model="inbound.stream.network" @change="streamNetworkChange" :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option value="tcp">TCP</a-select-option> <a-select-option value="kcp">KCP</a-select-option> <a-select-option value="ws">WS</a-select-option> diff --git a/web/html/xui/form/stream/stream_sockopt.html b/web/html/xui/form/stream/stream_sockopt.html index d90bf206..5da2f8af 100644 --- a/web/html/xui/form/stream/stream_sockopt.html +++ b/web/html/xui/form/stream/stream_sockopt.html @@ -33,7 +33,7 @@ <td> <a-form-item> <a-select v-model="inbound.stream.sockopt.tproxy" style="width: 250px;" - :dropdown-class-name="themeSwitcher.darkCardClass"> + :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option value="off">OFF</a-select-option> <a-select-option value="redirect">Redirect</a-select-option> <a-select-option value="tproxy">T-Proxy</a-select-option> |
