summaryrefslogtreecommitdiffstats
path: root/src/objects/_button.scss
blob: 6f69ee8a6598c001ff0b586828aec569da4f3615 (plain) (blame)
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;

@mixin button-variant($variant) {
    border-color:     fn.color(--#{$variant} --bg);
    background-color: fn.color(--#{$variant} --bg);
    box-shadow:       fn.color(--#{$variant} --shadow);
    color:            fn.color(--#{$variant} --label);

    @include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
        &:hover {
            border-color:     fn.color(--#{$variant} --hover --bg);
            background-color: fn.color(--#{$variant} --hover --bg);
            box-shadow:       fn.color(--#{$variant} --hover --shadow);
            color:            fn.color(--#{$variant} --hover --label);
        }

        &:active {
            border-color:     fn.color(--#{$variant} --active --bg);
            background-color: fn.color(--#{$variant} --active --bg);
            box-shadow:       fn.color(--#{$variant} --active --shadow);
            color:            fn.color(--#{$variant} --active --label);
        }
    }

    @include iro.bem-modifier('outline') {
        background-color: transparent;
        box-shadow:       none;
        color:            fn.color(--#{$variant} --outline-label);
    }
}

@include iro.props-namespace('button') {
    @include iro.props-store((
        --dims: (
            --pad-x:    1.2rem,
            --pad-y:    .5rem,
            --rounding: 10em,
        ),
    ), 'dims');

    @include iro.props-store((
        --colors: (
            --any: (
                --disabled: (
                    --bg:     fn.global-color(--obj-hi),
                    --label:  fn.global-color(--fg-hi3),
                    --shadow: 0 0 0 0 transparent,
                ),
                --key-focus: (
                    --bg:     transparent,
                    --label:  fn.global-color(--accent --primary-lo2),
                    --border: fn.global-color(--focus --fill),
                    --shadow: fn.global-color(--focus --shadow),
                ),
            ),
            --accent: (
                --bg:            fn.global-color(--accent --primary),
                --label:         fn.global-color(--accent --primary-fg),
                --outline-label: fn.global-color(--accent --primary-lo),
                --shadow:        0 0 0 0 transparent,

                --hover: (
                    --bg:     fn.global-color(--accent --primary-lo),
                    --label:  fn.global-color(--accent --primary-fg),
                    --shadow: 0 0 0 0 transparent,
                ),
                --active: (
                    --bg:     fn.global-color(--accent --primary-lo2),
                    --label:  fn.global-color(--accent --primary-fg),
                    --shadow: 0 0 0 0 transparent,
                ),
            ),
            --primary: (
                --bg:            fn.global-color(--fg),
                --label:         fn.global-color(--bg-hi2),
                --outline-label: fn.global-color(--fg),
                --shadow:        0 0 0 0 transparent,

                --hover: (
                    --bg:     fn.global-color(--fg-lo),
                    --label:  fn.global-color(--bg-hi2),
                    --shadow: 0 0 0 0 transparent,
                ),
                --active: (
                    --bg:     fn.global-color(--fg-lo),
                    --label:  fn.global-color(--bg-hi2),
                    --shadow: 0 0 0 0 transparent,
                ),
            ),
            --secondary: (
                --bg:            fn.global-color(--obj-hi),
                --label:         fn.global-color(--fg),
                --outline-label: fn.global-color(--fg),
                --shadow:        0 0 0 0 transparent,

                --hover: (
                    --bg:     fn.global-color(--obj),
                    --label:  fn.global-color(--fg-lo),
                    --shadow: 0 0 0 0 transparent,
                ),
                --active: (
                    --bg:     fn.global-color(--obj-lo),
                    --label:  fn.global-color(--fg-lo),
                    --shadow: 0 0 0 0 transparent,
                ),
            ),
        ),
    ), 'colors');

    @include iro.bem-object(iro.props-namespace()) {
        display:         inline-block;
        padding:         fn.dim(--pad-y) fn.dim(--pad-x);
        border:          2px solid transparent;
        border-radius:   fn.dim(--rounding);
        font-weight:     500;
        line-height:     1;
        text-align:      center;
        text-decoration: none;
    
        @include iro.bem-modifier('block') {
            display: block;
        }
    
        @include iro.bem-modifier('native') {
            @include iro.bem-modifier('block') {
                box-sizing: border-box;
                width:      100%;
            }
        }
    
        @include button-variant('secondary');
    
        @each $mod in ('accent' 'primary') {
            @include iro.bem-modifier($mod) {
                @include button-variant($mod);
            }
        }

        @include iro.bem-at-theme('keyboard') {
            &:focus {
                border-color:     fn.color(--any --key-focus --border);
                background-color: fn.color(--any --key-focus --bg);
                box-shadow:       fn.color(--any --key-focus --shadow);
                color:            fn.color(--any --key-focus --label);
            }
        }
    
        @include iro.bem-is('disabled') {
            border-color:     fn.color(--any --disabled --bg);
            background-color: fn.color(--any --disabled --bg);
            box-shadow:       fn.color(--any --disabled --shadow);
            color:            fn.color(--any --disabled --label);
    
            @include iro.bem-multi('&:link, &:visited', 'modifier' 'native') {
                &:hover,
                &:active {
                    border-color:     fn.color(--any --disabled --bg);
                    background-color: fn.color(--any --disabled --bg);
                    box-shadow:       fn.color(--any --disabled --shadow);
                    color:            fn.color(--any --disabled --label);
                }
            }
    
            @include iro.bem-modifier('outline') {
                background-color: transparent;
                box-shadow:       none;
            }
        }
    }
}