mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-07-14 08:36:07 +00:00
f00512d12e
- #5339: accept transportless tunnel/TProxy streamSettings that carry no `security` key by adding a transportless branch to SecuritySettingsSchema, mirroring NetworkSettingsSchema. Fixes "streamSettings.security Invalid input". - #5322: emit XTLS Vision `flow` in panel VLESS share links for XHTTP+vlessenc via the shared canEnableTlsFlow predicate, so panel links match the form and the subscription output. - #5313: give the Jalali expiry date picker a working clear (X) button (remount on clear, since the library reads `value` only on mount) and a blank placeholder instead of the library's hardcoded Persian text.
72 lines
1.3 KiB
CSS
72 lines
1.3 KiB
CSS
.jdp-wrap {
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.jdp-wrap > * {
|
|
width: 100%;
|
|
}
|
|
|
|
.jdp-wrap input {
|
|
direction: ltr;
|
|
text-align: left;
|
|
unicode-bidi: plaintext;
|
|
}
|
|
|
|
.jdp-dark .jdp-wrap input,
|
|
.jdp-dark input {
|
|
color: rgba(255, 255, 255, 0.88) !important;
|
|
background-color: #23252b !important;
|
|
}
|
|
|
|
.jdp-ultra .jdp-wrap input,
|
|
.jdp-ultra input {
|
|
color: rgba(255, 255, 255, 0.88) !important;
|
|
background-color: #101013 !important;
|
|
}
|
|
|
|
.jdp-dark input::placeholder,
|
|
.jdp-ultra input::placeholder {
|
|
color: rgba(255, 255, 255, 0.30) !important;
|
|
}
|
|
|
|
.jdp-disabled {
|
|
pointer-events: none;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
/* persian-calendar-suite has no allowClear; overlay our own clear button so
|
|
the Jalali picker matches the Gregorian AntD DatePicker's X affordance. */
|
|
.jdp-wrap .jdp-clear {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 11px;
|
|
transform: translateY(-50%);
|
|
z-index: 1;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: auto;
|
|
padding: 0;
|
|
border: none;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
color: rgba(0, 0, 0, 0.25);
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.jdp-wrap .jdp-clear:hover {
|
|
color: rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.jdp-dark .jdp-clear {
|
|
color: rgba(255, 255, 255, 0.30);
|
|
}
|
|
|
|
.jdp-dark .jdp-clear:hover,
|
|
.jdp-ultra .jdp-clear:hover {
|
|
color: rgba(255, 255, 255, 0.45);
|
|
}
|