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

1 line
37 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/connect/style/module/_default.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/action/tool/_link.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/action/tool/_hover.scss","file:///Users/ket/Documents/work/dsfr/module/color/mixin/_element.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/display/tool/_display.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%209NTlnt%3E","file:///Users/ket/Documents/work/dsfr/src/core/style/selector/tool/_pseudo.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/spacing/tool/_size.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/spacing/tool/_z-index.scss","file:///Users/ket/Documents/work/dsfr/src/component/connect/style/module/_plus.scss","file:///Users/ket/Documents/work/dsfr/src/component/connect/style/module/_group.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/typography/tool/_styles.scss","file:///Users/ket/Documents/work/dsfr/module/disabled/mixin/_selector.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,ACOA,YC0BE,oBAAA,CCwBE,yBAAA,CAOA,2BAAA,CDWF,4BAAA,CEvBM,kBAAA,CAqCJ,uDAAA,CAAA,yDAAA,CCtEA,sBAAA,CDsBA,0DAAA,CAAA,sCAAA,CCjCA,mBAAA,CAOA,qBAAA,CAQA,sBAAA,CCME,oBAXA,CAeF,+BAfE,CCVJ,iBCoBF,CLUE,kBACE,kCKRJ,CLWE,mBACE,mCKTJ,CClBE,mBRGE,20JAAA,CAEA,2BAAA,CADA,2BAAA,CAEA,yBAAA,CMNA,YAAA,CEGE,URHY,CQOZ,aAAA,CCsCA,UAAA,CH1CF,UAAA,CDUE,iBAXA,CCVJ,iBAAA,CAEE,OAAA,CGgDE,WFTN,CPtBE,sCAEE,aAAA,CAEA,kBAAA,CUfF,SHsCF,CPpBE,mBACE,kBOsBJ,CPnBE,mBAEE,iBAAA,CADA,eOsBJ,CIrDE,kBNqBI,iBEoCN,CCjDE,wBFAE,QAAA,CEGE,WGRc,CHYd,aAAA,CGVA,aAAA,CACA,eAAA,CACA,aAAA,CLPJ,iBAAA,CAKE,WAAA,CKGE,4BJ4DN,CKvEA,kBCoGI,yBNzBJ,CKxEE,oBTiCE,8BAAA,CUfF,gBAAA,CAGE,mBNuDJ,CKxEE,kCT6BE,yCAAA,CUfF,iBAAA,CAGE,kBN2DJ,COrEW,8CXiCH,kBAAA,CAqCJ,6CAAA,CAAA,+CAAA,CAhDA,gDAAA,CAAA,+BI8DJ,CQxFI;ECRI,cAAA,CTDR,CQSI;ECRI,cAAA,CTER,CQMI;ECRI,cAAA,CTKR,CQGI;ECRI,cAAA,CTQR","file":"connect.main.min.css","sourcesContent":[null,"////\n/// Connect Module : default\n/// @group connect\n////\n\n@use 'module/spacing';\n\n#{ns(connect)} {\n @include relative;\n @include padding(0.625em 0.75em 0.625em 4em);\n @include display-flex(column, flex-start, center, null, true);\n @include margin-bottom(3v);\n @include disable-underline;\n @include enable-tint;\n @include hover-tint;\n\n @include before('', block) {\n @include absolute(50%, null, 0.25em, 0.75em, 2.5em, 3em);\n @include margin-top(-1.5em);\n background-image: url(svg-encode($fc-logo-svg, true));\n background-repeat: no-repeat;\n background-position: 50% 50%;\n background-size: 2.5em 3em;\n }\n\n @include disable-external();\n\n &__login,\n &__brand {\n line-height: 1;\n @include z-index(over);\n white-space: nowrap;\n }\n\n &__login {\n font-size: map-get($login-size, default);\n }\n\n &__brand {\n font-weight: bold;\n font-size: map-get($brand-size, default);\n }\n}\n","////\n/// Core Tool : Reset\n/// @group core\n////\n\n$underline-thickness: 0.0625em;\n\n@mixin a-reset ($minimal: false) {\n text-decoration: var(--text-decoration);\n @if not $minimal {\n color: inherit;\n }\n}\n\n@mixin init-underline() {\n --underline-max-width: 100%;\n --underline-hover-width: 0;\n --underline-idle-width: var(--underline-max-width);\n --underline-x: calc(var(--underline-max-width) * 0);\n --underline-thickness: #{$underline-thickness};\n}\n\n@mixin enable-underline() {\n --underline-img: linear-gradient(0deg, currentColor, currentColor);\n}\n\n@mixin enable-underline-legacy() {\n [href] {\n text-decoration: underline;\n }\n}\n\n@mixin disable-underline() {\n --underline-img: none;\n}\n\n@mixin disable-underline-legacy() {\n [href] {\n text-decoration: none;\n }\n}\n\n@mixin link-un