summaryrefslogtreecommitdiffstats
path: root/src/scopes/_invisible-links.scss
blob: 0326bd2a1729850c7826872bd6f2b7b615dda4ec (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
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;

@include iro.props-namespace('invisible-links') {
    @include iro.props-store((
        --colors: (
            --key-focus: (
                --border: fn.global-color(--focus --fill),
                --shadow: fn.global-color(--focus --shadow),
            ),
        )
    ), 'colors');

    @include iro.bem-scope(iro.props-namespace()) {
        :link,
        :visited {
            margin:          -2px;
            border:          2px solid transparent;
            border-radius:   2px;
            color:           currentColor;
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }

            @include iro.bem-at-theme('keyboard') {
                &:focus {
                    border-color: fn.color(--key-focus --border);
                    box-shadow:   fn.color(--key-focus --shadow);
                }
            }
        }
    }
}