* 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
25 lines
353 B
SCSS
25 lines
353 B
SCSS
.comment__action {
|
|
font-size: 14px;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
color: #259c9a;
|
|
|
|
&:hover {
|
|
color: #31c7c5;
|
|
}
|
|
|
|
+ .comment__action {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
+ .comment__controls {
|
|
&::before {
|
|
content: '•';
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
color: #777;
|
|
}
|
|
}
|
|
}
|