8
0
Просмотр исходного кода

Fix: The table cell selection highlight is broken on merged cells.

Dawid Twis 7 лет назад
Родитель
Сommit
bdf0e98f14
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      packages/ckeditor5-theme-lark/theme/ckeditor5-table/tableediting.css

+ 3 - 1
packages/ckeditor5-theme-lark/theme/ckeditor5-table/tableediting.css

@@ -17,7 +17,9 @@
 			/* Fixes the problem where surrounding cells cover the focused cell's border.
 			/* Fixes the problem where surrounding cells cover the focused cell's border.
 			It does not fix the problem in all places but the UX is improved.
 			It does not fix the problem in all places but the UX is improved.
 			See https://github.com/ckeditor/ckeditor5-table/issues/29. */
 			See https://github.com/ckeditor/ckeditor5-table/issues/29. */
-			border-style: double;
+			border-style: none;
+			outline: 1px solid var(--ck-color-focus-border);
+			outline-offset: -1px; /* progressive enhancement - no IE support */
 		}
 		}
 	}
 	}
 }
 }