UNPKG

3.66 kBSCSSView Raw
1//
2// Copyright 2019 Google Inc.
3//
4// Permission is hereby granted, free of charge, to any person obtaining a copy
5// of this software and associated documentation files (the "Software"), to deal
6// in the Software without restriction, including without limitation the rights
7// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8// copies of the Software, and to permit persons to whom the Software is
9// furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20// THE SOFTWARE.
21//
22
23// stylelint-disable selector-class-pattern --
24// Selector '.mdc-*' should only be used in this project.
25
26@use '@material/theme/theme';
27@use '@material/rtl/rtl';
28@use '@material/feature-targeting/feature-targeting';
29@use '@material/typography/typography';
30
31// Public mixins
32
33@mixin character-counter-core-styles($query: feature-targeting.all()) {
34 $feat-structure: feature-targeting.create-target($query, structure);
35
36 // postcss-bem-linter: define text-field-character-counter
37
38 .mdc-text-field-character-counter {
39 @include typography.typography(caption, $query: $query);
40 @include typography.text-baseline($top: 16px, $query: $query);
41
42 @include feature-targeting.targets($feat-structure) {
43 // Keep flex item align to trailing side on absence of helper text.
44 @include rtl.reflexive-box(margin, left, auto);
45 @include rtl.reflexive-box(padding, left, 16px);
46
47 white-space: nowrap;
48 }
49 }
50
51 // postcss-bem-linter: end
52}
53
54///
55/// Customizes the color of the character counter associated with an enabled text field.
56/// @param {Color} $color - The desired character counter color.
57///
58@mixin character-counter-color($color, $query: feature-targeting.all()) {
59 &:not(.mdc-text-field--disabled) {
60 @include character-counter-color_($color, $query);
61 }
62}
63
64///
65/// Customizes the color of the character counter associated with a disabled text field.
66/// @param {Color} $color - The desired character counter color.
67///
68@mixin disabled-character-counter-color(
69 $color,
70 $query: feature-targeting.all()
71) {
72 &.mdc-text-field--disabled {
73 @include character-counter-color_($color, $query);
74 }
75}
76
77@mixin character-counter-position(
78 $xOffset,
79 $yOffset,
80 $query: feature-targeting.all()
81) {
82 $feat-structure: feature-targeting.create-target($query, structure);
83
84 .mdc-text-field-character-counter {
85 @include feature-targeting.targets($feat-structure) {
86 @include rtl.reflexive-position(right, $xOffset);
87 position: absolute;
88 bottom: $yOffset;
89 }
90 }
91}
92
93// Private mixins
94
95@mixin character-counter-color_($color, $query: feature-targeting.all()) {
96 $feat-color: feature-targeting.create-target($query, color);
97
98 // Character counter is placed inside mdc-textfield element (for textarea variant) or
99 // inside helper line which is sibling to mdc-textfield.
100 .mdc-text-field-character-counter,
101 + .mdc-text-field-helper-line .mdc-text-field-character-counter {
102 @include feature-targeting.targets($feat-color) {
103 @include theme.property(color, $color);
104 }
105 }
106}