1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;
@include iro.props-namespace('dialog') {
@include iro.props-store((
--dims: (
--pad-x: fn.global-dim(--size --300),
--pad-y: fn.global-dim(--size --300),
--width-sm: iro.fn-px-to-rem(500px),
--width-md: iro.fn-px-to-rem(800px),
--width-lg: iro.fn-px-to-rem(1100px),
--rounding: 3px,
--sidebar: (
--pad-x: fn.global-dim(--size --150),
--pad-y: fn.global-dim(--size --300),
)
),
), 'dims');
@include iro.props-store((
--dims: (
--pad-x: fn.global-dim(--size --300),
--pad-y: fn.global-dim(--size --300),
),
), 'md');
@include iro.props-store((
--colors: (
--shadow: 0 .2em .5em rgba(#000, .2),
--sidebar: (
--bg: fn.global-color(--bg),
--border: fn.global-color(--obj),
)
),
), 'colors');
@include iro.props-store((
--colors: (
--sidebar: (
--bg: fn.global-color(--bg-hi),
--border: fn.global-color(--bg-hi),
),
),
), 'colors-dark');
@include iro.bem-object(iro.props-namespace()) {
display: grid;
grid-template-rows: auto 1fr auto;
grid-template-columns: auto 1fr;
grid-template-areas:
'sidebar header'
'sidebar body'
'sidebar footer';
position: relative;
box-sizing: border-box;
width: 100%;
max-width: fn.dim(--width-md);
margin: 0 auto;
overflow: hidden;
border-radius: fn.dim(--rounding);
background-color: fn.global-color(--bg);
box-shadow: fn.color(--shadow);
color: fn.global-color(--fg);
@include iro.bem-modifier('sm') {
max-width: fn.dim(--width-sm);
}
@include iro.bem-modifier('lg') {
max-width: fn.dim(--width-lg);
}
@include iro.bem-elem('sidebar') {
grid-area: sidebar;
padding: fn.dim(--sidebar --pad-y) fn.dim(--sidebar --pad-x);
border-right: 1px solid fn.color(--sidebar --border);
background-color: fn.color(--sidebar --bg);
}
@include iro.bem-elem('header') {
grid-area: header;
margin: fn.dim(--pad-y) fn.dim(--pad-x) 0;
@include iro.bem-sibling-elem('body') {
&::before {
display: none;
}
}
}
@include iro.bem-elem('body') {
grid-area: body;
min-height: 0;
margin: fn.dim(--pad-y) fn.dim(--pad-x);
&::before {
content: '';
width: fn.global-dim(--size --500);
height: fn.global-dim(--size --500);
float: right;
}
}
@include iro.bem-elem('close-btn') {
position: absolute;
top: fn.global-dim(--size --150);
right: fn.global-dim(--size --150);
font-size: fn.global-dim(--font-size --150);
}
@include iro.bem-elem('footer') {
grid-area: footer;
justify-content: flex-end;
margin: 0 fn.dim(--pad-x) fn.dim(--pad-y);
}
@include iro.bem-elem('title') {
margin-top: 0;
}
}
}
|