TP_JO2024/home/dist/utility/icons/icons-others/icons-others.min.css.map

1 line
14 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/core/style/selector/tool/_pseudo.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/display/tool/_mask-image.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/icon/tool/_default.scss","%3Cinput%20css%20p8AJiv%3E","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","file:///Users/ket/Documents/work/dsfr/module/legacy/mixin/_legacy.scss","file:///Users/ket/Documents/work/dsfr/src/core/style/icon/tool/_legacy.scss"],"names":[],"mappings":"AAAA;;GAAA,ACgBE,mDCVA,2DC0CM,CDzCN,mDEYF,CHHE,mDCVA,2DC0CM,CDzCN,mDEiBF,CHRE,6DCVA,gEC0CM,CDzCN,wDEsBF,CHbE,6DCVA,gEC0CM,CDzCN,wDE2BF,CHlBE,qDCVA,4DC0CM,CDzCN,oDEgCF,CHvBE,qDCVA,4DC0CM,CDzCN,oDEqCF,CH5BE,yDCVA,8DC0CM,CDzCN,sDE0CF,CHjCE,yDCVA,8DC0CM,CDzCN,sDE+CF,CHtCE,2DCVA,+DC0CM,CDzCN,uDEoDF,CH3CE,2DCVA,+DC0CM,CDzCN,uDEyDF,CHhDE,2DCVA,+DC0CM,CDzCN,uDE8DF,CHrDE,2DCVA,+DC0CM,CDzCN,uDEmEF,CH1DE,2DCVA,+DC0CM,CDzCN,uDEwEF,CH/DE,2DCVA,+DC0CM,CDzCN,uDE6EF,CCrEI;ECRI,cAAA;EAAA,cAAA,CFDR,CCSI;ECRI,cAAA;EAAA,cAAA,CFER,CCMI;ECRI,cAAA;EAAA,cAAA,CFKR,CCGI;ECRI,cAAA;EAAA,cAAA,CFQR,CGNI,2DNOF,mDOAE,yDJqFF,CHrFA,mDOAE,yDJwFF,CHxFA,6DOAE,8DJ2FF,CH3FA,6DOAE,8DJ8FF,CH9FA,qDOAE,0DJiGF,CHjGA,qDOAE,0DJoGF,CHpGA,yDOAE,4DJuGF,CHvGA,yDOAE,4DJ0GF,CH1GA,2DOAE,6DJ6GF,CH7GA,2DOAE,6DJgHF,CHhHA,2DOAE,6DJmHF,CHnHA,2DOAE,6DJsHF,CHtHA,2DOAE,6DJyHF,CHzHA,2DOAE,6DJ4HF,CACF","file":"icons-others.min.css","sourcesContent":[null,"////\n/// Core Tool : Selector pseudo\n/// @group core\n////\n\n@mixin _pseudo($type:before, $content:null, $display:null) {\n @if $type != after and $type != before and $type != marker and $type != (before after) {\n @error '$type must be before or after element';\n }\n\n $selector: ();\n\n @each $pseudo in $type {\n $selector: append($selector, '&::#{$pseudo}', 'comma');\n }\n\n #{$selector} {\n\n @if $content != null {\n content: $content;\n }\n\n @if $display != null {\n display: #{$display};\n }\n\n @content;\n }\n}\n\n@mixin before($content: null, $display: null) {\n @include _pseudo(before, $content, $display) {\n @content;\n }\n}\n\n@mixin after($content: null, $display: null) {\n @include _pseudo(after, $content, $display) {\n @content;\n }\n}\n\n@mixin marker($content: null, $display: null) {\n @include _pseudo(marker, $content, $display) {\n @content;\n }\n}\n","////\n/// Core Tool : mask-image\n/// @group core\n////\n\n@mixin mask-image($value) {\n -webkit-mask-image: $value;\n mask-image: $value;\n}\n\n@mixin mask-image-size($value) {\n -webkit-mask-size: $value;\n mask-size: $value;\n}\n\n@mixin mask-image-position($value) {\n -webkit-mask-position: $value;\n mask-position: $value;\n}\n\n@mixin mask-image-repeat($value) {\n -webkit-mask-repeat: $value;\n mask-repeat: $value;\n}\n","////\n/// Core Tool : Icon default\n/// @group core\n////\n\n@use 'module/path';\n@use 'module/spacing';\n@use 'module/specificity';\n\n/// Return icon size from map\n/// @param {String} $size ['md'] - Icon size from `$icon-size-map` (Default to 'md' = 16px)\n///\n/// @example scss - Set icon size to `SM` (12px)\n/// .foo {\n/// width: icon-size(sm);\n/// height: icon-size(sm);\n/// }\n@function icon-size($size: md) {\n @return spacing.space(map-get($icon-size-map, $size));\n}\n\n@function get-icon-url($icon, $important: false) {\n $config: map-get($icons-config, $icon);\n $url: url('#{path.dist()}#{map-get($config, path)}');\n @return specificity.important($url, $important);\n}\n\n@function get-icon-pseudo($restrain) {\n @if $restrain == before or $restrain == after {\n @return $restrain;\n }\n @return before after;\n}\n\n@mixin _icon-pseudo ($restrain: null) {\n @include _pseudo(get-icon-pseudo($restrain)) {\n @content;\n }\n}\n\n@mixin icon-size ($size:md, $restrain: null) {\n @include _icon-pseudo($restrain) {\n --icon-size: #{icon-size($size)};\n @content;\n }\n}\n\n@mixin icon-image ($icon, $restr