From 2c27fbdc2770b28dbf8aab736da0bfdd3dca5376 Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Mon, 29 May 2017 20:14:34 +0200 Subject: [PATCH] Make snippet buttons appear on kbd focus (#418) Currently, navigating just with the keyboard (TAB/SHIFT+TAB), the snippet buttons remain invisible. This forces the same change of opacity as hovering over the snippet with the mouse. --- assets/styles/main.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/styles/main.css b/assets/styles/main.css index 9b4ef1d..8f2b07a 100644 --- a/assets/styles/main.css +++ b/assets/styles/main.css @@ -181,7 +181,8 @@ textarea { top: 4px; } -.snippet:hover .btn { +.snippet:hover .btn, +.snippet .btn:focus { opacity: 1; }