diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-12-23 23:03:31 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-12-23 23:03:31 +0100 |
commit | e25b07e5987bd7a2b70b57e21b0eed6607f1b2d9 (patch) | |
tree | a667926419c496b0875213e5c3582a5af6dc2361 /public/style.css | |
parent | 20a102a047c85053db96c85b7bf2f760d7e90c6d (diff) | |
download | gallery-e25b07e5987bd7a2b70b57e21b0eed6607f1b2d9.tar.gz gallery-e25b07e5987bd7a2b70b57e21b0eed6607f1b2d9.tar.xz gallery-e25b07e5987bd7a2b70b57e21b0eed6607f1b2d9.zip |
Implement orphans
Diffstat (limited to 'public/style.css')
-rw-r--r-- | public/style.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/public/style.css b/public/style.css index 978e01b..0276e43 100644 --- a/public/style.css +++ b/public/style.css @@ -59,6 +59,7 @@ img.thumbnail { display: block; box-shadow: 0 0 3px rgba(0, 0, 0, 0.75); .similar .row { display: flex; margin: .5rem 0; } .similar .row ul { margin: 0; padding: 0 0 0 1.25em; list-style-type: "- "; } -.duplicates { padding: .5rem; flex-grow: 1; overflow: auto; } -.duplicates .row { display: flex; margin: .5rem 0; - align-items: center; gap: 3px; } +.duplicates, +.orphans { padding: .5rem; flex-grow: 1; overflow: auto; } +.duplicates .row, +.orphans .row { display: flex; margin: .5rem 0; align-items: center; gap: 3px; } |