Browse Source

Remove reference to the color variable

panr 5 years ago
parent
commit
3f4e4c68fa
1 changed files with 1 additions and 5 deletions
  1. 1 5
      packages/ckeditor5-table/theme/table.css

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

@@ -3,10 +3,6 @@
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  */
 
- :root {
-	 --ck-color-table-focused-th-background: hsla(0, 0%, 0%, 10%);
- }
-
 .ck-content .table {
 	/* Give the table widget some air and center it horizontally */
 	margin: 1em auto;
@@ -35,7 +31,7 @@
 
 		& th {
 			font-weight: bold;
-			background: var(--ck-color-table-focused-th-background);
+			background: hsla(0, 0%, 0%, 10%);
 		}
 	}
 }