quicklatex-format.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. Inline formulas format:
  3. <img class="$1" src="imageURL"/>
  4. $1 - default class ql-img-inline-formula
  5. /* Style for <img> tag of in-text formula */
  6. .ql-img-inline-formula{
  7. background:none !important;
  8. border:none !important;
  9. padding:0px !important;
  10. margin:0px !important;
  11. }
  12. /* Style for the <img> tag of displayed equation */
  13. .ql-img-displayed-equation{
  14. background:none !important;
  15. border:none !important;
  16. padding:0px !important;
  17. margin:0px !important;
  18. vertical-align:middle !important;
  19. display:inline-block !important;
  20. }
  21. /* Style for <img> tag of tikZ images */
  22. .ql-img-picture{
  23. background:none !important;
  24. border:none !important;
  25. padding:0px !important;
  26. margin:0px !important;
  27. }
  28. /* Style for <p> tag of displayed equation - align: center */
  29. .ql-center-displayed-equation {
  30. text-align:center !important;
  31. white-space: nowrap !important;
  32. overflow:hidden !important;
  33. }
  34. /* Style for <p> tag of displayed equation - align: left */
  35. .ql-left-displayed-equation {
  36. text-align:left !important;
  37. white-space: nowrap !important;
  38. overflow:hidden !important;
  39. }
  40. /* Style for <p> tag of displayed equation - align: right */
  41. .ql-right-displayed-equation {
  42. text-align:right !important;
  43. white-space: nowrap !important;
  44. overflow:hidden !important;
  45. }
  46. /* Equation numbering - align: left */
  47. .ql-left-eqno{
  48. width:3em !important;
  49. text-align:left !important;
  50. float:left !important;
  51. display:inline-block !important;
  52. font-size:110% !important;
  53. }
  54. /* Equation numbering - align: right */
  55. .ql-right-eqno{
  56. width:3em !important;
  57. text-align:right !important;
  58. float:right !important;
  59. display:inline-block !important;
  60. font-size:110% !important;
  61. }
  62. /* <p> tikZ picture styles*/
  63. .ql-center-picture{
  64. border:none !important;
  65. text-align:center !important;
  66. background:none !important;
  67. }
  68. /* Error reporting */
  69. .ql-errors{
  70. color: #222222;
  71. font-family: Georgia,"Bitstream Charter",serif;
  72. font-size: 16px;
  73. border:1px solid #FF0000;
  74. }
  75. /* Operating mode - manual */
  76. .ql-manual-mode{
  77. background:none;
  78. border:none;
  79. padding:0px;
  80. margin:0px;
  81. }