Datagrid Pagination Arrows Not Appearing

0
Hello, I recently converted an application from version 9 to version 10.12.12. After the required upgrades of marketplace modules to get the application to build successfully I am facing issues with datagrid pagination arrows from appearing on any page that has a datagrid.    The buttons to switch between pages are working, just the arrows are missing/hidden/transparent. I had tried upgrading Atlas Core to the latest version, tried upgrading Data Widgets and tried custom CSS as mentioned in another post to set the height and width to 20px in the source file.   Any suggestions are appreciated.  
asked
1 answers
0

We had a similar issue, I would also suggest to update Atlas first, as well as datawidgets. If that doesn't solve it. 

 

This might help.

  • hover over the buttons (using inspect) check what class is associated to the buttons.
  • in my case it was .mx-icon-filled
  • adding the following to my custom.css file solved the issue
  • .mx-icon-filled {
        font-family: 'Glyphicons Halflings';
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        height: 1em;
        line-height: 1em;
        vertical-align: -0.125em;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
      
      .mx-icon-controls-forward:before {
        content: '\e075'; 
      }
      .mx-icon-controls-backward:before{
        content: '\e071';
      }
      .mx-icon-controls-step-backward:before {
        content: '\e069'; 
      }
      .mx-icon-controls-step-forward:before {
        content: '\e077'; 
      }

     

answered