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

t/50: Selected table's outline should be visible when the table is not being hovered #52

Merged
merged 1 commit into from
Jun 13, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions theme/table.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@
border-collapse: collapse;
border-spacing: 0;

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

& td,
& th {
Expand Down