File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -74,13 +74,16 @@ $mat-select-panel-max-height: 256px !default;
74
74
// position. This has been fixed for Firefox 52, slated for early 2017.
75
75
// Bug report: https://bugzilla.mozilla.org/show_bug.cgi?id=874718
76
76
//
77
- // In the meantime, we must adjust the left position to 0 to mimic where it
78
- // would be if it were correctly taken out of the flex flow. It's also necessary
79
- // to adjust the top value because absolutely positioned elements should not be
80
- // affected by the flex container's "align-items" property either. To center the text,
81
- // we must offset by 6px (6px top + 6px bottom + 18px text height = 30px total height).
77
+ // In the meantime, we must adjust the position to fit the top and left edge of the
78
+ // containing element with a height matching the trigger container.
79
+ // In doing so, we can use align-items: center to allow the text to
80
+ // correctly position itself in the middle of the container.
81
+ top : 0 ;
82
82
left : 0 ;
83
- top : 6px ;
83
+ height : $mat-select-trigger-height ;
84
+
85
+ display : flex ;
86
+ align-items : center ;
84
87
85
88
[dir = ' rtl' ] & {
86
89
left : auto ;
You can’t perform that action at this time.
0 commit comments