Add a blue transparency over selected photos.

This commit is contained in:
voussoir 2020-01-11 16:33:30 -08:00
parent a4458efc7a
commit e5d0974306

View file

@ -80,6 +80,7 @@
} }
.photo_card_list .photo_card_list
{ {
position: relative;
display: grid; display: grid;
grid-template: grid-template:
"checkbox filename metadata" auto "checkbox filename metadata" auto
@ -196,3 +197,14 @@
font-family: monospace; font-family: monospace;
font-size: 11px; 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;
}