Hi,
how can I adjust the style of the grid pagination in a way, that the number buttons have the same height as the navigation buttons left and right?
Thank you and best regards
Sven
|
|
|
<style>
.e-pagerdropdown{
height: 43px !important;
}
span.e-ddl.e-lib.e-input-group.e-control-container.e-control-wrapper.e-valid-input {
height: 39px;
}
input#dropdownlist-82b398d8-e35c-4346-acc7-6ee8eba3a344{
height: 37px;
}
</style> |
|
|
Hi,
sorry no I mean not the drop down ;)
I mean the height and the width of the page numbers. I want that they fill the complete space on hover or in the active state.
I found a paddding in .e-pager .e-spacing, .e-pager .e-numericitem:hover, .e-pager .e-currentitem,
but I don't know how i can remove it and if it is really the best way.
Thanks and best regards
Sven
|
|
Hi,
thank you for the answer. You can see the same behaviour in your demos: https://blazor.syncfusion.com/demos/datagrid/paging?_gl=1*1y047qf*_ga*NTIwOTI3MjU2LjE2MTM0ODc4OTE.*_ga_WC4JKKPHH0*MTY0NDMzNTc3Ni45OC4xLjE2NDQzMzU4MzAuMA..&_ga=2.136452656.1293813072.1644318063-520927256.1613487891
We use the bootstrap5 theme.
Best regards
|
<style>
.e-pager .e-spacing, .e-pager .e-numericitem:hover, .e-pager .e-currentitem {
padding: 9.5px 11px 8.5px 12px;
}
.e-pager .e-pagercontainer .e-nextpage {
padding: 12px 10px 10px 9px;
}
.e-pager .e-pagercontainer .e-prevpage {
padding: 12px 10px 10px 9px;
}
.e-pager .e-pagercontainer .e-firstpage {
padding: 12px 10px 10px;
}
.e-pager .e-np {
padding: 12.5px 11px 8.5px 10px !important;
}
.e-pager .e-pagercontainer .e-lastpage {
padding: 12px 10px 10px 8px;
}
</style> |