From 6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 13 Jul 2018 19:06:45 +0200 Subject: Fixed many permissions and began admin interface --- .../tableselection/styles/tableselection.css | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 public/bower_components/ckeditor/plugins/tableselection/styles/tableselection.css (limited to 'public/bower_components/ckeditor/plugins/tableselection/styles/tableselection.css') diff --git a/public/bower_components/ckeditor/plugins/tableselection/styles/tableselection.css b/public/bower_components/ckeditor/plugins/tableselection/styles/tableselection.css new file mode 100644 index 0000000..e17e3c2 --- /dev/null +++ b/public/bower_components/ckeditor/plugins/tableselection/styles/tableselection.css @@ -0,0 +1,26 @@ +.cke_table-faked-selection-editor *::selection, table[data-cke-table-faked-selection-table] *::selection { + background: transparent; +} + +.cke_table-faked-selection { + background: darkgray !important; + color: black; +} +.cke_table-faked-selection a { + color: black; +} +.cke_editable:focus .cke_table-faked-selection { + /* We have to use !important here, as td might specify it's own background, thus table selection + would not be visible. */ + background: #0076cb !important; + color: white; +} +.cke_editable:focus .cke_table-faked-selection a { + color: white; +} +.cke_table-faked-selection::-moz-selection, .cke_table-faked-selection ::-moz-selection { + background: transparent; +} +.cke_table-faked-selection::selection, .cke_table-faked-selection ::selection { + background: transparent; +} -- cgit v1.2.3