Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Show save icon in thumbnail on hover #1746 #2648

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/renderer/components/ft-icon-button/ft-icon-button.sass
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@
&.base
background-color: var(--card-bg-color)
color: var(--primary-text-color)
opacity: 0

&:hover
background-color: var(--side-nav-hover-color)
opacity: 1

&:active
background-color: var(--side-nav-active-color)
Expand Down Expand Up @@ -56,7 +58,7 @@
color: var(--favorite-icon-color)

.iconDropdown
display: inline
display: none
position: absolute
text-align: center
list-style-type: none
Expand All @@ -68,6 +70,9 @@
color: var(--secondary-text-color)
user-select: none

&:focus
display: inline

&.left
right: calc(50% - 10px)

Expand Down