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

1 line
25 KiB
Plaintext
Raw Permalink Normal View History

{"version":3,"sources":["webpack:///./packages/mdc-theme/mdc-theme.scss","webpack:///./packages/mdc-theme/_css.scss","webpack:///mdc-theme.scss","webpack:///./packages/mdc-theme/_gss.scss"],"names":[],"mappings":";;;;;;;AAoCE;EC0CE;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;ACrDJ;;AFuBM;ECkBA;EEZF;EFwBA;AC/CJ;;AFiBM;ECkBA;EEZF;EFwBA;ACzCJ;;AFiBM;ECYA;EEZF;EFwBA;ACnCJ;;AFWM;ECYA;EEZF;EFwBA;AC7BJ;;AFDM;ECkBA;EEZF;EFwBA;ACvBJ;;AFPM;ECkBA;EEZF;EFwBA;ACjBJ;;AFbM;ECkBA;EEZF;EFwBA;ACXJ;;AFnBM;ECkBA;EEZF;EFwBA;ACLJ;;AFzBM;ECkBA;EEZF;EFwBA;ACCJ;;AF/BM;ECkBA;EEZF;EFwBA;ACOJ;;AFrCM;ECkBA;EEZF;EFwBA;ACaJ;;AF3CM;ECkBA;EEZF;EFwBA;ACmBJ;;AFjDM;ECkBA;EEZF;EFwBA;ACyBJ;;AFvDM;ECkBA;EEZF;EFwBA;AC+BJ;;AF7DM;ECkBA;EEZF;EFwBA;ACqCJ;;AFnEM;ECkBA;EEZF;EFwBA;AC2CJ;;AFzEM;ECkBA;EEZF;EFwBA;ACiDJ;;AF/EM;ECkBA;EEZF;EFwBA;ACuDJ;;AFrFM;ECkBA;EEZF;EFwBA;AC6DJ;;AF3FM;ECkBA;EEZF;EFwBA;ACmEJ;;AFjGM;ECkBA;EEZF;EFwBA;ACyEJ;;AFvGM;ECkBA;EEZF;EFwBA;AC+EJ;;AF7GM;ECkBA;EEZF;EFwBA;ACqFJ;;AFnHM;ECkBA;EEZF;EFwBA;AC2FJ;;AFzGI;ECEE;EEZF;EFwBA;ACiGJ;;AF/GI;ECEE;EEZF;EFwBA;ACuGJ,C","file":"mdc.theme.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 th