Advertisement
NecromancerCoding

Edición básica de SCEditor

Aug 23rd, 2023
819
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.95 KB | None | 0 0
  1. /*Editor*/
  2. .sceditor-container{
  3. border:var(--border1)!important;
  4. background:var(--dbckg5)!important;
  5. border-radius:0px!important;
  6. }
  7. .sceditor-toolbar {
  8. padding: 10px!important;
  9. border-radius:0!important;
  10. border-bottom:var(--border1)!important;
  11. text-align: center;
  12. background:var(--dbckg3)!important;
  13. }
  14. .sceditor-group {
  15. background: var(--dbckg4)!important;
  16. border-bottom: 0px!important;
  17. border-radius: 3px!important;
  18. border: var(--border1)!important;
  19. }
  20. .sceditor-button:before {
  21. content: "\f004";
  22. color: #AAAAAA;
  23. font-family: 'Font Awesome 5 Pro';
  24. font-size: 10px;
  25. font-weight: 700;
  26. margin-top:9px;
  27. display:block;
  28. text-shadow:var(--shadow-d);
  29. }
  30. .sceditor-button-bold:before{
  31. content:"\f032";
  32. }
  33. .sceditor-button-italic:before{
  34. content:"\f033";
  35. }
  36. .sceditor-button-underline:before{
  37. content:"\f0cd";
  38. }
  39. .sceditor-button-strike:before{
  40. content:"\f0cc";
  41. }
  42. .sceditor-button-left:before{
  43. content:"\f036";
  44. }
  45. .sceditor-button-center:before{
  46. content:"\f037";
  47. }
  48. .sceditor-button-right:before{
  49. content:"\f038";
  50. }
  51. .sceditor-button-justify:before{
  52. content:"\f039";
  53. }
  54. .sceditor-button-bulletlist:before{
  55. content:"\f0ca";
  56. }
  57. .sceditor-button-orderedlist:before{
  58. content:"\f0cb";
  59. }
  60. .sceditor-button-horizontalrule:before{
  61. content:"\f337";
  62. }
  63. .sceditor-button-quote:before{
  64. content:"\f10d";
  65. }
  66. .sceditor-button-code:before{
  67. content:"\f121";
  68. }
  69. .sceditor-button-faspoiler:before{
  70. content:"\f071";
  71. }
  72. .sceditor-button-fahide:before{
  73. content:"\f070";
  74. }
  75. .sceditor-button-table:before{
  76. content:"\f0ce";
  77. }
  78. .sceditor-button-servimg:before{
  79. content:"\f302";
  80. }
  81. .sceditor-button-image:before{
  82. content:"\f03e";
  83. }
  84. .sceditor-button-link:before{
  85. content:"\f0c1";
  86. }
  87. .sceditor-button-youtube:before{
  88. content:"\f167";
  89. font-family:'Font Awesome 5 Brands';
  90. }
  91. .sceditor-button-dailymotion:before{
  92. content:"\f03d";
  93. }
  94. .sceditor-button-flash:before{
  95. content:"\f0d0";
  96. }
  97. .sceditor-button-headers:before{
  98. content:"\f1dc";
  99. }
  100. .sceditor-button-size:before{
  101. content:"\f034";
  102. }
  103. .sceditor-button-color:before{
  104. content:"\f1fc";
  105. }
  106. .sceditor-button-font:before{
  107. content:"\f031";
  108. }
  109. .sceditor-button-removeformat:before{
  110. content:"\f00d";
  111. }
  112. .sceditor-button-more:before{
  113. content:"\f067";
  114. }
  115. .sceditor-button-emoticon:before{
  116. content:"\f118";
  117. }
  118. .sceditor-button-date:before{
  119. content:"\f133";
  120. }
  121. .sceditor-button-time:before{
  122. content:"\f017";
  123. }
  124. .sceditor-button-pastetext:before{
  125. content:"\f03c";
  126. }
  127. .sceditor-button-source:before{
  128. content:"\f246";
  129. }
  130. .sceditor-button div{
  131. display:none!important;
  132. }
  133. .sceditor-button {
  134. text-indent: 0!important;
  135. margin:2px;
  136. }
  137. .sceditor-button:hover, .sceditor-button.hover, .sceditor-button.active{
  138. background:var(--accent1)!important;
  139. box-shadow:0 0 transparent!important;
  140. }
  141. .sceditor-button:hover:before, .sceditor-button.hover:before, .sceditor-button.active:before{
  142. color: var(--accent3)!important;
  143. }
  144. .sceditor-container textarea{
  145. color:#888888!important;
  146. }
  147. a[name="quickreply"]+.h3 {
  148. display: none;
  149. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement