In particular, all added visual thumbnails of bookmarks. Conditionally set the elements to 50% opacity, restore the value to 100 when the cursor is hovered over
The implementation is as simple as possible, but at the same time allows you to get a lot of positive emotions from using your add-on.
It will be enough to finalize the class .title-content
Adding transparency to page elements
In particular, all added visual thumbnails of bookmarks. Conditionally set the elements to 50% opacity, restore the value to 100 when the cursor is hovered over
The implementation is as simple as possible, but at the same time allows you to get a lot of positive emotions from using your add-on.
It will be enough to finalize the class .title-content
.title-content { opacity: 0.4; } .tile-content:hover { opacity: 1.0; }