Datagrid- Grid Paging Bar styling

1
Hi,   Anyone had any success in adding styling to the grid paging bar on a datagrid (pages << <1 to 10 > >>etc)? A customer is complaining that it doesnt show up well enough and i get what she means. Even if it just had a box around it?    
asked
1 answers
2

You can change the styling of the pagingbar in the lib .css.

To add a red border e.g., change the lib.css to (or overwrite in you theme css or custom css)

.mx-grid .mx-grid-controlbar .mx-grid-pagingbar {
  /* Buttons */
  /* Text Paging .. to .. to .. */
      border-style: solid;
    border-color: red;
}

 

answered