Skip to content

Commit a1ada9d

Browse files
author
Thomas Draier
authored
BACKLOG-15157: removed important and useless attributes (#186)
1 parent b6e9d84 commit a1ada9d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

packages/react-material/src/picker/PickerTreeViewMaterial.jsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ import classNames from 'classnames';
1717

1818
let styles = theme => ({
1919
root: {
20-
position: 'relative',
21-
padding: '0 !important',
2220
width: '100%'
2321
},
2422
loading: {
@@ -28,7 +26,7 @@ let styles = theme => ({
2826
},
2927
listItemSelected: {
3028
background: theme.palette.primary.main,
31-
color: theme.palette.primary.contrastText + '!important'
29+
color: theme.palette.primary.contrastText
3230
},
3331
listItem: {
3432
paddingLeft: theme.spacing.unit,
@@ -63,7 +61,7 @@ let styles = theme => ({
6361
treeEntry: {
6462
display: 'flex',
6563
alignItems: 'center',
66-
cursor: 'pointer !important'
64+
cursor: 'pointer'
6765
},
6866
unpublishedEntryLabel: {
6967
fontStyle: 'italic'

0 commit comments

Comments
 (0)