TP_JO2024/home/dist/component/skiplink/skiplink.main.min.css.map

1 line
26 KiB
Text
Raw Normal View History

2024-03-27 17:19:37 +01:00
{"version":3,"sources":["<no source>","file:///Users/ket/Documents/work/dsfr/src/component/skiplink/style/_module.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/typography/tool/_list.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%20H0nsyK%3E","file:///Users/ket/Documents/work/dsfr/src/core/style/selector/tool/_block.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/display/tool/_display.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/selector/tool/_pseudo.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/selector/tool/_nest.scss","file:///Users/ket/Documents/work/dsfr/src/component/link/style/tool/_size.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/icon/tool/_default.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,cCoBE,cAAA,CACA,cAAA,CACA,YAAA,CACA,YAAA,CACA,YAAA,CACA,aAAA,CACA,iBAAA,CCqBM,kBAAA,CAqCJ,6CAAA,CAAA,+CAAA,CAhDA,gDAAA,CF9BF,SAAA,CGsBE,cAfE,CCVJ,iBAAA,CAEE,KAAA,CJAF,2BKmBF,CLhBE,2BAGE,SAAA,CIRF,iBAAA,CJOE,uBKwBJ,CCrBE,oBCPE,YAAA,CAIA,qBF4BJ,CLrBI,uBGOE,kBEiBN,CG9BE,8BAGI,YHmCN,CI/CI,gCCKF,cAAA,CACA,kBAFc,CAsBd,SL0BF,CG3CE,6EG0BE,gBNoBJ,CLhCM,kCGDA,eEoCN,CLxBI,iCIjCF,iBAAA,CJmCI,uBKiCN,CO7DI;ECRI,cAAA,CRDR,COSI;ECRI,cAAA,CbFR,cG4BI,gBEAF,CLXE,uBGWA,cEiBF,CChCA,oBNkBI,kBAAA,CACA,cAAA,CGJF,cEsCF,CA9DF,COMI;ECRI,cAAA,CRKR,COGI;ECRI,cAAA,CRQR","file":"skiplink.main.min.css","sourcesContent":[null,"////\n/// Skiplinks Module\n/// @group skiplinks\n////\n\n#{ns(skiplinks)} {\n @include disable-list-style;\n @include absolute(0);\n @include padding(4v 0);\n @include padding(3v 0, md);\n transform: translateY(-100%);\n opacity: 0;\n\n &:focus-within {\n @include relative;\n transform: translateY(0);\n opacity: 1;\n }\n\n @include list {\n @include display-flex(column);\n\n > li {\n @include margin-bottom(4v);\n @include margin(0 2v, md);\n\n @include before(none);\n\n @include nest-link(md, null, null, null, true);\n\n &:last-child {\n @include margin-bottom(0);\n }\n }\n\n @include respond-from(md) {\n flex-direction: row;\n flex-wrap: wrap;\n @include margin(0 -4v);\n }\n\n &:focus-within {\n @include relative;\n transform: translateY(0);\n }\n }\n}\n","////\n/// Core Tool : Reset list\n/// @group core\n////\n\n@mixin enable-list-style() {\n $selector: null;\n\n @if & == null {\n $selector: ':root';\n }\n\n @include nest($selector) {\n --ul-type: disc;\n --ol-type: decimal;\n --ul-start: #{space(4v)};\n --ol-start: #{space(6v)};\n --xl-block: #{space(2v)};\n --li-bottom: #{space(1v)};\n --xl-base: 1em;\n --ol-content: counters(li-counter, \".\") \".\\00a0\\00a0\";\n }\n}\n\n@mixin disable-list-style() {\n --ul-type: none;\n --ol-type: none;\n --ul-start: 0;\n --ol-start: 0;\n --xl-block: 0;\n --li-bottom: 0;\n --ol-content: none;\n}\n\n@mixin enable-list-style-legacy($unify: false) {\n $ul: ul;\n $ol: ol;\n\n @if $unify {\n $ul: selector-associate('&', 'ul');\n $ol: selector-associate('&', 'ol');\n }\n\n @at-root {\n #{$ul} {\n list-style-type: disc;\n }\n\n #{$ol} {\n list-style-type: decimal;\n }\n\n #{$ul},\n #{$ol} {\n @include padding-left(4v);\n @include margin-y(2v);\n }\n }\n}\n\n@mixin disable-list-style-legacy($unify: false) {\n $ul: '#{&} ul';\n $ol: '#{&} ol';\n\n @if $unify {\n $ul: selector-associate('#{&}', 'ul');\n $ol: selector-associate('#{&}', 'ol');\n }\n\n @at-root {\n #{$ul} {\n list-style-type: none;\n }\n\n #{$ol} {\n list-style-type: none;\n }\n\n #{$ul},\n #{$ol} {\n @include padding-left(0);\n @include margin-y(0);\n }\n