Outlook_Addin_LLM/node_modules/@material/theme/dist/mdc.theme.min.css.map

1 line
17 KiB
Plaintext
Raw Normal View History

{"version":3,"sources":["webpack:///./packages/mdc-theme/mdc-theme.scss","webpack:///./packages/mdc-theme/_css.scss"],"names":[],"mappings":";;;;;;;AAoCE,MC0CE,ojCD9BE,oBCkBA,0BAYF,mDD9BE,sBCkBA,0BAYF,qDDxBE,uBCYA,sBAYF,mDDxBE,oBCYA,sBAYF,gDD9BE,kBCkBA,0BAYF,iDD9BE,uBCkBA,uBAYF,mDD9BE,yBCkBA,uBAYF,qDD9BE,uBCkBA,uBAYF,mDD9BE,qBCkBA,uBAYF,iDD9BE,uCCkBA,sCAYF,kFD9BE,yCCkBA,sCAYF,oFD9BE,oCCkBA,sCAYF,+ED9BE,wCCkBA,sCAYF,mFD9BE,oCCkBA,sCAYF,+ED9BE,kCCkBA,sCAYF,6ED9BE,oCCkBA,sCAYF,+ED9BE,+BCkBA,sCAYF,0ED9BE,mCCkBA,sCAYF,8ED9BE,+BCkBA,sCAYF,0ED9BE,iCCkBA,wBAYF,8DD9BE,mCCkBA,2CAYF,mFD9BE,8BCkBA,2CAYF,8ED9BE,kCCkBA,2CAYF,kFD9BE,8BCkBA,2CAYF,8EDdA,uBCEE,qCAYF,8DDdA,yBCEE,qCAYF,gE","file":"mdc.theme.min.css","sourcesContent":["//\n// Copyright 2017 Google Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n//\n\n@use 'sass:list';\n@use 'sass:map';\n@use 'sass:meta';\n@use '@material/feature-targeting/feature-targeting';\n@use './css';\n@use './custom-properties';\n@use './gss';\n@use './keys';\n@use './replace';\n@use './theme-color';\n\n@mixin core-styles($query: feature-targeting.all()) {\n $feat-color: feature-targeting.create-target($query, color);\n\n :root {\n @include feature-targeting.targets($feat-color) {\n @each $style in theme-color.get-theme-keys() {\n @include custom-properties.declaration(\n keys.create-custom-property($style)\n );\n }\n }\n }\n\n @each $style in theme-color.get-theme-keys() {\n @if $style != 'background' and $style != 'surface' {\n .mdc-theme--#{$style} {\n @include feature-targeting.targets($feat-color) {\n @include property(color, $style, $important: true);\n }\n }\n } @else {\n .mdc-theme--#{$style} {\n @include feature-targeting.targets($feat-color) {\n @include property(background-color, $style);\n }\n }\n }\n }\n\n // CSS rules for using primary and secondary (plus light/dark variants) as background colors.\n @each $style in ('primary', 'secondary') {\n .mdc-theme--#{$style}-bg {\n @include feature-targeting.targets($feat-color) {\n @include property(background-color, $style, $important: true);\n }\n }\n }\n}\n\n/// Applies a dynamic value to the specified property. This mixin should be used\n/// in theme style mixins when setting properties.\n///\n/// The value may be any of the following:\n/// - a standard CSS value\n/// - a custom property Map, e.g. (varname: --mdc-foo, fallback: blue)\n/// - a Material theme key String, e.g. 'primary', 'on-primary'\n///\n/// @example\n/// @include theme.property(color, teal);\n/// @include theme.property(color, custom-properties.create(foo, blue));\n/// @include theme.property(color, primary);\n///\n/// A `$replace` Map parameter may be provided to replace key/value pairs for\n/// string values. This can be used to substitute parameters in complex string\n/// values such as `calc()` with custom properties.\n///\n/// @example\n/// @include theme.property(\n/// width,\n///