File tree Expand file tree Collapse file tree 6 files changed +4
-43
lines changed
src/material-experimental/mdc-form-field Expand file tree Collapse file tree 6 files changed +4
-43
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ sass_library(
81
81
sass_library (
82
82
name = "form_field_partials" ,
83
83
srcs = [
84
- "_form-field-bottom-line.scss" ,
85
84
"_form-field-focus-overlay.scss" ,
86
85
"_form-field-sizing.scss" ,
87
86
"_form-field-subscript.scss" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
@import ' @material/textfield/mixins.import' ;
5
5
@import ' ../mdc-helpers/mdc-helpers' ;
6
6
@import ' form-field-subscript' ;
7
- @import ' form-field-bottom-line' ;
8
7
@import ' form-field-focus-overlay' ;
9
8
@import ' mdc-text-field-theme-variable-refresh' ;
10
9
40
39
@include mdc-notched-outline-core-styles ($query : $mat-base-styles-query );
41
40
@include mdc-line-ripple-core-styles ($query : $mat-theme-styles-query );
42
41
@include _mat-form-field-subscript-theme ();
43
- @include _mat-form-field-bottom-line-theme ();
44
42
@include _mat-form-field-focus-overlay-theme ();
45
43
46
44
.mat-mdc-form-field.mat-accent {
Original file line number Diff line number Diff line change 10
10
@mixin _mdc-text-field-refresh-theme-variables () {
11
11
$_mdc-text-field-disabled-border-border : $mdc-text-field-disabled-border-border ;
12
12
$mdc-text-field-disabled-border : rgba (theme-variables .prop-value (on-surface ), 0.06 ) !global;
13
+ $_mdc-text-field-bottom-line-hover : $mdc-text-field-bottom-line-hover ;
14
+ $mdc-text-field-bottom-line-hover : rgba (theme-variables .prop-value (on-surface ), 0.87 ) !global;
13
15
$_mdc-text-field-bottom-line-idle : $mdc-text-field-bottom-line-idle ;
14
16
$mdc-text-field-bottom-line-idle : rgba (theme-variables .prop-value (on-surface ), 0.42 ) !global;
15
17
$_mdc-text-field-label : $mdc-text-field-label ;
46
48
47
49
// Reset all variables to ensure that this mixin does not cause unexpected side effects.
48
50
$mdc-text-field-disabled-border-border : $_mdc-text-field-disabled-border-border !global;
51
+ $mdc-text-field-bottom-line-hover : $_mdc-text-field-bottom-line-hover !global;
49
52
$mdc-text-field-bottom-line-idle : $_mdc-text-field-bottom-line-idle !global;
50
53
$mdc-text-field-label : $_mdc-text-field-label !global;
51
54
$mdc-text-field-ink-color : $_mdc-text-field-ink-color !global;
Original file line number Diff line number Diff line change 53
53
</ div >
54
54
55
55
< div matFormFieldLineRipple *ngIf ="!_hasOutline() "> </ div >
56
- < div class ="mat-mdc-form-field-bottom-line " *ngIf ="!_hasOutline() "> </ div >
57
56
</ div >
58
57
59
58
< div class ="mat-mdc-form-field-subscript-wrapper "
Original file line number Diff line number Diff line change 2
2
3
3
@import ' form-field-sizing' ;
4
4
@import ' form-field-subscript' ;
5
- @import ' form-field-bottom-line' ;
6
5
@import ' form-field-focus-overlay' ;
7
6
@import ' mdc-text-field-textarea-overrides' ;
8
7
@import ' mdc-text-field-structure-overrides' ;
17
16
@include _mat-mdc-text-field-textarea-overrides ();
18
17
@include _mat-mdc-text-field-structure-overrides ();
19
18
20
- // Include the subscript, bottom-line and focus-overlay styles.
19
+ // Include the subscript and focus-overlay styles.
21
20
@include _mat-form-field-subscript ();
22
- @include _mat-form-field-bottom-line ();
23
21
@include _mat-form-field-focus-overlay ();
24
22
25
23
// Host element of the form-field. It contains the mdc-text-field wrapper
You can’t perform that action at this time.
0 commit comments