add:系统配置增加支持proxy选项

This commit is contained in:
ddCat
2025-03-28 10:29:28 +08:00
parent 495dce3fd9
commit 36101daae3
6 changed files with 378 additions and 58 deletions

View File

@@ -870,3 +870,31 @@ h2, h3, h4, h5 {
content: '\f0dd';
color: #0d6efd;
}
/* 代理配置样式 */
#proxy-settings {
background-color: #f8f9fa;
padding: 15px;
border-radius: 6px;
border: 1px solid #e9ecef;
margin-top: 10px;
transition: all 0.3s ease;
}
.form-check-input:checked + .form-check-label {
font-weight: 600;
color: #0d6efd;
}
/* 代理类型下拉框样式 */
#proxy-type {
border-color: #ced4da;
border-radius: 4px;
padding: 0.375rem 0.75rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#proxy-type:focus {
border-color: #86b7fe;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}