Преглед на файлове

Merge branch 'master' into i/6521

Aleksander Nowodzinski преди 5 години
родител
ревизия
da296f5f67
променени са 1 файла, в които са добавени 10 реда и са изтрити 0 реда
  1. 10 0
      packages/ckeditor5-table/theme/table.css

+ 10 - 0
packages/ckeditor5-table/theme/table.css

@@ -39,3 +39,13 @@
 		}
 	}
 }
+
+/* Text alignment of the table header should match the editor settings and override the native browser styling,
+when content is available outside the ediitor. See https://github.com/ckeditor/ckeditor5/issues/6638 */
+.ck-content[dir="rtl"] .table th {
+	text-align: right;
+}
+
+.ck-content[dir="ltr"] .table th {
+	text-align: left;
+}