From e5d0974306d34c47e7383fc2de18a4078820d85f Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sat, 11 Jan 2020 16:33:30 -0800 Subject: [PATCH] Add a blue transparency over selected photos. --- frontends/etiquette_flask/static/css/photo_card.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/frontends/etiquette_flask/static/css/photo_card.css b/frontends/etiquette_flask/static/css/photo_card.css index fd0c99d..052526c 100644 --- a/frontends/etiquette_flask/static/css/photo_card.css +++ b/frontends/etiquette_flask/static/css/photo_card.css @@ -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; +}