added blur to gallery entries when highlighted
This commit is contained in:
@@ -42,13 +42,16 @@
|
||||
margin: 0;
|
||||
padding: 8px;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.1s ease-out, border-color 0.1s ease-out;
|
||||
transition: background-color 0.1s ease-out,
|
||||
border-color 0.1s ease-out,
|
||||
backdrop-filter 0.2s ease-out;
|
||||
border: 2px dashed transparent;
|
||||
}
|
||||
|
||||
.row-entry:hover {
|
||||
background-color: var(--color-background-highlight);
|
||||
border-color: var(--color-highlight);
|
||||
backdrop-filter: blur(var(--blur-radius-background));
|
||||
}
|
||||
|
||||
.row-entry:hover .row-img {
|
||||
|
||||
@@ -90,7 +90,10 @@
|
||||
border-color: transparent;
|
||||
border-width: 2px;
|
||||
border-left: none;
|
||||
transition: border-color 0.1s ease-out, padding-right 0.1s ease-out, background-color 0.1s ease-out;
|
||||
transition: border-color 0.1s ease-out,
|
||||
padding-right 0.1s ease-out,
|
||||
background-color 0.1s ease-out,
|
||||
backdrop-filter 0.2s ease-out;
|
||||
}
|
||||
|
||||
.gallery-title, .gallery-subtitle {
|
||||
@@ -111,6 +114,7 @@
|
||||
.gallery-container:hover .gallery-text-container {
|
||||
border-color: var(--color-highlight);
|
||||
background-color: var(--color-background-highlight);
|
||||
backdrop-filter: blur(var(--blur-radius-background));
|
||||
}
|
||||
.gallery-container:hover .gallery-img, .gallery-container:hover .gallery-img-placeholder {
|
||||
/* filter: grayscale(0%); */
|
||||
|
||||
Reference in New Issue
Block a user