selection.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. table {
  6. border-collapse: collapse;
  7. border-spacing: 0;
  8. border-color: hsl(0,0%,87%);
  9. }
  10. table, th, td {
  11. padding: 5px;
  12. border: 1px inset hsl(0,0%,87%);
  13. }
  14. table th,
  15. table td {
  16. min-width: 1em;
  17. }
  18. table th {
  19. background: hsl(0,0%,96%);
  20. font-weight: bold;
  21. }
  22. table thead th {
  23. background: hsl(0,0%,90%);
  24. }
  25. .ck table.ck-widget th.ck-editor__nested-editable {
  26. border-color: inherit;
  27. border-style: inset;
  28. }
  29. .ck table.ck-widget td.ck-editor__nested-editable {
  30. border-color: inherit;
  31. border-style: inset;
  32. }
  33. .ck table.ck-widget td.ck-editor__nested-editable.ck-editor__nested-editable_focused,
  34. .ck table.ck-widget td.ck-editor__nested-editable:focus {
  35. background-color: inherit;
  36. color: inherit;
  37. }
  38. .ck table.ck-widget th.ck-editor__nested-editable.ck-editor__nested-editable_focused,
  39. .ck table.ck-widget th.ck-editor__nested-editable:focus {
  40. background-color: inherit;
  41. color: inherit;
  42. }