1 line
33 KiB
Text
1 line
33 KiB
Text
|
{"version":3,"sources":["<no source>","file:///Users/ket/Documents/work/dsfr/src/component/notice/style/_module.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/typography/tool/_styles.scss","file:///Users/ket/Documents/work/dsfr/module/color/mixin/_element.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/spacing/tool/_space.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/spacing/tool/_position.scss","%3Cinput%20css%20POUMTy%3E","file:///Users/ket/Documents/work/dsfr/src/core/style/selector/tool/_pseudo.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/icon/tool/_default.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/spacing/tool/_size.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/display/tool/_mask-image.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/typography/tool/_font-weight.scss","file:///Users/ket/Documents/work/dsfr/src/component/link/style/tool/_size.scss","file:///Users/ket/Documents/work/dsfr/src/component/link/style/tool/_icon.scss","file:///Users/ket/Documents/work/dsfr/src/component/notice/style/_scheme.scss","file:///Users/ket/Documents/work/dsfr/module/media-query/mixin/_respond-from.scss","file:///Users/ket/Documents/work/dsfr/module/shame/media-query/mixin/_order.scss"],"names":[],"mappings":"AAAA;;GAAA,ACKA,WCoGI,iBAAA,CAAA,gBAAA,CChEA,gDAAA,CAAA,4BAAA,CCfE,mBARA,CAOA,gBAPA,CCVJ,iBCcF,CLXE,iBGsBE,gBAfE,CCVJ,iBCkBF,CCVE,wBC0BE,kBAAA,CAkBA,6BAAA,CAFA,oBAAA,CADA,aAAA,CCIE,uBAAA,CJ1CF,MAAA,CKRF,2BFmD2B,CElD3B,mBFkD2B,CHtD3B,iBAAA,CGmDE,kDAAA,CCDE,sBH7BN,CLRE,kBCKA,cAAA,CSPA,eAAA,CTUE,kBAAA,CGrBF,iBCuCF,CLpBE,0BWfA,iBAAA,CACA,kBAFc,CCkCZ,eANa,CAKb,cALa,CDtBb,eAFW,CC2BX,eAAA,CAKA,oBAPY,CRhCd,iBAAA,CAKE,OAAA,CAHA,WAAA,CQiCA,kBPmBJ,CC9CE,iCMkCI,gBAAA,CLUF,6BAAA,CDzCE,UCqD+B,CAdjC,oBAAA,CADA,aAAA,CCIE,uBAAA,CIVA,aAAA,CACA,kBAZU,CHlCd,yDF0CM,CEzCN,iDFyCM,CErCN,2BFmD2B,CElD3B,mBFkD2B,CAHzB,kDAAA,CCDE,sBHSN,CCnDE,yCAGI,UCqD+B,CElEnC,4DF0CM,CEzCN,oDJiFF,CQ5EI,iBXwCI,kBAAA,CAqCJ,6CAAA,CAAA,+CAAA,CAhDA,gDAAA,CAAA,8BG8DJ,CSxFI;ECRI,cAAA,CVDR,CSSI;ECRI,cAAA,CVER,CSMI;ECRI,cAAA,CVKR,CSGI;ECRI,cAAA,CVQR","file":"notice.main.min.css","sourcesContent":[null,"////\n/// Notice Module\n/// @group notice\n////\n\n#{ns(notice)} {\n @include relative();\n @include set-title-margin(0);\n @include set-text-margin(0);\n @include padding-y(4v);\n\n &__body {\n @include relative;\n @include padding(0 10v 0 10v);\n\n @include icon-size(md, before);\n @include icon-style(before) {\n @include absolute(null, null, null, 0);\n }\n }\n\n &__title {\n @include relative;\n @include text-style(md);\n @include font-weight(bold);\n }\n\n #{ns(btn--close)} {\n @include nest-btn(sm, only, close-line, null, false);\n @include absolute(-1v, 0);\n }\n\n &--info {\n #{ns(notice)}__body {\n @include icon-image(info-fill, before);\n @include icon-content;\n }\n }\n}\n","////\n/// Core Tool : Typography build\n/// @group core\n////\n\n@use 'module/spacing';\n\n@function get-text-style($font-size) {\n @return map-get($text-styles, $font-size);\n}\n\n@function get-title-style($font-size) {\n @return map-get($title-styles, $font-size);\n}\n\n@mixin _stylize($font-size, $styles, $prepend, $append) {\n $style: map-get($styles, $font-size);\n\n @if $prepend == null {\n $prepend: '';\n }\n\n @if $append == null {\n $append: '';\n }\n\n font-size: #{$prepend} spacing.space($font-size) #{$append};\n\n @if map-has-key($style, line-height) {\n line-height: #{$prepend} spacing.space(map-get($style, line-height)) #{$append};\n }\n}\n\n@mixin _responsive-styles($settings, $styles, $is-responsive, $prepend, $append) {\n $breakpoints: map-get($settings, breakpoints);\n\n @if map-has-key($settings, weight) {\n font-weight: #{$prepend} map-get($font-weight-scale, map-get($settings, weight)) #{$append};\n }\n\n @if $is-responsive {\n @each $breakpoint, $size in $breakpoints {\n @if $breakpoint == first {\n @include _stylize($size, $styles, $prepend, $append);\n }\n @else {\n
|