Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions web-static/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@
"form_factor": "wide",
"label": "Reader desktop feed view"
},
{
"src": "/manifest-assets/screenshot-wide-mobile.png?v=1",
"sizes": "1440x1120",
"type": "image/png",
"form_factor": "wide",
"label": "Reader mobile feed view"
},
{
"src": "/manifest-assets/screenshot-mobile.png?v=2",
"sizes": "430x932",
Expand Down
47 changes: 46 additions & 1 deletion web-static/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,29 @@ button {
.filter-button:hover,
.icon-button:hover,
.view-more:hover,
.search-clear:hover,
.search-clear:hover {
color: var(--text);
background: color-mix(in srgb, var(--accent) 10%, var(--surface));
border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
}

.item-title a:hover {
color: var(--text);
border-color: color-mix(in srgb, var(--accent) 36%, var(--border));
}

.filter-button.is-active:hover {
border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
}

.filter-button:focus-visible,
.icon-button:focus-visible,
.view-more:focus-visible,
.search-clear:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}

.filter-button.is-active {
color: var(--text);
background: var(--accent-soft);
Expand Down Expand Up @@ -240,9 +257,15 @@ button {
}

.pill-button:hover {
background: color-mix(in srgb, var(--accent) 22%, var(--accent-soft));
border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
}

.pill-button:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}

.pill-button .theme-icon {
color: var(--accent);
}
Expand Down Expand Up @@ -504,6 +527,13 @@ button {
border: 1px solid var(--border);
border-radius: 0.95rem;
background: var(--surface);
cursor: pointer;
transition: 140ms ease;
}

.config-option:hover {
background: color-mix(in srgb, var(--accent) 10%, var(--surface));
border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
}

.config-option input {
Expand Down Expand Up @@ -595,6 +625,10 @@ button {
background: color-mix(in srgb, var(--accent-soft) 52%, var(--surface));
}

.config-option--choice:has(input:checked):hover {
border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
}

.config-option--choice:has(input:checked) .config-option-icon {
color: var(--accent);
}
Expand Down Expand Up @@ -644,13 +678,24 @@ body.is-dialog-open {
background: var(--surface);
color: var(--text);
cursor: pointer;
transition: 140ms ease;
}

.dialog-button:hover {
background: color-mix(in srgb, var(--accent) 10%, var(--surface));
border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
}

.dialog-button-primary {
background: var(--accent-soft);
border-color: color-mix(in srgb, var(--accent) 44%, var(--border));
}

.dialog-button-primary:hover {
background: color-mix(in srgb, var(--accent) 22%, var(--accent-soft));
border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
}

.toast {
position: fixed;
top: calc(env(safe-area-inset-top) + 0.9rem);
Expand Down