blob: fb664b4264a849e0763ece55ab261d3c019b24fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
@use "sass:meta";
@use "pkg:iro-sass/bem";
@use "pkg:iro-sass/props";
@use "../props" as *;
@forward "field-label.vars";
@use "field-label.vars" as vars;
@mixin styles {
@include materialize-at-root(meta.module-variables("vars"));
@include bem.object("field-label") {
@include bem.elem("label") {
display: block;
flex: 0 0 auto;
padding-inline-end: props.get(vars.$spacing-i);
font-size: props.get(vars.$label-font-size);
font-weight: 400;
line-height: 1.3;
color: props.get(vars.$label-color);
@include bem.next-elem("content") {
margin-block-start: props.get(vars.$spacing-b);
}
}
@include bem.elem("content") {
display: block;
flex: 1 1 auto;
}
@include bem.elem("hint") {
display: block;
margin-block-start: props.get(vars.$spacing-b);
font-size: props.get(vars.$hint-font-size);
color: props.get(vars.$hint-color);
}
@include bem.is("invalid") {
@include bem.elem("hint") {
color: props.get(vars.$error-hint-color);
}
}
@include bem.is("disabled") {
@include bem.elem("label", "hint") {
color: props.get(vars.$disabled-color);
}
}
@include bem.modifier("align-start", "align-end") {
display: flex;
align-items: baseline;
@include bem.elem("label") {
display: inline-block;
@include bem.next-elem("content") {
margin-block-start: 0;
}
}
}
@include bem.modifier("align-start") {
@include bem.elem("label") {
text-align: start;
}
}
@include bem.modifier("align-end") {
@include bem.elem("label") {
text-align: end;
}
}
}
}
|