From 9e3f32fe7c2eed869b0c26f7cfab3f228995f302 Mon Sep 17 00:00:00 2001 From: Aleksander Nowodzinski Date: Wed, 13 Jun 2018 16:32:25 +0200 Subject: [PATCH] Fix: Selected table's outline should be visible when the table is not being hovered. Closes #50. --- theme/table.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/theme/table.css b/theme/table.css index 7a6ce450..2d73ebe7 100644 --- a/theme/table.css +++ b/theme/table.css @@ -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 {