* add focus-visible polyfill * remove unnecessary outline: none from styles * make buttons Pin, Block, Delete visible when focused * fix outline of user details close button * close user info by ESC * user info: don't focus the close button
14 lines
193 B
SCSS
14 lines
193 B
SCSS
.comment__controls {
|
|
display: inline;
|
|
vertical-align: middle;
|
|
user-select: none;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
opacity: 0;
|
|
|
|
&:hover,
|
|
&:focus-within {
|
|
opacity: 1;
|
|
}
|
|
}
|