From 693a75b8bc2b1517235e29580df7d5ebb5391f04 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 14 Aug 2023 11:49:34 +0300 Subject: [PATCH] basic button/action iconography... Signed-off-by: Alex A. Naanou --- css/grid-n-view.css | 14 +++++++++++++- grid-n-view.html | 20 ++++++++++---------- 2 files changed, 23 insertions(+), 11 deletions(-) diff --git a/css/grid-n-view.css b/css/grid-n-view.css index 9645ce8..f52e1b6 100644 --- a/css/grid-n-view.css +++ b/css/grid-n-view.css @@ -235,6 +235,7 @@ body { z-index: calc(var(--base-layer) + 1); + border: solid 1px var(--gallery-secondary-color); background: var(--gallery-background-color); } /* XXX need to hide parts of the toolbar and make it transparent... */ @@ -243,9 +244,20 @@ body { display: none; } -/* XXX */ +/* buttons... */ .gallery .toolbar button { + line-height: 1.5rem; + min-width; 1.5rem; + text-align: center; + + border: solid 1px transparent; + background: var(--gallery-background-color); } +.gallery .toolbar button:hover { + border-radius: calc(1.5rem / 5); + border: solid 1px var(--gallery-secondary-color); +} + diff --git a/grid-n-view.html b/grid-n-view.html index 8d853ec..3ab36c7 100644 --- a/grid-n-view.html +++ b/grid-n-view.html @@ -142,17 +142,17 @@ For more info see: README.md