This repository was archived by the owner on Jan 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232
3333 align-items : center ;
3434 display : flex ;
35+ flex-wrap : wrap ;
36+ justify-content : flex-end ;
37+ }
38+ }
39+
40+ .mdc-data-table__pagination-navigation {
41+ @include feature-targeting .targets ($feat-structure ) {
42+ align-items : center ;
43+ display : flex ;
3544 }
3645 }
3746
4453
4554 .mdc-data-table__pagination-total {
4655 @include feature-targeting .targets ($feat-structure ) {
47- @include rtl .reflexive-box (margin , right , 36px );
56+ @include rtl .reflexive-property (
57+ margin ,
58+ $left-value : 14px ,
59+ $right-value : 36px
60+ );
4861
4962 white-space : nowrap ;
5063 }
5164 }
5265
5366 .mdc-data-table__pagination-rows-per-page {
5467 @include feature-targeting .targets ($feat-structure ) {
55- @include rtl .reflexive-box (margin , right , 36 px );
68+ @include rtl .reflexive-box (margin , right , 22 px );
5669
5770 align-items : center ;
5871 display : inline-flex ;
7184 @include select-theme .min-width (80px , $query : $query );
7285 @include menu-theme .min-width (80px , $query : $query );
7386
87+ @include feature-targeting .targets ($feat-structure ) {
88+ margin : 8px 0 ;
89+ }
90+
7491 // TODO(b/158196144): Set it to `-5` density scale using density mixin when
7592 // select component supports it.
7693 @include select-theme .outlined-height (
Original file line number Diff line number Diff line change @@ -284,12 +284,17 @@ $pagination-rows-per-page-select-height: 36px;
284284@mixin cell-height ($height , $query : feature-targeting-functions .all ()) {
285285 $feat-structure : feature-targeting-functions .create-target ($query , structure );
286286
287- .mdc-data-table__cell ,
288- .mdc-data-table__pagination {
287+ .mdc-data-table__cell {
289288 @include feature-targeting-mixins .targets ($feat-structure ) {
290289 height : $height ;
291290 }
292291 }
292+
293+ .mdc-data-table__pagination {
294+ @include feature-targeting-mixins .targets ($feat-structure ) {
295+ min-height : $height ;
296+ }
297+ }
293298}
294299
295300@mixin cell-padding (
You can’t perform that action at this time.
0 commit comments