Skip to content

Commit 4d199ca

Browse files
committed
Update BrowserRow.react.js
1 parent 398893b commit 4d199ca

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/BrowserRow/BrowserRow.react.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default class BrowserRow extends Component {
7171
} else if (obj.className === '_User' && obj.get('authData') !== undefined) {
7272
requiredCols = ['authData'];
7373
}
74-
const rowBackground = row % 2 ? '#F4F5F7' : '#FFFFFF';
74+
const rowBackground = row % 2 ? '#F4F5F7' : '#fdfafb';
7575
const rowStyle = { minWidth: rowWidth };
7676
return (
7777
<div className={styles.tableRow} style={rowStyle} onMouseOver={() => onMouseOverRow(obj.id)}>
@@ -82,12 +82,12 @@ export default class BrowserRow extends Component {
8282
style={
8383
freezeIndex >= 0
8484
? {
85-
position: 'sticky',
86-
left: 0,
87-
zIndex: 1,
88-
background: rowBackground,
89-
borderBottom: '1px solid #e3e3ea',
90-
}
85+
position: 'sticky',
86+
left: 0,
87+
zIndex: 1,
88+
background: rowBackground,
89+
borderBottom: '1px solid #e3e3ea',
90+
}
9191
: {}
9292
}
9393
>

0 commit comments

Comments
 (0)