cp.wysiwyg.pell.css 894 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .pell {
  2. border: 1px solid rgba(10, 10, 10, 0.1);
  3. box-sizing: border-box;
  4. }
  5. .pell-content {
  6. box-sizing: border-box;
  7. height: 300px;
  8. outline: 0;
  9. overflow-y: auto;
  10. padding: .375rem .75rem;
  11. }
  12. .pell-content p:last-child {
  13. margin-bottom: 0px;
  14. }
  15. .pell-actionbar {
  16. padding: .2rem;
  17. padding-top: 0;
  18. background-color: #fff;
  19. border-radius: .25rem .25rem 0px 0px;
  20. border-bottom: 1px solid #ced4da;
  21. }
  22. .pell-button {
  23. margin-top: .2rem;
  24. background-color: #e9ecef;
  25. border: none;
  26. cursor: pointer;
  27. height: 30px;
  28. outline: 0;
  29. min-width: 30px;
  30. vertical-align: bottom;
  31. margin-right: .2rem;
  32. border-radius: .25rem;
  33. }
  34. .pell-button-selected,
  35. .pell-button-html-pressed {
  36. background-color: #007bff;
  37. color: #fff;
  38. }
  39. .pell-html-mode .pell-content {
  40. display: none;
  41. }
  42. .pell-html-mode textarea {
  43. height: 300px;
  44. display: block !important;
  45. box-shadow: none !important;
  46. border: none !important;
  47. }