simditor.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. .simditor {
  2. position: relative;
  3. border: 1px solid #c9d8db;
  4. }
  5. .simditor .simditor-wrapper {
  6. position: relative;
  7. background: #ffffff;
  8. overflow: hidden;
  9. }
  10. .simditor .simditor-wrapper .simditor-placeholder {
  11. display: none;
  12. position: absolute;
  13. left: 0;
  14. z-index: 0;
  15. padding: 22px 15px;
  16. font-size: 16px;
  17. font-family: arial, sans-serif;
  18. line-height: 1.5;
  19. color: #999999;
  20. background: transparent;
  21. }
  22. .simditor .simditor-wrapper.toolbar-floating .simditor-toolbar {
  23. position: fixed;
  24. top: 0;
  25. z-index: 10;
  26. box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  27. }
  28. .simditor .simditor-wrapper .simditor-image-loading {
  29. width: 100%;
  30. height: 100%;
  31. background: rgba(0, 0, 0, 0.4);
  32. position: absolute;
  33. top: 0;
  34. left: 0;
  35. z-index: 2;
  36. }
  37. .simditor .simditor-wrapper .simditor-image-loading span {
  38. width: 30px;
  39. height: 30px;
  40. background: #ffffff url(../../../img/loading-upload.gif) no-repeat center center;
  41. border-radius: 30px;
  42. position: absolute;
  43. top: 50%;
  44. left: 50%;
  45. margin: -15px 0 0 -15px;
  46. box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  47. }
  48. .simditor .simditor-wrapper .simditor-image-loading.uploading span {
  49. background: #ffffff;
  50. color: #333333;
  51. font-size: 14px;
  52. line-height: 30px;
  53. text-align: center;
  54. }
  55. .simditor .simditor-body {
  56. padding: 22px 15px 40px;
  57. min-height: 300px;
  58. outline: none;
  59. cursor: text;
  60. position: relative;
  61. z-index: 1;
  62. background: transparent;
  63. }
  64. .simditor .simditor-body a.selected {
  65. background: #b3d4fd;
  66. }
  67. .simditor .simditor-body a.simditor-mention {
  68. cursor: pointer;
  69. }
  70. .simditor .simditor-body .simditor-table {
  71. position: relative;
  72. }
  73. .simditor .simditor-body .simditor-table.resizing {
  74. cursor: col-resize;
  75. }
  76. .simditor .simditor-body .simditor-table .simditor-resize-handle {
  77. position: absolute;
  78. left: 0;
  79. top: 0;
  80. width: 10px;
  81. height: 100%;
  82. cursor: col-resize;
  83. }
  84. .simditor .simditor-body pre {
  85. /*min-height: 28px;*/
  86. box-sizing: border-box;
  87. -moz-box-sizing: border-box;
  88. word-wrap: break-word !important;
  89. white-space: pre-wrap !important;
  90. }
  91. .simditor .simditor-body img {
  92. cursor: pointer;
  93. }
  94. .simditor .simditor-body img.selected {
  95. box-shadow: 0 0 0 4px #cccccc;
  96. }
  97. .simditor .simditor-paste-area,
  98. .simditor .simditor-clean-paste-area {
  99. background: transparent;
  100. border: none;
  101. outline: none;
  102. resize: none;
  103. padding: 0;
  104. margin: 0;
  105. }
  106. .simditor .simditor-toolbar {
  107. border-bottom: 1px solid #eeeeee;
  108. background: #ffffff;
  109. width: 100%;
  110. }
  111. .simditor .simditor-toolbar > ul {
  112. margin: 0;
  113. padding: 0 0 0 6px;
  114. list-style: none;
  115. }
  116. .simditor .simditor-toolbar > ul:after {
  117. content: "";
  118. display: table;
  119. clear: both;
  120. }
  121. .simditor .simditor-toolbar > ul > li {
  122. position: relative;
  123. float: left;
  124. }
  125. .simditor .simditor-toolbar > ul > li > span.separator {
  126. display: block;
  127. float: left;
  128. background: #cfcfcf;
  129. width: 1px;
  130. height: 18px;
  131. margin: 11px 15px;
  132. }
  133. .simditor .simditor-toolbar > ul > li > .toolbar-item {
  134. display: block;
  135. float: left;
  136. width: 50px;
  137. height: 40px;
  138. outline: none;
  139. color: #333333;
  140. font-size: 15px;
  141. line-height: 40px;
  142. text-align: center;
  143. text-decoration: none;
  144. }
  145. .simditor .simditor-toolbar > ul > li > .toolbar-item span {
  146. opacity: 0.6;
  147. }
  148. .simditor .simditor-toolbar > ul > li > .toolbar-item span.fa {
  149. display: inline;
  150. line-height: normal;
  151. }
  152. .simditor .simditor-toolbar > ul > li > .toolbar-item:hover span {
  153. opacity: 1;
  154. }
  155. .simditor .simditor-toolbar > ul > li > .toolbar-item.active {
  156. background: #eeeeee;
  157. }
  158. .simditor .simditor-toolbar > ul > li > .toolbar-item.active span {
  159. opacity: 1;
  160. }
  161. .simditor .simditor-toolbar > ul > li > .toolbar-item.disabled {
  162. cursor: default;
  163. }
  164. .simditor .simditor-toolbar > ul > li > .toolbar-item.disabled span {
  165. opacity: 0.3;
  166. }
  167. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-title span:before {
  168. content: "T";
  169. font-size: 19px;
  170. font-weight: bold;
  171. font-family: 'Times New Roman';
  172. }
  173. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-title.active-h1 span:before {
  174. content: 'H1';
  175. font-size: 18px;
  176. }
  177. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-title.active-h2 span:before {
  178. content: 'H2';
  179. font-size: 18px;
  180. }
  181. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-title.active-h3 span:before {
  182. content: 'H3';
  183. font-size: 18px;
  184. }
  185. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-color {
  186. font-size: 14px;
  187. position: relative;
  188. }
  189. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-color span:before {
  190. position: relative;
  191. top: -2px;
  192. }
  193. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-color:after {
  194. content: '';
  195. display: block;
  196. width: 14px;
  197. height: 4px;
  198. background: #cccccc;
  199. position: absolute;
  200. top: 26px;
  201. left: 50%;
  202. margin: 0 0 0 -7px;
  203. }
  204. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-color:hover:after {
  205. background: #999999;
  206. }
  207. .simditor .simditor-toolbar > ul > li > .toolbar-item.toolbar-item-color.disabled:after {
  208. background: #dfdfdf;
  209. }
  210. .simditor .simditor-toolbar > ul > li.menu-on .toolbar-item {
  211. position: relative;
  212. z-index: 21;
  213. background: #ffffff;
  214. box-shadow: 0 -3px 3px rgba(0, 0, 0, 0.2);
  215. }
  216. .simditor .simditor-toolbar > ul > li.menu-on .toolbar-item span {
  217. opacity: 1;
  218. }
  219. .simditor .simditor-toolbar > ul > li.menu-on .toolbar-item.toolbar-item-color:after {
  220. background: #999999;
  221. }
  222. .simditor .simditor-toolbar > ul > li.menu-on .toolbar-menu {
  223. display: block;
  224. }
  225. .simditor .simditor-toolbar .toolbar-menu {
  226. display: none;
  227. position: absolute;
  228. top: 40px;
  229. left: 0;
  230. z-index: 20;
  231. background: #ffffff;
  232. text-align: left;
  233. box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  234. }
  235. .simditor .simditor-toolbar .toolbar-menu ul {
  236. min-width: 160px;
  237. list-style: none;
  238. margin: 0;
  239. padding: 10px 1px;
  240. }
  241. .simditor .simditor-toolbar .toolbar-menu ul > li .menu-item {
  242. display: block;
  243. font-size: 16px;
  244. line-height: 2em;
  245. padding: 0 10px;
  246. text-decoration: none;
  247. color: #666666;
  248. }
  249. .simditor .simditor-toolbar .toolbar-menu ul > li .menu-item:hover {
  250. background: #f6f6f6;
  251. }
  252. .simditor .simditor-toolbar .toolbar-menu ul > li .menu-item.menu-item-h1 {
  253. font-size: 24px;
  254. color: #333333;
  255. }
  256. .simditor .simditor-toolbar .toolbar-menu ul > li .menu-item.menu-item-h2 {
  257. font-size: 22px;
  258. color: #333333;
  259. }
  260. .simditor .simditor-toolbar .toolbar-menu ul > li .menu-item.menu-item-h3 {
  261. font-size: 20px;
  262. color: #333333;
  263. }
  264. .simditor .simditor-toolbar .toolbar-menu ul > li .menu-item.menu-item-h4 {
  265. font-size: 18px;
  266. color: #333333;
  267. }
  268. .simditor .simditor-toolbar .toolbar-menu ul > li .menu-item.menu-item-h5 {
  269. font-size: 16px;
  270. color: #333333;
  271. }
  272. .simditor .simditor-toolbar .toolbar-menu ul > li .separator {
  273. display: block;
  274. border-top: 1px solid #cccccc;
  275. height: 0;
  276. line-height: 0;
  277. font-size: 0;
  278. margin: 6px 0;
  279. }
  280. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color {
  281. width: 96px;
  282. }
  283. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list {
  284. height: 40px;
  285. margin: 10px 6px 6px 10px;
  286. padding: 0;
  287. min-width: 0;
  288. }
  289. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li {
  290. float: left;
  291. margin: 0 4px 4px 0;
  292. }
  293. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color {
  294. display: block;
  295. width: 16px;
  296. height: 16px;
  297. background: #dfdfdf;
  298. border-radius: 2px;
  299. }
  300. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color:hover {
  301. opacity: 0.8;
  302. }
  303. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color.font-color-default {
  304. background: #333333;
  305. }
  306. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color-1 {
  307. background: #E33737;
  308. }
  309. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color-2 {
  310. background: #e28b41;
  311. }
  312. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color-3 {
  313. background: #c8a732;
  314. }
  315. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color-4 {
  316. background: #209361;
  317. }
  318. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color-5 {
  319. background: #418caf;
  320. }
  321. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color-6 {
  322. background: #aa8773;
  323. }
  324. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-color .color-list li .font-color-7 {
  325. background: #999999;
  326. }
  327. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-table .menu-create-table {
  328. background: #ffffff;
  329. }
  330. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-table .menu-create-table table {
  331. border: none;
  332. border-collapse: collapse;
  333. border-spacing: 0;
  334. table-layout: fixed;
  335. }
  336. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-table .menu-create-table table td {
  337. height: 16px;
  338. padding: 0;
  339. border: 2px solid #ffffff;
  340. background: #f3f3f3;
  341. cursor: pointer;
  342. }
  343. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-table .menu-create-table table td:before {
  344. width: 16px;
  345. display: block;
  346. content: "";
  347. }
  348. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-table .menu-create-table table td.selected {
  349. background: #cfcfcf;
  350. }
  351. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-table .menu-edit-table {
  352. display: none;
  353. }
  354. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-table .menu-edit-table ul {
  355. min-width: 240px;
  356. }
  357. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-image .menu-item-upload-image {
  358. position: relative;
  359. overflow: hidden;
  360. }
  361. .simditor .simditor-toolbar .toolbar-menu.toolbar-menu-image .menu-item-upload-image input[type=file] {
  362. position: absolute;
  363. right: 0px;
  364. top: 0px;
  365. opacity: 0;
  366. font-size: 100px;
  367. cursor: pointer;
  368. }
  369. .simditor .simditor-popover {
  370. display: none;
  371. padding: 5px 8px 0;
  372. background: #ffffff;
  373. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  374. border-radius: 2px;
  375. position: absolute;
  376. z-index: 2;
  377. }
  378. .simditor .simditor-popover .settings-field {
  379. margin: 0 0 5px 0;
  380. font-size: 12px;
  381. height: 25px;
  382. line-height: 25px;
  383. }
  384. .simditor .simditor-popover .settings-field label {
  385. margin: 0 8px 0 0;
  386. float: left;
  387. }
  388. .simditor .simditor-popover .settings-field input[type=text] {
  389. float: left;
  390. width: 200px;
  391. box-sizing: border-box;
  392. font-size: 12px;
  393. }
  394. .simditor .simditor-popover .settings-field input[type=text].image-size {
  395. width: 87px;
  396. }
  397. .simditor .simditor-popover .settings-field .times {
  398. float: left;
  399. width: 26px;
  400. font-size: 12px;
  401. text-align: center;
  402. }
  403. .simditor .simditor-popover.link-popover .btn-unlink, .simditor .simditor-popover.image-popover .btn-upload, .simditor .simditor-popover.image-popover .btn-restore {
  404. float: left;
  405. margin: 0 0 0 8px;
  406. color: #333333;
  407. font-size: 14px;
  408. outline: 0;
  409. }
  410. .simditor .simditor-popover.link-popover .btn-unlink span, .simditor .simditor-popover.image-popover .btn-upload span, .simditor .simditor-popover.image-popover .btn-restore span {
  411. opacity: 0.6;
  412. }
  413. .simditor .simditor-popover.link-popover .btn-unlink:hover span, .simditor .simditor-popover.image-popover .btn-upload:hover span, .simditor .simditor-popover.image-popover .btn-restore:hover span {
  414. opacity: 1;
  415. }
  416. .simditor .simditor-popover.image-popover .btn-upload {
  417. position: relative;
  418. display: inline-block;
  419. overflow: hidden;
  420. }
  421. .simditor .simditor-popover.image-popover .btn-upload input[type=file] {
  422. position: absolute;
  423. right: 0px;
  424. top: 0px;
  425. opacity: 0;
  426. height: 100%;
  427. width: 28px;
  428. }
  429. .simditor.simditor-mobile .simditor-toolbar > ul > li > .toolbar-item {
  430. width: 46px;
  431. }
  432. .simditor.simditor-mobile .simditor-wrapper.toolbar-floating .simditor-toolbar {
  433. position: absolute;
  434. top: 0;
  435. z-index: 10;
  436. box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  437. }
  438. .simditor .simditor-body, .editor-style {
  439. font-size: 16px;
  440. font-family: arial, sans-serif;
  441. line-height: 1.6;
  442. color: #333;
  443. outline: none;
  444. word-wrap: break-word;
  445. }
  446. .simditor .simditor-body > :first-child, .editor-style > :first-child {
  447. margin-top: 0 !important;
  448. }
  449. .simditor .simditor-body a, .editor-style a {
  450. color: #4298BA;
  451. text-decoration: none;
  452. word-break: break-all;
  453. }
  454. .simditor .simditor-body a:visited, .editor-style a:visited {
  455. color: #4298BA;
  456. }
  457. .simditor .simditor-body a:hover, .editor-style a:hover {
  458. color: #0F769F;
  459. }
  460. .simditor .simditor-body a:active, .editor-style a:active {
  461. color: #9E792E;
  462. }
  463. .simditor .simditor-body a:hover, .simditor .simditor-body a:active, .editor-style a:hover, .editor-style a:active {
  464. outline: 0;
  465. }
  466. .simditor .simditor-body h1, .simditor .simditor-body h2, .simditor .simditor-body h3, .simditor .simditor-body h4, .simditor .simditor-body h5, .simditor .simditor-body h6, .editor-style h1, .editor-style h2, .editor-style h3, .editor-style h4, .editor-style h5, .editor-style h6 {
  467. font-weight: normal;
  468. margin: 40px 0 20px;
  469. color: #000000;
  470. }
  471. .simditor .simditor-body h1, .editor-style h1 {
  472. font-size: 24px;
  473. }
  474. .simditor .simditor-body h2, .editor-style h2 {
  475. font-size: 22px;
  476. }
  477. .simditor .simditor-body h3, .editor-style h3 {
  478. font-size: 20px;
  479. }
  480. .simditor .simditor-body h4, .editor-style h4 {
  481. font-size: 18px;
  482. }
  483. .simditor .simditor-body h5, .editor-style h5 {
  484. font-size: 16px;
  485. }
  486. .simditor .simditor-body h6, .editor-style h6 {
  487. font-size: 16px;
  488. }
  489. .simditor .simditor-body p, .simditor .simditor-body div, .editor-style p, .editor-style div {
  490. word-wrap: break-word;
  491. margin: 0 0 15px 0;
  492. color: #333;
  493. word-wrap: break-word;
  494. }
  495. .simditor .simditor-body b, .simditor .simditor-body strong, .editor-style b, .editor-style strong {
  496. font-weight: bold;
  497. }
  498. .simditor .simditor-body i, .simditor .simditor-body em, .editor-style i, .editor-style em {
  499. font-style: italic;
  500. }
  501. .simditor .simditor-body u, .editor-style u {
  502. text-decoration: underline;
  503. }
  504. .simditor .simditor-body strike, .simditor .simditor-body del, .editor-style strike, .editor-style del {
  505. text-decoration: line-through;
  506. }
  507. .simditor .simditor-body ul, .simditor .simditor-body ol, .editor-style ul, .editor-style ol {
  508. list-style: disc outside none;
  509. margin: 15px 0;
  510. padding: 0 0 0 40px;
  511. line-height: 1.6;
  512. }
  513. .simditor .simditor-body ul ul, .simditor .simditor-body ul ol, .simditor .simditor-body ol ul, .simditor .simditor-body ol ol, .editor-style ul ul, .editor-style ul ol, .editor-style ol ul, .editor-style ol ol {
  514. padding-left: 30px;
  515. }
  516. .simditor .simditor-body ul ul, .simditor .simditor-body ol ul, .editor-style ul ul, .editor-style ol ul {
  517. list-style: circle outside none;
  518. }
  519. .simditor .simditor-body ul ul ul, .simditor .simditor-body ol ul ul, .editor-style ul ul ul, .editor-style ol ul ul {
  520. list-style: square outside none;
  521. }
  522. .simditor .simditor-body ol, .editor-style ol {
  523. list-style: decimal;
  524. }
  525. .simditor .simditor-body blockquote, .editor-style blockquote {
  526. border-left: 6px solid #ddd;
  527. padding: 5px 0 5px 10px;
  528. margin: 15px 0 15px 15px;
  529. }
  530. .simditor .simditor-body blockquote > :first-child, .editor-style blockquote > :first-child {
  531. margin-top: 0;
  532. }
  533. .simditor .simditor-body pre, .editor-style pre {
  534. padding: 10px 5px 10px 10px;
  535. margin: 15px 0;
  536. display: block;
  537. line-height: 18px;
  538. background: #F0F0F0;
  539. border-radius: 3px;
  540. font-size: 13px;
  541. font-family: 'monaco', 'Consolas', "Liberation Mono", Courier, monospace;
  542. overflow-x: auto;
  543. white-space: nowrap;
  544. }
  545. .simditor .simditor-body code, .editor-style code {
  546. display: inline-block;
  547. padding: 0 4px;
  548. margin: 0 5px;
  549. background: #eeeeee;
  550. border-radius: 3px;
  551. font-size: 13px;
  552. font-family: 'monaco', 'Consolas', "Liberation Mono", Courier, monospace;
  553. }
  554. .simditor .simditor-body hr, .editor-style hr {
  555. display: block;
  556. height: 0px;
  557. border: 0;
  558. border-top: 1px solid #ccc;
  559. margin: 15px 0;
  560. padding: 0;
  561. }
  562. .simditor .simditor-body table, .editor-style table {
  563. width: 100%;
  564. table-layout: fixed;
  565. border-collapse: collapse;
  566. border-spacing: 0;
  567. margin: 15px 0;
  568. }
  569. .simditor .simditor-body table thead, .editor-style table thead {
  570. background-color: #f9f9f9;
  571. }
  572. .simditor .simditor-body table td, .editor-style table td {
  573. min-width: 40px;
  574. height: 30px;
  575. border: 1px solid #ccc;
  576. vertical-align: top;
  577. padding: 2px 4px;
  578. box-sizing: border-box;
  579. }
  580. .simditor .simditor-body table td.active, .editor-style table td.active {
  581. background-color: #ffffee;
  582. }
  583. .simditor .simditor-body img, .editor-style img {
  584. margin: 0 5px;
  585. vertical-align: middle;
  586. }
  587. .simditor .simditor-body *[data-indent="0"], .editor-style *[data-indent="0"] {
  588. margin-left: 0px;
  589. }
  590. .simditor .simditor-body *[data-indent="1"], .editor-style *[data-indent="1"] {
  591. margin-left: 40px;
  592. }
  593. .simditor .simditor-body *[data-indent="2"], .editor-style *[data-indent="2"] {
  594. margin-left: 80px;
  595. }
  596. .simditor .simditor-body *[data-indent="3"], .editor-style *[data-indent="3"] {
  597. margin-left: 120px;
  598. }
  599. .simditor .simditor-body *[data-indent="4"], .editor-style *[data-indent="4"] {
  600. margin-left: 160px;
  601. }
  602. .simditor .simditor-body *[data-indent="5"], .editor-style *[data-indent="5"] {
  603. margin-left: 200px;
  604. }
  605. .simditor .simditor-body *[data-indent="6"], .editor-style *[data-indent="6"] {
  606. margin-left: 240px;
  607. }
  608. .simditor .simditor-body *[data-indent="7"], .editor-style *[data-indent="7"] {
  609. margin-left: 280px;
  610. }
  611. .simditor .simditor-body *[data-indent="8"], .editor-style *[data-indent="8"] {
  612. margin-left: 320px;
  613. }
  614. .simditor .simditor-body *[data-indent="9"], .editor-style *[data-indent="9"] {
  615. margin-left: 360px;
  616. }
  617. .simditor .simditor-body *[data-indent="10"], .editor-style *[data-indent="10"] {
  618. margin-left: 400px;
  619. }