trumbowyg.table.scss 479 B

12345678910111213141516171819202122232425262728293031
  1. .trumbowyg-editor table {
  2. width: 100%;
  3. td {
  4. border: 1px dotted #e7eaec;
  5. padding: 8px;
  6. }
  7. }
  8. .trumbowyg-dropdown-table {
  9. table {
  10. margin: 10px;
  11. display: inline-block;
  12. }
  13. table td {
  14. display: inline-block;
  15. height: 20px;
  16. width: 20px;
  17. margin: 1px;
  18. padding: 0;
  19. background-color: #fff;
  20. box-shadow: 0 0 0 1px #cecece inset;
  21. &.active {
  22. background-color: #00b393;
  23. box-shadow: none;
  24. cursor: pointer;
  25. }
  26. }
  27. }