Skip to content

Commit

Permalink
feat: add outline color for selected cell
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Jul 16, 2024
1 parent 3fa97c6 commit 12387e1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
"**/demo/**",
"**/dist/**",
"**/coverage/**",
"**/tests-report/**",
"**/node_modules/**"
]
},
Expand Down
22 changes: 13 additions & 9 deletions projects/editor/src/components/editor-socket/styles/table.less
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,17 @@ table th > * {
}

/* stylelint-disable-next-line */
.selectedCell:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--tui-service-selected-text);
pointer-events: none;
.selectedCell {
outline: 1px solid rgb(131, 180, 215);

&::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--tui-service-selected-text);
pointer-events: none;
}
}

0 comments on commit 12387e1

Please sign in to comment.