1 line
32 KiB
Plaintext
1 line
32 KiB
Plaintext
|
{"version":3,"sources":["webpack:///./packages/mdc-notched-outline/mdc-notched-outline.scss","webpack:///./packages/material-components-web/node_modules/@material/theme/_gss.scss","webpack:///mdc-notched-outline.scss","webpack:///./packages/material-components-web/node_modules/@material/rtl/_rtl.scss","webpack:///./packages/material-components-web/node_modules/@material/theme/_css.scss","webpack:///./packages/mdc-notched-outline/_variables.scss"],"names":[],"mappings":";;;;;;;AAsCE;EA0UE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EC7TA;EAAc;ED+Td;EACA;AE7WJ;ACkEM;EACE;EFtBJ;EAAc;EDoUZ;EG5SE;AD9DR;;AFoBI;EAII;EACA;EACA;EACA;EACA;AEpBR;AFwBI;ECMA;EAAc;EGmBd;EHnBA;EAAc;EGmBd;EJjBI,WKjCQ;AHUhB;AC0CM;EACE;EFtBJ;EAAc;EGmBd;EHnBA;EAAc;EGmBd;EDKI;ADnCR;;AFiBI;ECNA;EAAc;EGmBd;EHnBA;EAAc;EGmBd;EJLI;AEfR;ACsBM;EACE;EFtBJ;EAAc;EGmBd;EHnBA;EAAc;EGmBd;EDKI;ADfR;;AFSI;EAEI;EACA;EACA;AEPR;AFWI;EAEI;EACA;EACA;AEVR;AFcI;EAEI;AEbR;AFiBI;EAEI;AEhBR;;AFsBI;EChDA;EAAc;EGmBd;EHnBA;EAAc;EGmBd;EJiCI;AEhBR;ACfM;EACE;EFtBJ;EAAc;EGmBd;EHnBA;EAAc;EGmBd;EDKI;ADsBR;;AFYI;EAEI;AEVR,C","file":"mdc.notched-outline.css","sourcesContent":["//\n// Copyright 2018 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// stylelint-disable selector-class-pattern --\n// Selector '.mdc-*' should only be used in this project.\n\n@use 'sass:list';\n@use '@material/theme/custom-properties';\n@use '@material/theme/theme';\n@use '@material/shape/functions' as shape-functions;\n@use '@material/shape/mixins' as shape-mixins;\n@use '@material/floating-label/mixins' as floating-label-mixins;\n@use '@material/feature-targeting/feature-targeting';\n@use '@material/rtl/rtl';\n@use './variables';\n\n@mixin core-styles($query: feature-targeting.all()) {\n $feat-structure: feature-targeting.create-target($query, structure);\n\n .mdc-notched-outline {\n @include base_($query);\n\n &__leading,\n &__notch,\n &__trailing {\n @include feature-targeting.targets($feat-structure) {\n box-sizing: border-box;\n height: 100%;\n border-top: variables.$border-width solid;\n border-bottom: variables.$border-width solid;\n pointer-events: none;\n }\n }\n\n &__leading {\n @include feature-targeting.targets($feat-structure) {\n @include rtl.reflexive-property(\n border,\n variables.$border-width solid,\n none\n );\n\n width: variables.$leading-width;\n }\n }\n\n &__trailing {\n @include feature-targeting.targets($feat-structure) {\n @include rtl.reflexive-property(\n border,\n none,\n variables.$border-width solid\n );\n\n flex-grow: 1;\n }\n }\n\n &__notch {\n @include feature-targeting.targets($feat-structure) {\n flex: 0 0 auto;\n width: auto;\n max-width: calc(100% - #{variables.$leading-width} * 2);\n }\n }\n\n .mdc-floating-label {\n @include feature-targeting.targets($feat-structure) {\n display: inline-block;\
|