trumbowyg.table.scss 838 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. * Trumbowyg v2.22.0 - A lightweight WYSIWYG editor
  3. * Default stylesheet for Trumbowyg editor plugin
  4. * ------------------------
  5. * @link http://alex-d.github.io/Trumbowyg
  6. * @license MIT
  7. * @author Alexandre Demode (Alex-D)
  8. * Twitter : @AlexandreDemode
  9. * Website : alex-d.fr
  10. */
  11. .trumbowyg-editor table {
  12. width: 100%;
  13. td {
  14. border: 1px dotted #e7eaec;
  15. padding: 8px;
  16. }
  17. }
  18. .trumbowyg-dropdown-table {
  19. table {
  20. margin: 10px;
  21. display: inline-block;
  22. }
  23. table td {
  24. display: inline-block;
  25. height: 20px;
  26. width: 20px;
  27. margin: 1px;
  28. padding: 0;
  29. background-color: #fff;
  30. box-shadow: 0 0 0 1px #cecece inset;
  31. &.active {
  32. background-color: #00b393;
  33. box-shadow: none;
  34. cursor: pointer;
  35. }
  36. }
  37. .trumbowyg-table-size {
  38. text-align: center;
  39. }
  40. }