Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit a50c89d

Browse files
authored
Merge pull request #52 from ckeditor/t/50
Fix: Selected table's outline should be visible when the table is not being hovered. Closes #50.
2 parents 713ac46 + 9e3f32f commit a50c89d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

theme/table.css

+3-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@
1111
border-collapse: collapse;
1212
border-spacing: 0;
1313

14-
/* The outer border of the table should be slightly darker than the inner lines. */
15-
&:not(:hover) {
16-
outline: 1px solid hsl(0, 0%, 70%);
17-
outline-offset: -1px;
18-
}
14+
/* The outer border of the table should be slightly darker than the inner lines.
15+
Also see https://github.com/ckeditor/ckeditor5-table/issues/50. */
16+
border: 1px double hsl(0, 0%, 70%);
1917

2018
& td,
2119
& th {

0 commit comments

Comments
 (0)