diff options
author | Volpeon <git@volpeon.ink> | 2024-06-22 19:30:00 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-06-22 19:30:00 +0200 |
commit | 6b0fcac695aa7a5517f6f53cec50da493acc4582 (patch) | |
tree | 05b1ec4bfd484c75f1ee82f06f674aba69ad1408 /src/.old/scopes | |
parent | WIP: Refactoring (diff) | |
download | iro-design-6b0fcac695aa7a5517f6f53cec50da493acc4582.tar.gz iro-design-6b0fcac695aa7a5517f6f53cec50da493acc4582.tar.bz2 iro-design-6b0fcac695aa7a5517f6f53cec50da493acc4582.zip |
Update
Diffstat (limited to 'src/.old/scopes')
-rw-r--r-- | src/.old/scopes/_blockquotes.scss | 35 | ||||
-rw-r--r-- | src/.old/scopes/_lists.scss | 67 |
2 files changed, 0 insertions, 102 deletions
diff --git a/src/.old/scopes/_blockquotes.scss b/src/.old/scopes/_blockquotes.scss deleted file mode 100644 index 5383bd7..0000000 --- a/src/.old/scopes/_blockquotes.scss +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | @use 'iro-sass/src/index' as iro; | ||
2 | @use '../functions' as fn; | ||
3 | |||
4 | @include iro.props-namespace('blockquotes') { | ||
5 | @include iro.props-store(( | ||
6 | --dims: ( | ||
7 | --indent: fn.global-dim(--list --indent), | ||
8 | --margin-top: fn.global-dim(--paragraph --margin-top), | ||
9 | |||
10 | --compact: ( | ||
11 | --indent: fn.global-dim(--list --compact-indent), | ||
12 | ), | ||
13 | ) | ||
14 | ), 'dims'); | ||
15 | |||
16 | @include iro.props-store(( | ||
17 | --colors: ( | ||
18 | --border: fn.global-color(--obj), | ||
19 | ) | ||
20 | ), 'colors'); | ||
21 | |||
22 | @include iro.bem-scope(iro.props-namespace()) { | ||
23 | blockquote { | ||
24 | margin: fn.dim(--margin-top) 0 0 1px; | ||
25 | padding-left: calc(fn.dim(--indent) - 3px); | ||
26 | border-left: 3px solid fn.color(--border); | ||
27 | } | ||
28 | |||
29 | @include iro.bem-modifier('compact') { | ||
30 | blockquote { | ||
31 | padding-left: calc(fn.dim(--compact --indent) - 3px); | ||
32 | } | ||
33 | } | ||
34 | } | ||
35 | } | ||
diff --git a/src/.old/scopes/_lists.scss b/src/.old/scopes/_lists.scss deleted file mode 100644 index 1322f2d..0000000 --- a/src/.old/scopes/_lists.scss +++ /dev/null | |||
@@ -1,67 +0,0 @@ | |||
1 | @use 'iro-sass/src/index' as iro; | ||
2 | @use '../functions' as fn; | ||
3 | |||
4 | @include iro.props-namespace('lists') { | ||
5 | @include iro.props-store(( | ||
6 | --dims: ( | ||
7 | --indent: calc(fn.global-dim(--list --indent) + 1em), | ||
8 | --margin-top: fn.global-dim(--paragraph --margin-top), | ||
9 | |||
10 | --compact: ( | ||
11 | --indent: fn.global-dim(--list --compact-indent), | ||
12 | ), | ||
13 | ) | ||
14 | ), 'dims'); | ||
15 | |||
16 | @include iro.props-store(( | ||
17 | --colors: ( | ||
18 | --border: fn.global-color(--obj-hi), | ||
19 | ) | ||
20 | ), 'colors'); | ||
21 | |||
22 | @include iro.bem-scope(iro.props-namespace()) { | ||
23 | ul, | ||
24 | ol { | ||
25 | margin-top: fn.dim(--margin-top); | ||
26 | padding-left: fn.dim(--indent); | ||
27 | |||
28 | ul, | ||
29 | ol { | ||
30 | margin-top: 0; | ||
31 | } | ||
32 | } | ||
33 | |||
34 | ul { | ||
35 | list-style: disc; | ||
36 | } | ||
37 | |||
38 | ol { | ||
39 | list-style: decimal; | ||
40 | } | ||
41 | |||
42 | dl { | ||
43 | margin: fn.dim(--margin-top) 0 0; | ||
44 | padding: 0; | ||
45 | } | ||
46 | |||
47 | dt { | ||
48 | color: fn.global-color(--fg-lo); | ||
49 | font-weight: bold; | ||
50 | } | ||
51 | |||
52 | dd { | ||
53 | margin: 0 0 0 fn.dim(--indent); | ||
54 | } | ||
55 | |||
56 | @include iro.bem-modifier('compact') { | ||
57 | ul, | ||
58 | ol { | ||
59 | padding-left: calc(fn.dim(--compact --indent) - 3px); | ||
60 | } | ||
61 | |||
62 | dd { | ||
63 | margin-left: calc(fn.dim(--compact --indent) - 3px); | ||
64 | } | ||
65 | } | ||
66 | } | ||
67 | } | ||