Add a blue transparency over selected photos.
This commit is contained in:
parent
a4458efc7a
commit
e5d0974306
1 changed files with 12 additions and 0 deletions
|
@ -80,6 +80,7 @@
|
|||
}
|
||||
.photo_card_list
|
||||
{
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template:
|
||||
"checkbox filename metadata" auto
|
||||
|
@ -196,3 +197,14 @@
|
|||
font-family: monospace;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.photo_card_selected::after
|
||||
{
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0; bottom: 0; left: 0; right: 0;
|
||||
pointer-events: none;
|
||||
border: 2px solid blue;
|
||||
background-color: rgba(0, 0, 255, 0.25);
|
||||
border-radius: inherit;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue