TP_JO2024/home/dist/component/tab/tab.print.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/component/tab/print.scss","file:///Users/ket/Documents/work/dsfr/src/component/tab/style/_scheme.scss","file:///Users/ket/Documents/work/dsfr/module/color/mixin/_element.scss","%3Cinput%20css%20bAJaVG%3E","file:///Users/ket/Documents/work/dsfr/src/core/style/selector/tool/_pseudo.scss","file:///Users/ket/Documents/work/dsfr/module/disabled/mixin/_selector.scss"],"names":[],"mappings":"AAAA;;GAAA,ACKA,aCIE,SCgCE,gCCnCF,CCUA,gBFyBE,0EChCF,CFUE,cCsBA,gJAAA,CAAA,yBC5BF,CFUI,wCCkBF,wBAAA,CAAA,aCxBF,CFWI,iDCaF,qBAAA,CAAA,sJAAA,CAAA,aCnBF,CEHS,uBHsBP,wBAAA,CAAA,aCfF,CACF","file":"tab.print.min.css","sourcesContent":[null,"////\n/// Tab Print\n/// @group tab\n////\n\n@media print {\n @import 'index';\n @import 'style/scheme';\n\n @include _tab-scheme('print');\n}\n","////\n/// Tab Scheme\n/// @group tab\n////\n\n@use 'module/color';\n@use 'module/disabled';\n\n@mixin _tab-scheme($legacy: false) {\n #{ns(tabs)} {\n @include color.box-shadow(default grey, (legacy: $legacy), bottom-1-in);\n\n @include before {\n @include color.box-shadow(default grey, (legacy: $legacy), top-1-in left-1-in right-1-in);\n }\n\n /**\n * Tab button\n */\n &__tab {\n @include color.background-image((border default grey) (border default grey) (border default grey) (border default grey), (legacy: $legacy));\n @include color.box-shadow(background default grey, (legacy: $legacy), bottom-2-out);\n\n &:not([aria-selected=true]) {\n @include color.background(action-low blue-france, (legacy: $legacy));\n @include color.text(action-high grey, (legacy: $legacy));\n }\n\n &[aria-selected=true]:not(:disabled) {\n @include color.background-image((border active blue-france) (border default grey) (border default grey) (border default grey), (legacy: $legacy));\n @include color.background(default grey, (legacy: $legacy));\n @include color.text(active blue-france, (legacy: $legacy));\n }\n\n @include disabled.selector((), (legacy: $legacy, text: true, background: true));\n }\n }\n}\n","@use 'sass:list';\n@use 'sass:map';\n@use 'module/legacy';\n@use 'module/media-query';\n@use 'module/spacing';\n@use 'module/specificity';\n@use 'module/string';\n@use 'module/utilities';\n@use '../variable/constant';\n@use '../function/box-shadow' as bs;\n@use '../function/colors';\n@use '../function/result';\n@use '../function/token';\n\n$COLOR: constant.$value;\n\n@mixin element($prop, $context, $tokens, $options: (), $value: $COLOR) {\n $legacy: map.get($options, legacy);\n $important: map.get($options, important);\n $hover: map.get($options, hover);\n $standalone: map.get($options, standalone);\n\n $legacy-target: null;\n @if $legacy == true {\n $legacy-target: ie11;\n }\n\n $tokens: token.normalise($tokens, $context);\n $type: decision;\n $options: (var: true);\n\n @if $legacy or $standalone {\n $type: hex;\n $option: (theme: light);\n }\n\n $colors: colors.from-list($tokens, $type, $options);\n $result: result.get($colors, $value);\n $result: specificity.important($result, $important);\n\n @include legacy.is($legacy-target) {\n #{$prop}: #{string.unstringify($result)};\n }\n\n @if ($hover == true or ($hover == inherit and $legacy == false)) and ($context == background and list.length($tokens) == 1) {\n\n $token: nth($tokens, 1);\n @if $legacy or $standalone {\n @include _apply-pseudos($token, false, true, $legacy-target, $prop, $value, $important);\n }\n @else {\n @if $prop == background-color {\n --idle: transparent; // #{$result};\n @include _apply-pseudos($token, true, false, null, $prop, $value, $important);\n }\n @else {\n @include _apply-pseudos($token, true, true, null, $prop, $value, $important);\n }\n }\n }\n}\n\n@mixin _apply-pseudos($token, $decision: true, $pseudo: false, $target: null, $prop: background-color, $value: constant.$value, $important: false) {\n @include legacy.is($target) {\n @in