Files
mina-sidor-fa-web/libs/styles/src/styles.scss
Daniel Appelgren 1de7624200 feature(automatisk utloggning): Använder nu den nya dialog-komponenten (TV-845)
Merge in TEA/mina-sidor-fa-web from feature/TV-845-ui-dialog-idle-timout-dialog-2 to develop

Squashed commit of the following:

commit 1d9d7463238cd145f18ad929d8f56fccdefb8ee5
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Mon Dec 27 15:21:25 2021 +0100

    fix

commit d7a0f584b200f9b9f7ea3a4b7ce9414201b7beb8
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Mon Dec 27 13:54:03 2021 +0100

    cleanup

commit 627871488dea552df998864e9bd766894c80da6f
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Mon Dec 27 13:52:15 2021 +0100

    cleanup

commit 8bd089a547a43fcaba86a0d187200406d35ebc87
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Mon Dec 27 12:18:34 2021 +0100

    wip

commit 42e4bf440e00321d6be717ce814d523393134e86
Merge: 06ee26cc 39b93839
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 17 14:30:43 2021 +0100

    Merge branch 'develop' into feature/TV-845-ui-dialog-2

commit 06ee26ccbe9d2fd5edfd12d7a292f42e3b747fb7
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Thu Dec 16 09:45:23 2021 +0100

    refactor

commit e2295202721b58fbd37341d3e02dae5a95cbb0c5
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 14:03:37 2021 +0100

    Update ui-dialog-ref.ts

commit c9507cd4579b4e542d0116f5e96b3a911c51600d
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 13:00:05 2021 +0100

    cleanup

commit 0e4ded553352414b5ca670897a51f127a5a289b1
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 12:48:25 2021 +0100

    cleanup

commit 0a48220c8bcd5704f7436f1c0c84ca25bac4c8e8
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 12:36:16 2021 +0100

    Dialog working

commit c4c1e9fb42d99df7ec6c058b7bea30662a03bb33
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 11:14:36 2021 +0100

    wip

commit 6668dfb154022b873b0a042087181cd0e6f8994d
Merge: 624b9439 9d96f0d9
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 10:47:27 2021 +0100

    Merge branch 'develop' into feature/TV-845-ui-dialog-2

commit 624b94399689bef07178f89c015745c90af1b288
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 10:47:19 2021 +0100

    wip

commit 0478638ab0d0f8f62ce8d10489f20e4930099936
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 09:58:49 2021 +0100

    wip

commit 12234c22062124165c2da10ff75cc887997172a8
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date:   Fri Dec 10 09:21:09 2021 +0100

    wip
2021-12-28 14:25:56 +01:00

93 lines
1.5 KiB
SCSS

@import '@digi/core/dist/digi/digi.css';
@import '~@angular/cdk/overlay-prebuilt.css';
@import 'mixins/a11y';
@import 'mixins/backdrop';
@import 'mixins/icon';
@import 'mixins/link';
@import 'variables/z-index';
* {
font-family: var(--digi--typography--font-family);
box-sizing: border-box;
::before,
::after {
box-sizing: border-box;
}
}
body {
margin: 0;
font-weight: var(--digi--typography--font-weight);
}
button {
font-family: var(--digi--typography--font-family);
cursor: pointer;
}
strong {
font-weight: var(--digi--typography--font-weight--semibold);
}
address {
font-style: normal;
}
dl {
dt {
font-weight: var(--digi--typography--font-weight--semibold);
}
dd {
margin-left: 0;
margin-bottom: 0.5rem;
}
}
// Make all digi icons display inline-flex to make them get the correct height.
[class^='sc-digi-icon'],
.digi-button__icon {
display: inline-flex;
}
// Removing margins from digi fieldset component.
.digi-form-fieldset {
margin: 0;
&__legend {
margin-bottom: var(--digi--layout--gutter--s);
padding: 0;
}
}
.msfa {
&__a11y-sr-only {
@include msfa__a11y-sr-only;
}
&__small-text {
font-size: 0.875em !important;
}
&__backdrop {
@include msfa__backdrop($msfa__z-index-default, false);
&--full-screen {
@include msfa__backdrop($msfa__z-index-backdrop);
}
}
&__digi-icon {
display: inline-flex;
}
&__link {
@include msfa__link(false, 'light');
&--ignore-visited:visited {
@include msfa__link(true, 'light');
}
}
}