8
0
Quellcode durchsuchen

Merge pull request #269 from ckeditor/i/6228

Other: The default background color for the table headers should blend with the background of the entire table instead of overriding it. Closes ckeditor/ckeditor5#6228.
Aleksander Nowodzinski vor 5 Jahren
Ursprung
Commit
2ed1c58642
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      packages/ckeditor5-table/theme/table.css

+ 1 - 1
packages/ckeditor5-table/theme/table.css

@@ -31,7 +31,7 @@
 
 		& th {
 			font-weight: bold;
-			background: hsl(0, 0%, 98%);
+			background: hsla(0, 0%, 0%, 5%);
 		}
 	}
 }