You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.0 KiB

  1. ul.wysihtml5-toolbar {
  2. margin: 0;
  3. padding: 0;
  4. display: block;
  5. }
  6. ul.wysihtml5-toolbar::after {
  7. clear: both;
  8. display: table;
  9. content: "";
  10. }
  11. ul.wysihtml5-toolbar > li {
  12. float: left;
  13. display: list-item;
  14. list-style: none;
  15. margin: 0 5px 10px 0;
  16. }
  17. ul.wysihtml5-toolbar a[data-wysihtml5-command=bold] {
  18. font-weight: bold;
  19. }
  20. ul.wysihtml5-toolbar a[data-wysihtml5-command=italic] {
  21. font-style: italic;
  22. }
  23. ul.wysihtml5-toolbar a[data-wysihtml5-command=underline] {
  24. text-decoration: underline;
  25. }
  26. ul.wysihtml5-toolbar a.btn.wysihtml5-command-active {
  27. background-image: none;
  28. background-color: #fff;
  29. outline: 0;
  30. }
  31. ul.wysihtml5-commands-disabled .dropdown-menu {
  32. display: none !important;
  33. }
  34. ul.wysihtml5-toolbar div.wysihtml5-colors {
  35. display:block;
  36. width: 50px;
  37. height: 20px;
  38. margin-top: 2px;
  39. margin-left: 5px;
  40. position: absolute;
  41. pointer-events: none;
  42. }
  43. ul.wysihtml5-toolbar a.wysihtml5-colors-title {
  44. padding-left: 70px;
  45. }
  46. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="black"] {
  47. background: black !important;
  48. }
  49. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="silver"] {
  50. background: silver !important;
  51. }
  52. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="gray"] {
  53. background: gray !important;
  54. }
  55. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="maroon"] {
  56. background: maroon !important;
  57. }
  58. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="red"] {
  59. background: red !important;
  60. }
  61. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="purple"] {
  62. background: purple !important;
  63. }
  64. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="green"] {
  65. background: green !important;
  66. }
  67. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="olive"] {
  68. background: olive !important;
  69. }
  70. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="navy"] {
  71. background: navy !important;
  72. }
  73. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="blue"] {
  74. background: blue !important;
  75. }
  76. ul.wysihtml5-toolbar div[data-wysihtml5-command-value="orange"] {
  77. background: orange !important;
  78. }