Material-table: Change scrollbars style

Created on 14 Apr 2020  路  6Comments  路  Source: mbrn/material-table

Hi, im searching to get rid of the 2px white border around scrollbars of the table.
Any hints of how to overwrite scrollbar theme ?

Here its how its look like :

scrollbarpng

Thanks in advance !

wontfix

Most helpful comment

Class : Component-horizontalScrollContainer-12 is generate on every build. The number change. You should do someting like this : [class*="Component-horizontalScrollContainer"].

All 6 comments

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. You can reopen it if it required.

@aureliennezzar, if you until need this answer, let's go.

const useStyles = makeStyles({
  tableScrollBar: {
    '& .Component-horizontalScrollContainer-12 ::-webkit-scrollbar-thumb': {
      //CSS Styles here
      borderColor: 'red', // <- This is just an example
    }
  }
});

const App = () => {
  const classes = useStyles();
  ...
  return (
    <MaterialTable
      ...
      components={{
        Container: props => <Paper {...props} className = {classes.tableScrollBar}/>
      }}
    />
  );
};

Thanks I will try to update this old project 馃榿

Class : Component-horizontalScrollContainer-12 is generate on every build. The number change. You should do someting like this : [class*="Component-horizontalScrollContainer"].

Class : Component-horizontalScrollContainer-12 is generate on every build. The number change. You should do someting like this : [class*="Component-horizontalScrollContainer"].

Okay, thanks you very much 馃榾

@aureliennezzar You have also to do a custom "regex" when you build you app. The class should be something link jss12 or jss25...

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Likurg2010 picture Likurg2010  路  3Comments

behrouz-s picture behrouz-s  路  3Comments

ModPhoenix picture ModPhoenix  路  3Comments

diegosps picture diegosps  路  3Comments

slevy85 picture slevy85  路  3Comments