Skip to content

Commit a441886

Browse files
feat: added bg color to highlighted cell
1 parent f4ff461 commit a441886

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/components/BrowserCell/BrowserCell.react.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,7 @@ export default class BrowserCell extends Component {
588588
if (selectedCells.colEnd === col) {
589589
classes.push(styles.rightBorder);
590590
}
591+
classes.push(styles.selected);
591592
}
592593

593594
return (

src/components/BrowserCell/BrowserCell.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@
9696
}
9797
}
9898

99+
.selected {
100+
background-color: #e3effd;
101+
}
102+
99103
.hasMore {
100104
height: auto;
101105
max-height: 25px;

0 commit comments

Comments
 (0)