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:
authorMHSanaei <ho3ein.sanaei@gmail.com>2023-04-29 21:58:50 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2023-04-29 21:58:50 +0300
commita0f5875cb32da305043630a4e497071b07621d7f (patch)
treee1c911c5f69d81f47ecbec24bfbcef74e55fcee9 /web/html/xui/form
parentc3ed8051f39339caccd08fecf817dbb5b08098d3 (diff)
[darkmode] fix UTLS - cipherSuites
Diffstat (limited to 'web/html/xui/form')
-rw-r--r--web/html/xui/form/tls_settings.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/web/html/xui/form/tls_settings.html b/web/html/xui/form/tls_settings.html
index 9cd03972..eeb83016 100644
--- a/web/html/xui/form/tls_settings.html
+++ b/web/html/xui/form/tls_settings.html
@@ -37,7 +37,7 @@
<a-input v-model.trim="inbound.stream.tls.server" style="width: 250px"></a-input>
</a-form-item>
<a-form-item label="CipherSuites">
- <a-select v-model="inbound.stream.tls.cipherSuites" style="width: 300px">
+ <a-select v-model="inbound.stream.tls.cipherSuites" style="width: 300px" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
<a-select-option value="">auto</a-select-option>
<a-select-option v-for="key in TLS_CIPHER_OPTION" :value="key">[[ key ]]</a-select-option>
</a-select>
@@ -56,7 +56,8 @@
<a-input v-model.trim="inbound.stream.tls.settings.serverName" style="width: 250px"></a-input>
</a-form-item>
<a-form-item label="uTLS">
- <a-select v-model="inbound.stream.tls.settings.fingerprint" style="width: 170px">
+ <a-select v-model="inbound.stream.tls.settings.fingerprint"
+ style="width: 170px" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
<a-select-option value=''>None</a-select-option>
<a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option>
</a-select>
@@ -142,7 +143,8 @@
<a-input type="number" v-model.number="inbound.stream.reality.xver" :min="0" style="width: 60px"></a-input>
</a-form-item>
<a-form-item label="uTLS" >
- <a-select v-model="inbound.stream.reality.settings.fingerprint" style="width: 135px">
+ <a-select v-model="inbound.stream.reality.settings.fingerprint"
+ style="width: 135px" :dropdown-class-name="siderDrawer.isDarkTheme ? 'ant-card-dark' : ''">
<a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option>
</a-select>
</a-form-item>