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.
This commit is contained in:
Patrick H. Lauke 2017-05-29 20:14:34 +02:00 committed by Zeno Rocha
parent 1f841e2c86
commit 2c27fbdc27

View File

@ -181,7 +181,8 @@ textarea {
top: 4px;
}
.snippet:hover .btn {
.snippet:hover .btn,
.snippet .btn:focus {
opacity: 1;
}