markdown.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. body{
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. }
  8. .error-message{
  9. color: red;
  10. }
  11. .manual-head{
  12. padding: 5px 5px 5px 5px;
  13. position: fixed;
  14. width: 100%;
  15. }
  16. .manual-category{
  17. width: 280px;
  18. position: fixed;
  19. border-top: 1px solid #DDDDDD;
  20. bottom: 0;
  21. top: 40px;
  22. background-color: #FAFAFA;
  23. }
  24. .manual-category .manual-nav {
  25. font-size: 14px;
  26. color: #333333;
  27. font-weight: 200;
  28. zoom:1;
  29. border-bottom: 1px solid #ddd
  30. }
  31. .manual-category .manual-tree{
  32. margin-top: 10px;
  33. }
  34. .manual-category .manual-nav .nav-item{
  35. font-size: 14px;
  36. padding: 0 9px;
  37. cursor: pointer;
  38. float: left;
  39. height: 30px;
  40. line-height: 30px;
  41. color: #666;
  42. }
  43. .manual-category .manual-nav .nav-plus {
  44. color: #999;
  45. cursor: pointer;
  46. height: 24px;
  47. width: 24px;
  48. line-height: 24px;
  49. display: inline-block;
  50. margin-top: 4px
  51. }
  52. .manual-category .manual-nav .nav-plus:hover{
  53. color: #333333;
  54. }
  55. .manual-category .manual-nav .nav-item.active{
  56. border-bottom: 1px solid #fafafa;
  57. margin-bottom: -1px;
  58. border-left: 1px solid #ddd;
  59. border-right: 1px solid #ddd;
  60. padding-left: 8px;
  61. padding-right: 8px;
  62. }
  63. .manual-editor-container{
  64. position: absolute;
  65. left: 280px;
  66. top: 40px;
  67. right: 0;
  68. bottom: 0;
  69. overflow: hidden;
  70. border-top: 1px solid #DDDDDD;
  71. }
  72. .manual-editor-container .manual-editormd{
  73. position: absolute;
  74. bottom: 30px;
  75. top: -1px;
  76. left: 0;
  77. right: 0;
  78. }
  79. .manual-editor-container .manual-editormd .manual-editormd-active{
  80. position: absolute;
  81. top: 0;
  82. bottom: 0;
  83. left: 0;
  84. right: 0;
  85. }
  86. .editormd-group{
  87. float: left;
  88. height: 32px;
  89. margin-right: 10px;
  90. }
  91. .editormd-group a{
  92. float: left;
  93. }
  94. .editormd-group a.change{
  95. }
  96. .editormd-group .change i{
  97. color: #ffffff;
  98. background-color: #44B036 !important;
  99. border: 1px #44B036 solid !important;
  100. }
  101. .editormd-group .change i:hover{
  102. background-color: #58CB48 !important;
  103. }
  104. .editormd-group .disabled i:hover{
  105. background: #ffffff !important;
  106. }
  107. .editormd-group a.disabled{
  108. border-color: #c9c9c9;
  109. opacity: .6;
  110. cursor: default
  111. }
  112. .editormd-group a>i {
  113. display: inline-block;
  114. width: 34px;
  115. height: 30px;
  116. line-height: 30px;
  117. text-align: center;
  118. color: #4b4b4b;
  119. border: 1px solid #ccc;
  120. background: #fff;
  121. border-radius: 4px;
  122. font-size: 15px
  123. }
  124. .editormd-group a>i.item{
  125. border-radius: 0;
  126. border-right: 0;
  127. }
  128. .editormd-group a>i.last{
  129. border-bottom-left-radius:0;
  130. border-top-left-radius:0;
  131. }
  132. .editormd-group a>i.first{
  133. border-right: 0;
  134. border-bottom-right-radius:0;
  135. border-top-right-radius:0;
  136. }
  137. .editormd-group a i:hover {
  138. background-color: #e4e4e4
  139. }
  140. .editormd-group a i:after {
  141. display: block;
  142. overflow: hidden;
  143. line-height: 30px;
  144. text-align: center;
  145. font-family: icomoon,Helvetica,Arial,sans-serif;
  146. font-style: normal;
  147. }
  148. .manual-editor-status{
  149. position: absolute;
  150. left: 0;
  151. right: 0;
  152. bottom: 0;
  153. height: 30px;
  154. overflow: hidden;
  155. border-left: 1px solid #DDDDDD;
  156. color: #555;
  157. background-color: #FAFAFA;
  158. z-index: 1000;
  159. }