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.

editor.dev.css 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .ProseMirror-menubar {
  2. border-top-left-radius: inherit;
  3. border-top-right-radius: inherit;
  4. color: #666;
  5. padding: 1px 6px;
  6. border-bottom: 1px solid silver;
  7. background: white;
  8. z-index: 10;
  9. -moz-box-sizing: border-box;
  10. box-sizing: border-box;
  11. overflow: visible;
  12. }
  13. .ProseMirror-menubar.scrolling {
  14. top: 47px;
  15. }
  16. .ProseMirror-menuitem {
  17. display: inline-block;
  18. font-size: 1.2em;
  19. text-align: center;
  20. min-width: 30px;
  21. line-height: 30px;
  22. box-sizing: border-box;
  23. margin: 1px;
  24. border-width: 1px;
  25. border-style: solid;
  26. border-color: white;
  27. }
  28. .ProseMirror-menuitem:hover {
  29. border-radius: 5px;
  30. background: #fcfcfc;
  31. border-color: #95a5a6;
  32. border-width: 1px;
  33. border-style: solid;
  34. box-sizing: border-box;
  35. }
  36. .ProseMirror-icon {
  37. line-height: inherit;
  38. vertical-align: middle;
  39. }
  40. .ProseMirror-menubar .fa-header-x:after {
  41. font-family: Arial, Helvetica, sans-serif;
  42. font-size: 65%;
  43. vertical-align: text-bottom;
  44. position: relative;
  45. top: 2px;
  46. }
  47. .fa-header-1:after {
  48. content: "1";
  49. }
  50. .fa-header-2:after {
  51. content: "2";
  52. }
  53. .fa-header-3:after {
  54. content: "3";
  55. }
  56. .forceHide {
  57. display:none !important;
  58. }