Add files via upload

This commit is contained in:
Supra4E8C
2025-09-25 15:29:48 +08:00
committed by GitHub
parent d8df9ce680
commit e5bef7e2b0
4 changed files with 341 additions and 3 deletions

View File

@@ -436,6 +436,7 @@
.local-url-group input[type="number"] {
-moz-appearance: textfield;
appearance: textfield;
}
.login-title {
@@ -1572,3 +1573,43 @@ input:checked + .slider:before {
opacity: 1;
}
}
/* Gemini Web Token 模态框样式 */
.gemini-web-form .form-group {
margin-bottom: 20px;
}
.gemini-web-form .form-group label {
display: block;
margin-bottom: 8px;
color: var(--text-secondary);
font-weight: 600;
font-size: 14px;
}
.gemini-web-form .form-group input {
width: 100%;
padding: 12px 16px;
border: 2px solid var(--border-primary);
border-radius: 8px;
font-size: 14px;
transition: all 0.3s ease;
background: var(--bg-tertiary);
color: var(--text-primary);
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}
.gemini-web-form .form-group input:focus {
outline: none;
border-color: var(--border-focus);
box-shadow: 0 0 0 3px var(--border-primary);
}
.gemini-web-form .form-hint {
margin-top: 6px;
color: var(--text-tertiary);
font-size: 12px;
line-height: 1.4;
}