Browse Source

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.
Piotrek Koszuliński 7 years ago
parent
commit
b4211afa04
1 changed files with 3 additions and 5 deletions
  1. 3 5
      packages/ckeditor5-table/theme/table.css

+ 3 - 5
packages/ckeditor5-table/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 {