conceptualspace / yet-another-speed-dial

a modern speed dial for chrome, edge and firefox
Other
177 stars 32 forks source link

Adding transparency to page elements #84

Open SazexW opened 1 year ago

SazexW commented 1 year ago

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; }