summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-02-17 16:32:46 +0100
committerVolpeon <git@volpeon.ink>2022-02-17 16:32:46 +0100
commitc349ec9b07bea4b414e282e69d704f6b6312a19e (patch)
treec270f94eecd6815a0793e43a9e9f16267230f93a /src
parentFixed action menu border color (diff)
downloadiro-design-c349ec9b07bea4b414e282e69d704f6b6312a19e.tar.gz
iro-design-c349ec9b07bea4b414e282e69d704f6b6312a19e.tar.bz2
iro-design-c349ec9b07bea4b414e282e69d704f6b6312a19e.zip
Improved lightbox
Diffstat (limited to 'src')
-rw-r--r--src/objects/_backdrop.scss2
-rw-r--r--src/objects/_lightbox.scss77
2 files changed, 64 insertions, 15 deletions
diff --git a/src/objects/_backdrop.scss b/src/objects/_backdrop.scss
index 9ab140e..a0ec11e 100644
--- a/src/objects/_backdrop.scss
+++ b/src/objects/_backdrop.scss
@@ -18,7 +18,7 @@
18 18
19 @include iro.props-store(( 19 @include iro.props-store((
20 --colors: ( 20 --colors: (
21 --bg: rgba(#000, .75), 21 --bg: rgba(#000, .85),
22 ), 22 ),
23 ), 'colors-dark'); 23 ), 'colors-dark');
24 24
diff --git a/src/objects/_lightbox.scss b/src/objects/_lightbox.scss
index 3ba9744..59ae03f 100644
--- a/src/objects/_lightbox.scss
+++ b/src/objects/_lightbox.scss
@@ -4,32 +4,81 @@
4@include iro.props-namespace('lightbox') { 4@include iro.props-namespace('lightbox') {
5 @include iro.props-store(( 5 @include iro.props-store((
6 --dims: ( 6 --dims: (
7 7 --pad-x: fn.global-dim(--size --150),
8 --pad-y: fn.global-dim(--size --150),
9 --spacing: fn.global-dim(--size --200),
10 --thumbnail: (
11 --size: fn.global-dim(--size --800),
12 --spacing: fn.global-dim(--size --100),
13 --selected: 3px,
14 ),
8 ), 15 ),
9 ), 'dims'); 16 ), 'dims');
10 17
18 @include iro.props-store((
19 --colors: (
20 --thumbnail: (
21 --selected: fn.global-color(--fg-lo),
22 ),
23 ),
24 ), 'colors');
25
11 @include iro.bem-object(iro.props-namespace()) { 26 @include iro.bem-object(iro.props-namespace()) {
12 display: contents; 27 display: grid;
28 grid-template-rows: auto minmax(0, 1fr) auto;
29 grid-template-columns: minmax(0, 1fr) auto;
30 grid-template-areas: 'header close' 'content content' 'footer footer';
31 gap: fn.dim(--spacing);
32 min-height: 0;
33
34 @include iro.bem-elem('footer') {
35 grid-area: footer;
36 display: flex;
37 gap: fn.dim(--thumbnail --spacing);
38 padding: fn.dim(--thumbnail --selected);
39 overflow: auto;
40 }
13 41
14 @include iro.bem-elem('header') { 42 @include iro.bem-elem('header') {
15 display: flex; 43 grid-area: header;
16 box-sizing: border-box; 44 overflow: hidden;
17 flex: 0 0 auto; 45 text-overflow: ellipsis;
18 align-items: center; 46 white-space: nowrap;
19 width: 100%;
20 } 47 }
21 48
22 @include iro.bem-elem('img') { 49 @include iro.bem-elem('img') {
23 align-self: center; 50 grid-area: content;
24 max-width: 100%; 51 justify-self: center;
25 min-height: 0; 52 max-width: 100%;
26 max-height: 100%; 53 max-height: 100%;
27 margin-top: auto; 54 }
28 margin-bottom: auto; 55
56 @include iro.bem-elem('thumbnail') {
57 opacity: .75;
58
59 &:hover {
60 opacity: 1;
61 }
62
63 @include iro.bem-is('selected') {
64 opacity: 1;
65 box-shadow: 0 0 0 fn.dim(--thumbnail --selected) fn.color(--thumbnail --selected);
66 }
67 }
68
69 @include iro.bem-elem('thumbnail-img') {
70 display: block;
71 width: fn.dim(--thumbnail --size);
72 height: fn.dim(--thumbnail --size);
73 object-fit: cover;
74 object-position: center center;
29 } 75 }
30 76
31 @include iro.bem-elem('close-btn') { 77 @include iro.bem-elem('close-btn') {
32 margin-left: auto; 78 --icon-stroke-width: 2px;
79
80 grid-area: close;
81 font-size: fn.global-dim(--font-size --150);
33 } 82 }
34 } 83 }
35} 84}