Skip to content

Commit

Permalink
style: hover opacity refinement
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Dec 4, 2023
1 parent 4b247ff commit 0f7b13c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
7 changes: 5 additions & 2 deletions static/style/inverted-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,13 @@
&::-webkit-scrollbar {
display: none;
}
#issues-container .issue-element-inner {
}
#issues-container:hover .issue-element-inner {
opacity: 0.75;
transition: 500ms opacity ease-in-out;
transition: 250ms opacity ease-out 1000ms ;
/* opacity: 0.75; */
}

#issues-container * {
-webkit-user-select: none;
-moz-user-select: none;
Expand Down
2 changes: 1 addition & 1 deletion static/style/special.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#issues-container > div {
background-color: #000410;
}
#issues-container > div:hover{
#issues-container > div:hover {
/* background-color: #000410; */
}
}
Expand Down
7 changes: 5 additions & 2 deletions static/style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,13 @@
&::-webkit-scrollbar {
display: none;
}
#issues-container .issue-element-inner {
transition: 125ms opacity ease-out 62.5ms ;
}
#issues-container:hover .issue-element-inner {
opacity: 0.75;
transition: 500ms opacity ease-in-out;
opacity: 0.5;
}

#issues-container * {
-webkit-user-select: none;
-moz-user-select: none;
Expand Down

0 comments on commit 0f7b13c

Please sign in to comment.