diff options
| author | 2020-03-23 23:05:01 +0100 | |
|---|---|---|
| committer | 2020-03-23 23:05:01 +0100 | |
| commit | a7b72481e7cbc14d729f85816b6851ee6fcf711c (patch) | |
| tree | 96f01bf865726a8a6a864cf75ddcf9e2b89bf0eb /p/themes/base-theme/template.css | |
| parent | 8fabed337a6a11d61e2ac969acc9690d296f8cb6 (diff) | |
Shortcut mark previous articles as read (#2843)
* Shortcut mark previous articles as read
Address part of https://github.com/FreshRSS/FreshRSS/issues/2836
The shortcut [shift]+[r] now marks previous articles as read;
The previous action of marking all articles as read is now achieved by
[alt]+[r]
So this is a slight breaking change, but I like the logic of the
upward-facing [shift] arrow to hint at previous articles, while [alt] is
more like "all", at least to my eyes :-)
* Update app/i18n/nl/conf.php
Co-Authored-By: Frans de Jonge <fransdejonge@gmail.com>
* [⇧ Shift] / [Alt ⎇]
With standard Unicode signs
* <kbd> + CSS styling
* Missing themes
Tested with all themes
* Travis CSS
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
Diffstat (limited to 'p/themes/base-theme/template.css')
| -rw-r--r-- | p/themes/base-theme/template.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index 5977a0d15..ed10c9c7d 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -66,6 +66,16 @@ sup { vertical-align: baseline; } +kbd { + background-color: #eee; + padding: 2px 4px; + display: inline-block; + color: #333; + border: 1px solid #b4b4b4; + border-radius: 3px; + white-space: nowrap; +} + /*=== Images */ img { max-width: 100%; |
