Document selection/hover highlight and fix README accuracy

- theme docs: selection-background-color controls border + hover
- README: fix ffmpeg mention, update library feature list
This commit is contained in:
pax 2026-04-05 04:38:57 -05:00
parent 5c3995f5d6
commit d87a060537
2 changed files with 5 additions and 4 deletions

View File

@ -66,8 +66,8 @@ Supports custom styling via `custom.qss` — see [Theming](#theming).
- Dedicated tab for browsing saved files on disk - Dedicated tab for browsing saved files on disk
- Folder sidebar with configurable library directory - Folder sidebar with configurable library directory
- Sort by date, name, or size - Sort by date, name, or size
- FFmpeg-based video thumbnail generation - Video thumbnail generation (ffmpeg if available, placeholder fallback)
- Missing file detection for removed or relocated media - Unreachable directory detection
### Search ### Search
- Inline history dropdown inside the search bar - Inline history dropdown inside the search bar

View File

@ -28,7 +28,7 @@ QWidget {
color: #ebdbb2; color: #ebdbb2;
font-size: 13px; font-size: 13px;
font-family: monospace; font-family: monospace;
selection-background-color: #fe8019; /* also sets grid selection highlight */ selection-background-color: #fe8019; /* grid selection border + hover highlight */
selection-color: #282828; selection-color: #282828;
} }
``` ```
@ -242,8 +242,9 @@ ThumbnailWidget {
## Notes ## Notes
- `selection-background-color` on `QWidget` controls the **grid thumbnail selection highlight** - `selection-background-color` on `QWidget` controls the **grid thumbnail selection border** and **hover highlight** (lighter version auto-derived)
- Setting a custom QSS automatically switches to the Fusion Qt style for consistent rendering - Setting a custom QSS automatically switches to the Fusion Qt style for consistent rendering
- Tag category colors (Artist, Character, etc.) in the info panel are set in code, not via QSS - Tag category colors (Artist, Character, etc.) in the info panel are set in code, not via QSS
- Saved dot (green) and bookmark star (yellow) are QSS-controllable via `qproperty-savedColor` and `qproperty-bookmarkedColor` on `ThumbnailWidget` - Saved dot (green) and bookmark star (yellow) are QSS-controllable via `qproperty-savedColor` and `qproperty-bookmarkedColor` on `ThumbnailWidget`
- Use `QLabel { background: transparent; }` to prevent labels from getting opaque backgrounds - Use `QLabel { background: transparent; }` to prevent labels from getting opaque backgrounds
- Right-click on thumbnails selects visually but does not change the preview