Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 781a4bc

Browse files
committed
fix(select): fix focus color not picking up theming
closes #3128
1 parent deae957 commit 781a4bc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/select/select.scss

+4-2
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,15 @@ md-select {
6666
}
6767
&.ng-invalid.ng-dirty {
6868
.md-select-label {
69-
border-bottom: 2px solid;
69+
border-bottom-width: 2px;
70+
border-bottom-style: solid;
7071
padding-bottom: 0;
7172
}
7273
}
7374
&:focus {
7475
.md-select-label {
75-
border-bottom: 2px solid;
76+
border-bottom-width: 2px;
77+
border-bottom-style: solid;
7678
padding-bottom: 0;
7779
}
7880
}

0 commit comments

Comments
 (0)