Neue Features: - 3-Panel Dateimanager (Ordnerbaum, Dateiliste, Vorschau) - Separates Vorschau-Fenster für zweiten Monitor - Resize-Handles für flexible Panel-Größen (horizontal & vertikal) - Vorschau-Panel ausblendbar wenn externes Fenster aktiv - Natürliche Sortierung (Sonderzeichen → Zahlen → Buchstaben) - PDF-Vorschau mit Fit-to-Page - Email-Attachment Abruf erweitert Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1106 lines
20 KiB
CSS
1106 lines
20 KiB
CSS
/* ============ Variables ============ */
|
|
/* Default Theme (Original Dark) */
|
|
:root {
|
|
--primary: #3b82f6;
|
|
--primary-dark: #2563eb;
|
|
--success: #22c55e;
|
|
--danger: #ef4444;
|
|
--warning: #f59e0b;
|
|
--bg: #0f172a;
|
|
--bg-secondary: #1e293b;
|
|
--bg-tertiary: #334155;
|
|
--text: #f1f5f9;
|
|
--text-secondary: #94a3b8;
|
|
--border: #475569;
|
|
--radius: 8px;
|
|
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* KDE Breeze Dark Theme */
|
|
[data-theme="breeze-dark"] {
|
|
--primary: #3daee9;
|
|
--primary-dark: #2980b9;
|
|
--success: #27ae60;
|
|
--danger: #da4453;
|
|
--warning: #f67400;
|
|
--bg: #1b1e20;
|
|
--bg-secondary: #232629;
|
|
--bg-tertiary: #31363b;
|
|
--text: #eff0f1;
|
|
--text-secondary: #7f8c8d;
|
|
--border: #3d4349;
|
|
--radius: 4px;
|
|
--shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
/* KDE Breeze Light Theme */
|
|
[data-theme="breeze-light"] {
|
|
--primary: #2980b9;
|
|
--primary-dark: #1d5a8a;
|
|
--success: #27ae60;
|
|
--danger: #da4453;
|
|
--warning: #f67400;
|
|
--bg: #eff0f1;
|
|
--bg-secondary: #fcfcfc;
|
|
--bg-tertiary: #e3e5e7;
|
|
--text: #232629;
|
|
--text-secondary: #7f8c8d;
|
|
--border: #bdc3c7;
|
|
--radius: 4px;
|
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
/* Explicit Dark Theme (overrides system preference) */
|
|
[data-theme="dark"] {
|
|
--primary: #3b82f6;
|
|
--primary-dark: #2563eb;
|
|
--success: #22c55e;
|
|
--danger: #ef4444;
|
|
--warning: #f59e0b;
|
|
--bg: #0f172a;
|
|
--bg-secondary: #1e293b;
|
|
--bg-tertiary: #334155;
|
|
--text: #f1f5f9;
|
|
--text-secondary: #94a3b8;
|
|
--border: #475569;
|
|
--radius: 8px;
|
|
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* System preference detection (only when no theme is explicitly set) */
|
|
@media (prefers-color-scheme: light) {
|
|
:root:not([data-theme]) {
|
|
--primary: #2980b9;
|
|
--primary-dark: #1d5a8a;
|
|
--success: #27ae60;
|
|
--danger: #da4453;
|
|
--warning: #f67400;
|
|
--bg: #eff0f1;
|
|
--bg-secondary: #fcfcfc;
|
|
--bg-tertiary: #e3e5e7;
|
|
--text: #232629;
|
|
--text-secondary: #7f8c8d;
|
|
--border: #bdc3c7;
|
|
--radius: 4px;
|
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
|
|
}
|
|
}
|
|
|
|
/* ============ Reset & Base ============ */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* ============ Layout ============ */
|
|
#app {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.header {
|
|
background: var(--bg-secondary);
|
|
padding: 1rem 1.5rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.main-container {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1px;
|
|
flex: 1;
|
|
background: var(--border);
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
.main-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* ============ Bereiche ============ */
|
|
.bereich {
|
|
background: var(--bg);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.bereich-header {
|
|
padding: 1.5rem;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.bereich-header h2 {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.bereich-desc {
|
|
color: var(--text-secondary);
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.bereich-content {
|
|
padding: 1rem;
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
/* ============ Buttons ============ */
|
|
.btn {
|
|
padding: 0.5rem 1rem;
|
|
border: none;
|
|
border-radius: var(--radius);
|
|
font-size: 0.875rem;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
background: var(--bg-tertiary);
|
|
color: var(--text);
|
|
}
|
|
|
|
.btn:hover {
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
.btn:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--primary);
|
|
color: white;
|
|
}
|
|
|
|
.btn-success {
|
|
background: var(--success);
|
|
color: white;
|
|
}
|
|
|
|
.btn-danger {
|
|
background: var(--danger);
|
|
color: white;
|
|
}
|
|
|
|
.btn-sm {
|
|
padding: 0.25rem 0.5rem;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.btn-large {
|
|
padding: 0.75rem 1.5rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* ============ Cards ============ */
|
|
.card {
|
|
background: var(--bg-secondary);
|
|
border-radius: var(--radius);
|
|
margin-bottom: 1rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-header {
|
|
padding: 0.75rem 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid var(--border);
|
|
background: var(--bg-tertiary);
|
|
}
|
|
|
|
.card-header h3 {
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.card-body {
|
|
padding: 1rem;
|
|
}
|
|
|
|
/* ============ Action Bar ============ */
|
|
.action-bar {
|
|
padding: 1rem;
|
|
text-align: center;
|
|
background: var(--bg-secondary);
|
|
border-radius: var(--radius);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.action-buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 0.75rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.action-hint {
|
|
display: block;
|
|
margin-top: 0.5rem;
|
|
color: var(--text-secondary);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
/* ============ Config Items ============ */
|
|
.config-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.75rem;
|
|
background: var(--bg-tertiary);
|
|
border-radius: var(--radius);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.config-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.config-item-info h4 {
|
|
font-size: 0.875rem;
|
|
margin-bottom: 0.125rem;
|
|
}
|
|
|
|
.config-item-info small {
|
|
color: var(--text-secondary);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.config-item-actions {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
/* ============ Forms ============ */
|
|
.form-group {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-size: 0.875rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group textarea,
|
|
.form-group select {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
background: var(--bg-tertiary);
|
|
color: var(--text);
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.form-group small {
|
|
display: block;
|
|
margin-top: 0.25rem;
|
|
color: var(--text-secondary);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.form-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.code-input {
|
|
font-family: 'Consolas', 'Monaco', monospace;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
/* ============ Log Output ============ */
|
|
.log-output {
|
|
font-family: 'Consolas', 'Monaco', monospace;
|
|
font-size: 0.8rem;
|
|
max-height: 350px;
|
|
min-height: 100px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.log-entry {
|
|
padding: 0.5rem;
|
|
border-radius: 4px;
|
|
margin-bottom: 0.25rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.log-entry.success {
|
|
background: rgba(34, 197, 94, 0.2);
|
|
border-left: 3px solid var(--success);
|
|
}
|
|
|
|
.log-entry.error {
|
|
background: rgba(239, 68, 68, 0.2);
|
|
border-left: 3px solid var(--danger);
|
|
}
|
|
|
|
.log-entry.info {
|
|
background: rgba(59, 130, 246, 0.2);
|
|
border-left: 3px solid var(--primary);
|
|
}
|
|
|
|
.empty-state {
|
|
color: var(--text-secondary);
|
|
text-align: center;
|
|
padding: 1rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
/* ============ Modals ============ */
|
|
.modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.modal-content {
|
|
background: var(--bg-secondary);
|
|
border-radius: var(--radius);
|
|
width: 90%;
|
|
max-width: 500px;
|
|
max-height: 90vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal-large {
|
|
max-width: 700px;
|
|
}
|
|
|
|
.modal-header {
|
|
padding: 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.modal-header h3 {
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
.modal-close {
|
|
background: none;
|
|
border: none;
|
|
color: var(--text-secondary);
|
|
font-size: 1.5rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.modal-footer {
|
|
padding: 1rem;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.5rem;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
/* ============ Test Result ============ */
|
|
.test-result {
|
|
margin-top: 0.5rem;
|
|
padding: 0.75rem;
|
|
border-radius: var(--radius);
|
|
background: var(--bg-tertiary);
|
|
font-family: monospace;
|
|
font-size: 0.8rem;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.test-result.success {
|
|
border-left: 3px solid var(--success);
|
|
}
|
|
|
|
.test-result.error {
|
|
border-left: 3px solid var(--danger);
|
|
}
|
|
|
|
/* ============ Status Badges ============ */
|
|
.badge {
|
|
display: inline-block;
|
|
padding: 0.125rem 0.5rem;
|
|
border-radius: 4px;
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.badge-success { background: var(--success); }
|
|
.badge-warning { background: var(--warning); color: #000; }
|
|
.badge-danger { background: var(--danger); }
|
|
.badge-info { background: var(--primary); }
|
|
.badge-secondary { background: var(--bg-tertiary); }
|
|
.badge-typ { background: #7c3aed; }
|
|
|
|
/* ============ Schnell-Regeln (Typ-basiert) ============ */
|
|
.card-hint {
|
|
font-size: 0.8rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 0.75rem;
|
|
padding: 0.5rem;
|
|
background: var(--bg-tertiary);
|
|
border-radius: var(--radius);
|
|
border-left: 3px solid var(--primary);
|
|
}
|
|
|
|
.config-item.typ-regel {
|
|
border-left: 3px solid #7c3aed;
|
|
}
|
|
|
|
.config-item.fallback-regel {
|
|
border-left: 3px solid var(--warning);
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.config-item.fallback-regel h4::after {
|
|
content: " (Fallback)";
|
|
font-size: 0.7rem;
|
|
color: var(--warning);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.info-box {
|
|
background: var(--bg-tertiary);
|
|
padding: 1rem;
|
|
border-radius: var(--radius);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.info-box strong {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--text);
|
|
}
|
|
|
|
.info-box p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.875rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.info-box small {
|
|
display: block;
|
|
color: var(--text-secondary);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.info-box code {
|
|
background: var(--bg);
|
|
padding: 0.125rem 0.375rem;
|
|
border-radius: 3px;
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.modal-hint {
|
|
color: var(--text-secondary);
|
|
font-size: 0.875rem;
|
|
margin-bottom: 1rem;
|
|
padding: 0.75rem;
|
|
background: var(--bg-tertiary);
|
|
border-radius: var(--radius);
|
|
}
|
|
|
|
/* ============ Loading Overlay ============ */
|
|
.loading-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 2000;
|
|
}
|
|
|
|
.spinner {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 4px solid var(--border);
|
|
border-top-color: var(--primary);
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.loading-text {
|
|
margin-top: 1rem;
|
|
color: var(--text);
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.progress-bar {
|
|
width: 200px;
|
|
height: 6px;
|
|
background: var(--bg-tertiary);
|
|
border-radius: 3px;
|
|
margin-top: 1rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-bar-fill {
|
|
height: 100%;
|
|
background: var(--primary);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
/* ============ File Browser ============ */
|
|
.file-browser {
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.file-browser-path {
|
|
padding: 0.75rem;
|
|
background: var(--bg-tertiary);
|
|
border-bottom: 1px solid var(--border);
|
|
font-family: monospace;
|
|
font-size: 0.8rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.file-browser-list {
|
|
list-style: none;
|
|
}
|
|
|
|
.file-browser-item {
|
|
padding: 0.5rem 1rem;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.file-browser-item:hover {
|
|
background: var(--bg-tertiary);
|
|
}
|
|
|
|
.file-browser-item.selected {
|
|
background: var(--primary);
|
|
}
|
|
|
|
.file-browser-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.file-icon {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* ============ Checkbox Group ============ */
|
|
.checkbox-group {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
.checkbox-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
padding: 0.25rem 0.5rem;
|
|
background: var(--bg-tertiary);
|
|
border-radius: 4px;
|
|
font-size: 0.75rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.checkbox-item input {
|
|
width: auto;
|
|
margin: 0;
|
|
}
|
|
|
|
.checkbox-item:has(input:checked) {
|
|
background: var(--primary);
|
|
}
|
|
|
|
/* ============ Input with Button ============ */
|
|
.input-with-btn {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.input-with-btn input {
|
|
flex: 1;
|
|
}
|
|
|
|
/* ============ Utilities ============ */
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
/* ============ Scrollbar ============ */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--bg);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--border);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--text-secondary);
|
|
}
|
|
|
|
/* ============ Statistik ============ */
|
|
.statistik-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.stat-item {
|
|
background: var(--bg-tertiary);
|
|
padding: 1rem;
|
|
border-radius: var(--radius);
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-label {
|
|
display: block;
|
|
color: var(--text-secondary);
|
|
font-size: 0.75rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.stat-value {
|
|
display: block;
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: var(--primary);
|
|
}
|
|
|
|
/* ============ Hilfe Bereich ============ */
|
|
.hilfe-section {
|
|
margin-bottom: 1.5rem;
|
|
padding-bottom: 1.5rem;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.hilfe-section:last-child {
|
|
border-bottom: none;
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.hilfe-section h4 {
|
|
margin-bottom: 0.75rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.hilfe-section p {
|
|
color: var(--text-secondary);
|
|
margin-bottom: 0.75rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.hilfe-section textarea {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
background: var(--bg-tertiary);
|
|
color: var(--text);
|
|
font-size: 0.875rem;
|
|
font-family: 'Consolas', 'Monaco', monospace;
|
|
resize: vertical;
|
|
}
|
|
|
|
.btn-group {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
.btn-file {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.doku-box {
|
|
background: var(--bg-tertiary);
|
|
padding: 1rem;
|
|
border-radius: var(--radius);
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.doku-box h5 {
|
|
margin-top: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--primary);
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.doku-box h5:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.doku-box pre {
|
|
background: var(--bg);
|
|
padding: 0.75rem;
|
|
border-radius: 4px;
|
|
overflow-x: auto;
|
|
font-size: 0.75rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
#hilfe-analyse {
|
|
background: var(--bg-tertiary);
|
|
padding: 1rem;
|
|
border-radius: var(--radius);
|
|
}
|
|
|
|
#hilfe-analyse h5 {
|
|
margin-top: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--success);
|
|
}
|
|
|
|
#hilfe-analyse h5:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
#hilfe-analyse pre {
|
|
background: var(--bg);
|
|
padding: 0.75rem;
|
|
border-radius: 4px;
|
|
overflow-x: auto;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
#hilfe-analyse ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
#hilfe-analyse li {
|
|
padding: 0.25rem 0;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
/* ============ Header Right ============ */
|
|
.header-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
/* ============ Theme Selector ============ */
|
|
.theme-select {
|
|
background: var(--bg-tertiary);
|
|
color: var(--text);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
padding: 0.375rem 0.5rem;
|
|
font-size: 0.8rem;
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
|
|
.theme-select:hover {
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.theme-select:focus {
|
|
border-color: var(--primary);
|
|
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
|
|
}
|
|
|
|
.theme-select option {
|
|
background: var(--bg-secondary);
|
|
color: var(--text);
|
|
}
|
|
|
|
/* ============ Regex Editor ============ */
|
|
.regex-editor {
|
|
background: var(--bg);
|
|
padding: 1rem;
|
|
border-radius: var(--radius);
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.regex-row {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.regex-row:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.regex-row label {
|
|
display: block;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
margin-bottom: 0.25rem;
|
|
color: var(--text);
|
|
}
|
|
|
|
.regex-row input {
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
background: var(--bg-tertiary);
|
|
color: var(--text);
|
|
font-family: 'Consolas', 'Monaco', monospace;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.regex-row small {
|
|
display: block;
|
|
color: var(--text-secondary);
|
|
font-size: 0.7rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.regel-vorschau {
|
|
margin-top: 1rem;
|
|
padding: 1rem;
|
|
background: var(--bg);
|
|
border-radius: var(--radius);
|
|
border-left: 3px solid var(--success);
|
|
}
|
|
|
|
.regel-vorschau h5 {
|
|
margin-bottom: 0.5rem;
|
|
color: var(--success);
|
|
}
|
|
|
|
.regel-vorschau pre {
|
|
background: var(--bg-tertiary);
|
|
padding: 0.75rem;
|
|
border-radius: 4px;
|
|
font-size: 0.75rem;
|
|
overflow-x: auto;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
/* ============ Regex Input mit Dropdown ============ */
|
|
.regex-input-group {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.regex-input-group input {
|
|
flex: 1;
|
|
}
|
|
|
|
.regex-input-group select {
|
|
width: auto;
|
|
min-width: 120px;
|
|
padding: 0.5rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
background: var(--bg-tertiary);
|
|
color: var(--text);
|
|
font-size: 0.75rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* ============ Regex Cheatsheet ============ */
|
|
.regex-cheatsheet {
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.cheatsheet-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.cheatsheet-section {
|
|
background: var(--bg);
|
|
padding: 0.75rem;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.cheatsheet-section h5 {
|
|
margin-top: 0 !important;
|
|
margin-bottom: 0.5rem;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.cheatsheet-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.cheatsheet-table td {
|
|
padding: 0.25rem 0.5rem;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.cheatsheet-table td:first-child {
|
|
font-family: 'Consolas', 'Monaco', monospace;
|
|
color: var(--success);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.cheatsheet-table tr:last-child td {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.cheatsheet-tip {
|
|
margin-top: 1rem;
|
|
padding: 0.75rem;
|
|
background: rgba(59, 130, 246, 0.2);
|
|
border-left: 3px solid var(--primary);
|
|
border-radius: 4px;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.cheatsheet-tip code {
|
|
background: var(--bg);
|
|
padding: 0.1rem 0.3rem;
|
|
border-radius: 3px;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
/* ============ PDF Browser ============ */
|
|
.pdf-ordner-auswahl {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.pdf-ordner-auswahl label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-size: 0.875rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.pdf-ordner-auswahl select {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
background: var(--bg-tertiary);
|
|
color: var(--text);
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.pdf-dateien-liste {
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.pdf-file-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
}
|
|
|
|
.pdf-file-item {
|
|
padding: 0.5rem 0.75rem;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
border-bottom: 1px solid var(--border);
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.pdf-file-item:hover {
|
|
background: var(--bg-tertiary);
|
|
}
|
|
|
|
.pdf-file-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* ============ Permission Badges ============ */
|
|
.perm-badge {
|
|
display: inline-block;
|
|
padding: 0.125rem 0.4rem;
|
|
border-radius: 3px;
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
margin-left: 0.5rem;
|
|
background: var(--bg-tertiary);
|
|
}
|
|
|
|
.perm-badge-small {
|
|
display: inline-block;
|
|
padding: 0.1rem 0.3rem;
|
|
border-radius: 3px;
|
|
font-size: 0.65rem;
|
|
font-weight: 500;
|
|
margin-left: auto;
|
|
background: var(--bg);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.file-browser-item.perm-ok .perm-badge-small {
|
|
color: var(--success);
|
|
}
|
|
|
|
.file-browser-item.perm-no-write .perm-badge-small {
|
|
color: var(--warning);
|
|
}
|
|
|
|
.file-browser-item.perm-no-read {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.file-browser-item.perm-no-read .perm-badge-small {
|
|
color: var(--danger);
|
|
}
|