multilang_and_other #8

Merged
gru merged 11 commits from multilang_and_other into master 2026-05-28 22:08:32 +02:00
3 changed files with 47 additions and 22 deletions
Showing only changes of commit 31895f9783 - Show all commits

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -5325,8 +5325,9 @@ body.compact-torrent-list .mobile-progress .torrent-progress {
width: 1rem; width: 1rem;
} }
/* Note: Planner Current Settings inherits Poller Diagnostics card chrome from .smart-setting-row. */ /* Note: Planner Current Settings and Poller Diagnostics use compact key-value rows for quick scanning. */
.planner-current-summary { .planner-current-summary,
.poller-diagnostics-row {
align-items: flex-start; align-items: flex-start;
} }
@@ -5340,26 +5341,25 @@ body.compact-torrent-list .mobile-progress .torrent-progress {
margin-top: 0.2rem; margin-top: 0.2rem;
} }
/* Note: Keep each Current Settings entry on a single visual line so labels do not break above values. */ .planner-diagnostic-item,
.planner-diagnostic-item { .poller-diagnostic-item {
align-items: baseline; align-items: baseline;
display: inline-flex; display: inline-flex;
gap: 0.25rem; gap: 0.25rem;
min-width: 0;
}
.planner-diagnostic-item {
white-space: nowrap; white-space: nowrap;
} }
.planner-diagnostic-item b { .planner-diagnostic-item b,
.poller-diagnostic-item b {
color: var(--bs-body-color); color: var(--bs-body-color);
display: inline; display: inline;
font-weight: 700; font-weight: 700;
} }
/* Note: Add breathing room around Current Settings separators to match Poller Diagnostics readability. */
.planner-diagnostic-line .diagnostic-separator {
margin: 0 0.18rem;
}
.diagnostic-separator, .diagnostic-separator,
.modal-meta-separator { .modal-meta-separator {
color: var(--bs-secondary-color); color: var(--bs-secondary-color);
@@ -5368,6 +5368,13 @@ body.compact-torrent-list .mobile-progress .torrent-progress {
vertical-align: middle; vertical-align: middle;
} }
.poller-layout {
gap: 0.85rem;
}
.poller-card .smart-input-field {
margin-bottom: 0;
}
.poller-safe-preview { .poller-safe-preview {
background: rgba(var(--bs-info-rgb), 0.08); background: rgba(var(--bs-info-rgb), 0.08);
@@ -5380,15 +5387,33 @@ body.compact-torrent-list .mobile-progress .torrent-progress {
} }
.poller-diagnostic-line { .poller-diagnostic-line {
display: flex; color: var(--bs-secondary-color);
flex-wrap: wrap; display: grid;
gap: 0.25rem 0.45rem; gap: 0.65rem;
line-height: 1.5; line-height: 1.45;
margin-top: 0.25rem; margin-top: 0.35rem;
} }
.poller-diagnostic-item { .poller-diagnostic-group {
display: inline-flex; border-top: 1px solid var(--bs-border-color);
gap: 0.25rem; display: grid;
min-width: 0; gap: 0.35rem;
padding-top: 0.5rem;
}
.poller-diagnostic-group:first-child {
border-top: 0;
padding-top: 0;
}
.poller-diagnostic-group-title {
color: var(--bs-body-color);
display: block;
font-weight: 700;
}
.poller-diagnostic-values {
display: flex;
flex-wrap: wrap;
gap: 0.3rem 0.75rem;
} }