wysiwyg.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* WYSIWYG Editor Styles */
  2. .wysiwyg-container {
  3. position: relative;
  4. }
  5. .wysiwyg-editor {
  6. min-height: 400px;
  7. border: 1px solid #d1d5db;
  8. border-radius: 6px;
  9. background-color: white;
  10. }
  11. .wysiwyg-toolbar {
  12. border: 1px solid #d1d5db;
  13. border-bottom: none;
  14. border-radius: 6px 6px 0 0;
  15. background-color: #f9fafb;
  16. padding: 8px;
  17. display: flex;
  18. flex-wrap: wrap;
  19. gap: 4px;
  20. }
  21. .wysiwyg-btn {
  22. padding: 6px 10px;
  23. border: 1px solid #d1d5db;
  24. border-radius: 4px;
  25. background-color: white;
  26. cursor: pointer;
  27. font-size: 12px;
  28. transition: all 0.2s;
  29. }
  30. .wysiwyg-btn:hover {
  31. background-color: #f3f4f6;
  32. border-color: #9ca3af;
  33. }
  34. .wysiwyg-btn.active {
  35. background-color: #3b82f6;
  36. color: white;
  37. border-color: #3b82f6;
  38. }
  39. .wysiwyg-separator {
  40. width: 1px;
  41. height: 24px;
  42. background-color: #d1d5db;
  43. margin: 0 4px;
  44. }
  45. .wysiwyg-select {
  46. padding: 4px 8px;
  47. border: 1px solid #d1d5db;
  48. border-radius: 4px;
  49. background-color: white;
  50. font-size: 12px;
  51. }
  52. .wysiwyg-content {
  53. padding: 12px;
  54. min-height: 350px;
  55. font-family: inherit;
  56. font-size: 14px;
  57. line-height: 1.5;
  58. border: none;
  59. outline: none;
  60. resize: vertical;
  61. }
  62. .wysiwyg-content:focus {
  63. outline: 2px solid #3b82f6;
  64. outline-offset: -2px;
  65. }
  66. /* Form integration */
  67. .publication-form .form-group:has(.wysiwyg-container) {
  68. margin-bottom: 20px;
  69. }
  70. .wysiwyg-label {
  71. display: block;
  72. margin-bottom: 8px;
  73. font-weight: 600;
  74. color: #374151;
  75. }
  76. /* Character count */
  77. .wysiwyg-char-count {
  78. margin-top: 8px;
  79. font-size: 12px;
  80. color: #6b7280;
  81. text-align: right;
  82. }
  83. /* Responsive design */
  84. @media (max-width: 768px) {
  85. .wysiwyg-toolbar {
  86. padding: 6px;
  87. gap: 2px;
  88. }
  89. .wysiwyg-btn {
  90. padding: 4px 6px;
  91. font-size: 11px;
  92. }
  93. .wysiwyg-content {
  94. padding: 8px;
  95. min-height: 300px;
  96. }
  97. }