commit fd5969367b4bd662bd9ff6710783a3d87f5bd06a parent 7722e6a2a9119527d8accc4e7deb738a7ebf44e4 Author: Kévin Le Gouguec <kevin.legouguec@gmail.com> Date: Fri, 26 Feb 2021 17:23:58 +0100 Prevent Chrome from outlining focused summaries Diffstat:
| M | stylesheets/programmes.css | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/stylesheets/programmes.css b/stylesheets/programmes.css @@ -25,6 +25,11 @@ details.program > summary { details.program > summary::-webkit-details-marker { display: none; } +/* Disable Chrome's outline; we already highlight this block + prominently enough IMO. */ +details.program > summary:focus { + outline: none; +} details.program > summary > .name { margin-left: 2em;