diff options
author | tdro <tdro@noreply.example.com> | 2022-10-20 04:36:53 -0400 |
---|---|---|
committer | tdro <tdro@noreply.example.com> | 2022-10-20 04:36:53 -0400 |
commit | 9059fd93c8b5e0b3e4be6c15dd4aa3078f9e0449 (patch) | |
tree | e47da8eb7c2d940c1d1834b212e4eb113133d9b2 | |
parent | 35fb3d8b24812db45670ffee078cd80f148c3402 (diff) | |
download | canory-9059fd93c8b5e0b3e4be6c15dd4aa3078f9e0449.tar.gz canory-9059fd93c8b5e0b3e4be6c15dd4aa3078f9e0449.tar.bz2 canory-9059fd93c8b5e0b3e4be6c15dd4aa3078f9e0449.zip |
assets/css/default: Show metadata on limited cards
-rw-r--r-- | assets/css/default.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/assets/css/default.css b/assets/css/default.css index 5a408cb..941922c 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -782,9 +782,8 @@ micro-tags { display: block; } -micro-card[limit] micro-thumbnail, -micro-card[limit] micro-content > :not(micro-overlay) { - opacity: 0.4; +micro-card[limit] micro-content > :not(micro-overlay):not(micro-metadata) { + opacity: 0.05; pointer-events: none; } @@ -803,6 +802,11 @@ micro-card[limit] micro-overlay { display: flex; align-items: center; justify-content: center; + pointer-events: none; +} + +micro-card[limit] micro-expand label { + pointer-events: all; } [data-kind="page"] micro-card[limit] micro-thumbnail, |