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

Merge pull request #181 from ckeditor/t/ckeditor5-table/69

Fix: The table cell selection highlight is broken around merged cells. Closes ckeditor/ckeditor5-table#69. Closes ckeditor/ckeditor5-table#29.
Aleksander Nowodzinski 7 лет назад
Родитель
Сommit
f6c6feaee3
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 */
 		}
 		}
 	}
 	}
 }
 }