editor-blocks.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  1. /*
  2. * Theme Name: Apostrophe 2
  3. * Description: Gutenberg Block Editor Styles
  4. */
  5. /*--------------------------------------------------------------
  6. >>> TABLE OF CONTENTS:
  7. ----------------------------------------------------------------
  8. 1.0 General Typography
  9. 2.0 General Block Styles
  10. 3.0 Blocks - Common Blocks
  11. 4.0 Blocks - Formatting
  12. 5.0 Blocks - Layout Elements
  13. 6.0 Blocks - Widgets
  14. --------------------------------------------------------------*/
  15. /*--------------------------------------------------------------
  16. 1.0 General Typography
  17. --------------------------------------------------------------*/
  18. .edit-post-visual-editor .editor-block-list__block,
  19. .editor-default-block-appender textarea.editor-default-block-appender__content {
  20. color: #404040;
  21. font-family: "PT Serif", Georgia, "Times New Roman", serif;
  22. font-size: 19px;
  23. line-height: 1.75;
  24. }
  25. .edit-post-visual-editor .editor-block-list__block {
  26. color: #404040;
  27. font-size: 19px;
  28. }
  29. .edit-post-visual-editor .editor-block-list__block p {
  30. font-size: 19px;
  31. }
  32. .alignleft {
  33. margin-right: 1.5em;
  34. }
  35. .alignright {
  36. margin-left: 1.5em;
  37. }
  38. .wp-block-columns.alignfull,
  39. .editor-block-list__layout .editor-block-list__block[data-align=full] {
  40. padding-left: 60px;
  41. padding-right: 60px;
  42. }
  43. /* Title */
  44. .editor-post-title__block .editor-post-title__input {
  45. -ms-word-wrap: break-word;
  46. clear: both;
  47. font-family: "Open Sans", Arial, sans-serif;
  48. line-height: 1.5;
  49. margin: 1.13636% 0 0.50505%;
  50. word-wrap: break-word;
  51. color: silver;
  52. font-size: 42px;
  53. font-weight: 300;
  54. line-height: 1.25;
  55. }
  56. /* Headings */
  57. .edit-post-visual-editor h1,
  58. .edit-post-visual-editor h2,
  59. .edit-post-visual-editor h3,
  60. .edit-post-visual-editor h4,
  61. .edit-post-visual-editor h5,
  62. .edit-post-visual-editor h6 {
  63. -ms-word-wrap: break-word;
  64. clear: both;
  65. font-family: "Open Sans", Arial, sans-serif;
  66. line-height: 1.5;
  67. margin: 1.13636% 0 0.50505%;
  68. word-wrap: break-word;
  69. }
  70. .edit-post-visual-editor h1 {
  71. color: silver;
  72. font-size: 42px;
  73. font-weight: 300;
  74. line-height: 1.25;
  75. }
  76. .edit-post-visual-editor h2 {
  77. color: #999;
  78. font-size: 32px;
  79. font-weight: 700;
  80. line-height: 1.25;
  81. }
  82. .edit-post-visual-editor h3 {
  83. color: gray;
  84. font-size: 28px;
  85. font-weight: 300;
  86. }
  87. .edit-post-visual-editor h4 {
  88. color: gray;
  89. font-size: 21px;
  90. font-weight: 600;
  91. text-transform: uppercase;
  92. }
  93. .edit-post-visual-editor h5 {
  94. color: #5a5a5a;
  95. font-size: 19px;
  96. font-weight: 400;
  97. }
  98. .edit-post-visual-editor h6 {
  99. color: #5a5a5a;
  100. font-size: 17px;
  101. font-weight: 600;
  102. letter-spacing: 1px;
  103. text-transform: uppercase;
  104. }
  105. /* Paragraphs */
  106. .edit-post-visual-editor p {
  107. margin: 0 0 1.5em;
  108. }
  109. .edit-post-visual-editor blockquote p {
  110. margin-bottom: 1.5em;
  111. }
  112. /* Images */
  113. .wp-block-image figcaption {
  114. font-style: italic;
  115. line-height: 1.2;
  116. margin-bottom: 0.5em;
  117. margin-top: 0.5em;
  118. text-align: center;
  119. }
  120. @media screen and ( min-width: 48em ) {
  121. .edit-post-visual-editor .editor-block-list__block[data-align=wide] {
  122. max-width: 860px;
  123. }
  124. }
  125. /*--------------------------------------------------------------
  126. 2.0 General Block Styles
  127. --------------------------------------------------------------*/
  128. /* Main column width */
  129. .wp-block {
  130. max-width: 760px; /* 730px + 30px padding */
  131. }
  132. /* Link styles */
  133. .edit-post-visual-editor a,
  134. .editor-block-list__block a,
  135. .wp-block-freeform.block-library-rich-text__tinymce a {
  136. color: #117bb8;
  137. transition: 100ms all ease-in;
  138. }
  139. .edit-post-visual-editor a:hover,
  140. .edit-post-visual-editor a:focus,
  141. .edit-post-visual-editor a:active,
  142. .editor-block-list__block a:hover,
  143. .editor-block-list__block a:focus,
  144. .editor-block-list__block a:active,
  145. .wp-block-freeform.block-library-rich-text__tinymce a:hover,
  146. .wp-block-freeform.block-library-rich-text__tinymce a:focus,
  147. .wp-block-freeform.block-library-rich-text__tinymce a:active {
  148. color: #362e77;
  149. }
  150. /* List styles */
  151. .edit-post-visual-editor ul:not(.wp-block-gallery),
  152. .editor-block-list__block ul:not(.wp-block-gallery),
  153. .block-library-list ul {
  154. list-style: disc;
  155. }
  156. .edit-post-visual-editor ul:not(.wp-block-gallery) ul,
  157. .editor-block-list__block ul:not(.wp-block-gallery) ul,
  158. .block-library-list ul ul,
  159. .edit-post-visual-editor ul:not(.wp-block-gallery) ul ul ul,
  160. .editor-block-list__block ul:not(.wp-block-gallery) ul ul ul,
  161. .block-library-list ul ul ul ul {
  162. list-style: circle;
  163. }
  164. .edit-post-visual-editor ul:not(.wp-block-gallery) ul ul,
  165. .editor-block-list__block ul:not(.wp-block-gallery) ul ul,
  166. .block-library-list ul ul ul {
  167. list-style: disc;
  168. }
  169. .edit-post-visual-editor ol,
  170. .editor-block-list__block ol,
  171. .block-library-list ol {
  172. list-style: decimal;
  173. }
  174. .edit-post-visual-editor ol ol,
  175. .editor-block-list__block ol ol,
  176. .block-library-list ol ol,
  177. .edit-post-visual-editor ol ol ol ol,
  178. .editor-block-list__block ol ol ol ol,
  179. .block-library-list ol ol ol ol {
  180. list-style-type: lower-alpha;
  181. }
  182. .edit-post-visual-editor ol ol ol,
  183. .editor-block-list__block ol ol ol,
  184. .block-library-list ol ol ol {
  185. list-style-type: decimal;
  186. }
  187. .edit-post-visual-editor ul:not(.wp-block-gallery) li,
  188. .editor-block-list__block ul:not(.wp-block-gallery) li,
  189. .edit-post-visual-editor ol li,
  190. .editor-block-list__block ol li,
  191. .block-library-list li {
  192. margin-bottom: 0;
  193. }
  194. .edit-post-visual-editor ul:not(.wp-block-gallery) li > ul,
  195. .editor-block-list__block ul:not(.wp-block-gallery) li > ul,
  196. .block-library-list li > ul,
  197. .edit-post-visual-editor li > ol,
  198. .editor-block-list__block li > ol,
  199. .block-library-list li > ol {
  200. margin-bottom: 0;
  201. margin-left: 1.5em;
  202. }
  203. .rtl .edit-post-visual-editor ul:not(.wp-block-gallery),
  204. .rtl .editor-block-list__block ul:not(.wp-block-gallery),
  205. .rtl .block-library-list ul,
  206. .rtl .edit-post-visual-editor ol,
  207. .rtl .editor-block-list__block ol,
  208. .rtl .block-library-list ol {
  209. margin-left: 0;
  210. margin-right: 1.5em;
  211. padding: 0;
  212. }
  213. .rtl .edit-post-visual-editor ol,
  214. .rtl .editor-block-list__block ol,
  215. .rtl .block-library-list ol {
  216. margin-left: 1.5em;
  217. margin-right: 1.5em;
  218. }
  219. /* Quotes */
  220. .rtl .editor-block-list__block blockquote {
  221. border-left: 0;
  222. padding-left: 0;
  223. text-align: right;
  224. }
  225. /* Captions */
  226. [class^="wp-block-"] figcaption {
  227. color: #686868;
  228. font-style: italic;
  229. line-height: 1.6153846154;
  230. padding-top: 0.5384615385em;
  231. }
  232. /*--------------------------------------------------------------
  233. 3.0 Blocks - Common Blocks
  234. --------------------------------------------------------------*/
  235. /* Paragraph */
  236. .wp-block-paragraph.has-drop-cap:not(:focus)::first-letter {
  237. font-size: 64px;
  238. }
  239. /* Quote */
  240. .wp-block-quote {
  241. font-size: 19px;
  242. font-style: italic;
  243. margin: 0 1.5em 1.5em 0;
  244. padding-left: 1.5em;
  245. }
  246. .wp-block-quote:not(.is-large):not(.is-style-large) {
  247. border-color: #d9d9d9;
  248. border-width: 4px;
  249. }
  250. .wp-block-quote p {
  251. color: inherit;
  252. font-size: 19px;
  253. }
  254. .rtl .wp-block-quote {
  255. margin: 0 0 1.5em 1.5em;
  256. }
  257. .rtl .wp-block-quote:not(.is-large):not(.is-style-large),
  258. .wp-block-quote:not(.is-large):not(.is-style-large)[style*="text-align:right"],
  259. .wp-block-quote:not(.is-large):not(.is-style-large)[style*="text-align: right"] {
  260. border-left: 0;
  261. border-right: 4px solid #d9d9d9;
  262. padding-left: 0;
  263. padding-right: 1.5em;
  264. }
  265. .rtl .wp-block-quote:not(.is-large):not(.is-style-large)[style*="text-align:left"],
  266. .rtl .wp-block-quote:not(.is-large):not(.is-style-large)[style*="text-align: left"] {
  267. border-left: 4px solid #d9d9d9;
  268. border-right: 0;
  269. padding-left: 1.5em;
  270. padding-right: 0;
  271. }
  272. .wp-block-quote:not(.is-large):not(.is-style-large)[style*="text-align:center"],
  273. .wp-block-quote:not(.is-large):not(.is-style-large)[style*="text-align: center"] {
  274. border-left: 0;
  275. border-right: 0;
  276. padding-left: 0;
  277. padding-right: 0;
  278. }
  279. .editor-block-list__block .wp-block-quote__citation {
  280. color: gray;
  281. display: block;
  282. font-size: 19px;
  283. font-style: normal;
  284. margin-top: 0.25em;
  285. }
  286. .editor-block-list__block .wp-block-quote em,
  287. .editor-block-list__block .wp-block-quote i {
  288. font-style: normal;
  289. }
  290. .editor-block-list__block .wp-block-quote > :last-child {
  291. margin-bottom: 0;
  292. }
  293. .editor-block-list__block .wp-block-quote.is-large,
  294. .editor-block-list__block .wp-block-quote.is-style-large,
  295. .editor-block-list__block .wp-block-quote.is-large p,
  296. .editor-block-list__block .wp-block-quote.is-style-large p {
  297. font-size: 120%;
  298. }
  299. /* Audio */
  300. /* Cover */
  301. .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image .wp-block-cover-image-text,
  302. .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image .wp-block-cover-text,
  303. .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image h2,
  304. .edit-post-visual-editor .editor-block-list__block .wp-block-cover .wp-block-cover-image-text,
  305. .edit-post-visual-editor .editor-block-list__block .wp-block-cover .wp-block-cover-text,
  306. .edit-post-visual-editor .editor-block-list__block .wp-block-cover h2 {
  307. font-size: 2.0em; /* Cover images inherit the paragraph size; this resets it */
  308. }
  309. /* File */
  310. .wp-block-file__textlink {
  311. box-shadow: 0 1px 0 0 currentColor;
  312. color: #007acc;
  313. }
  314. .wp-block-file .wp-block-file__button {
  315. background: rgba(255, 255, 255, 0.25);
  316. border: 2px solid #117bb8;
  317. border-radius: 0;
  318. color: #159ae7;
  319. cursor: pointer;
  320. display: inline-block;
  321. font-family: "Open Sans", Arial, sans-serif;
  322. font-size: 18px;
  323. font-weight: 300;
  324. line-height: 1;
  325. margin: 5px 0;
  326. padding: 12px 24px;
  327. text-align: center;
  328. text-decoration: none;
  329. }
  330. /*--------------------------------------------------------------
  331. 4.0 Blocks - Formatting
  332. --------------------------------------------------------------*/
  333. /* Verse */
  334. .wp-block-verse pre {
  335. background: transparent;
  336. color: inherit;
  337. font-family: inherit;
  338. line-height: inherit;
  339. margin-bottom: 1.5em;
  340. max-width: 100%;
  341. overflow: auto;
  342. padding: 0;
  343. }
  344. /* Code */
  345. .wp-block-code {
  346. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  347. font-size: 0.85em;
  348. }
  349. /* Classic */
  350. .wp-block-freeform.block-library-rich-text__tinymce blockquote {
  351. border-left: 4px solid #d9d9d9;
  352. font-style: italic;
  353. margin: 0 1.5em 1.5em 0;
  354. padding-left: 1.5em;
  355. }
  356. .wp-block-freeform.block-library-rich-text__tinymce blockquote p {
  357. }
  358. .wp-block-freeform.block-library-rich-text__tinymce blockquote > :last-child {
  359. margin-bottom: 0;
  360. }
  361. .editor-block-list__block .wp-block-freeform.block-library-rich-text__tinymce blockquote:not(.alignleft):not(.alignright) {
  362. }
  363. .wp-block-freeform.block-library-rich-text__tinymce blockquote cite {
  364. color: gray;
  365. display: block;
  366. font-style: normal;
  367. margin-top: 0.25em;
  368. }
  369. .wp-block-freeform.block-library-rich-text__tinymce blockquote cite:before {
  370. content: "-";
  371. }
  372. .rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote {
  373. border-left: 0;
  374. border-right: 4px solid #d9d9d9;
  375. margin: 0 0 1.5em 1.5em;
  376. padding-left: 0;
  377. padding-right: 1.5em;
  378. }
  379. .rtl .wp-block-freeform.block-library-rich-text__tinymce .alignleft {
  380. float: left;
  381. }
  382. .rtl .wp-block-freeform.block-library-rich-text__tinymce .alignright {
  383. float: right;
  384. }
  385. .rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote.alignleft {
  386. margin: .75em 1.5em .75em 0;
  387. }
  388. .rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote.alignright {
  389. margin: .75em 0 .75em 1.5em;
  390. }
  391. .wp-block-freeform.block-library-rich-text__tinymce h1 {
  392. color: silver;
  393. font-size: 42px;
  394. font-weight: 300;
  395. line-height: 1.25;
  396. }
  397. .wp-block-freeform.block-library-rich-text__tinymce h2 {
  398. color: #999;
  399. font-size: 32px;
  400. font-weight: 700;
  401. line-height: 1.25;
  402. }
  403. .wp-block-freeform.block-library-rich-text__tinymce h3 {
  404. color: gray;
  405. font-size: 28px;
  406. font-weight: 300;
  407. }
  408. .wp-block-freeform.block-library-rich-text__tinymce h4 {
  409. color: gray;
  410. font-size: 21px;
  411. font-weight: 600;
  412. text-transform: uppercase;
  413. }
  414. .wp-block-freeform.block-library-rich-text__tinymce h5 {
  415. color: #5a5a5a;
  416. font-size: 19px;
  417. font-weight: 400;
  418. }
  419. .wp-block-freeform.block-library-rich-text__tinymce h6 {
  420. color: #5a5a5a;
  421. font-size: 17px;
  422. font-weight: 600;
  423. letter-spacing: 1px;
  424. text-transform: uppercase;
  425. }
  426. .wp-block-freeform.block-library-rich-text__tinymce pre {
  427. background: #eee;
  428. font-family: "Courier 10 Pitch", Courier, monospace;
  429. font-size: 0.85em;
  430. line-height: 1.6;
  431. margin-bottom: 1.5em;
  432. max-width: 100%;
  433. overflow: auto;
  434. padding: 1.5em;
  435. white-space: pre-wrap;
  436. word-wrap: break-word;
  437. }
  438. .wp-block-freeform.block-library-rich-text__tinymce table {
  439. font-size: 0.85em;
  440. display: table;
  441. margin: 0 0 1.5em;
  442. width: 100%;
  443. border-collapse: collapse;
  444. }
  445. .wp-block-freeform.block-library-rich-text__tinymce .alternate {
  446. background: transparent;
  447. }
  448. .wp-block-freeform.block-library-rich-text__tinymce table td,
  449. .wp-block-freeform.block-library-rich-text__tinymce table th {
  450. padding: 8px 8px;
  451. border: 0;
  452. border-bottom: solid 1px;
  453. }
  454. .wp-block-freeform.block-library-rich-text__tinymce table td a,
  455. .wp-block-freeform.block-library-rich-text__tinymce table th a {
  456. text-decoration: none;
  457. }
  458. .wp-block-freeform.block-library-rich-text__tinymce table th {
  459. border-bottom: solid 3px;
  460. }
  461. .wp-block-freeform.block-library-rich-text__tinymce table tbody th {
  462. border-bottom: solid 1px;
  463. }
  464. /* Address */
  465. .wp-block-freeform.block-library-rich-text__tinymce address {
  466. margin-bottom: 1.5em;
  467. }
  468. /* Definition List styles */
  469. .wp-block-freeform.block-library-rich-text__tinymce dt {
  470. font-weight: bold;
  471. }
  472. .wp-block-freeform.block-library-rich-text__tinymce dd {
  473. margin: 0 1.5em 1.5em;
  474. }
  475. /* Code styles */
  476. .wp-block-freeform.block-library-rich-text__tinymce code,
  477. .wp-block-freeform.block-library-rich-text__tinymce kbd,
  478. .wp-block-freeform.block-library-rich-text__tinymce tt,
  479. .wp-block-freeform.block-library-rich-text__tinymce var {
  480. background: transparent;
  481. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  482. font-size: 14.0625px;
  483. }
  484. /* Mark, Ins styles */
  485. .wp-block-freeform.block-library-rich-text__tinymce mark,
  486. .wp-block-freeform.block-library-rich-text__tinymce ins {
  487. background: #fff9c0;
  488. text-decoration: none;
  489. }
  490. /* Preformatted */
  491. .editor-block-list__block .wp-block-preformatted pre {
  492. background: #eee;
  493. font-family: "Courier 10 Pitch", Courier, monospace;
  494. font-size: 0.85em;
  495. line-height: 1.6;
  496. margin-bottom: 1.5em;
  497. max-width: 100%;
  498. overflow: auto;
  499. padding: 1.5em;
  500. white-space: pre-wrap;
  501. word-wrap: break-word;
  502. }
  503. /* Pullquote */
  504. .editor-block-list__block .wp-block-pullquote blockquote {
  505. margin: 0;
  506. padding: 0;
  507. border: 0;
  508. }
  509. .wp-block-pullquote {
  510. border-bottom: 2px solid #a6a6a6;
  511. border-left: 0;
  512. border-top: 4px solid #d9d9d9;
  513. color: #a6a6a6;
  514. font-size: 28px;
  515. margin: 0 0 1.5em;
  516. padding: .75em 0;
  517. }
  518. .wp-block-pullquote blockquote {
  519. font-size: 28px;
  520. }
  521. .edit-post-visual-editor .editor-block-list__block .wp-block-pullquote blockquote p {
  522. font-size: 28px;
  523. }
  524. .wp-block-pullquote.alignleft {
  525. margin-right: 1.5em;
  526. }
  527. .wp-block-pullquote.alignright {
  528. margin-left: 1.5em;
  529. }
  530. .wp-block-pullquote blockquote > .editor-rich-text p {
  531. color: inherit;
  532. margin: 0;
  533. }
  534. .wp-block-pullquote.alignleft,
  535. .wp-block-pullquote.alignright {
  536. font-size: .8em;
  537. }
  538. .wp-block-pullquote .wp-block-pullquote__citation {
  539. font-size: 18px;
  540. text-transform: none;
  541. }
  542. .wp-block-pullquote .wp-block-pullquote__citation:before {
  543. content: "-";
  544. }
  545. /* Table */
  546. .editor-block-list__block table.wp-block-table {
  547. display: table;
  548. font-size: 0.85em;
  549. margin: 0 0 1.5em;
  550. width: 100%;
  551. }
  552. .editor-block-list__block table.wp-block-table td,
  553. .editor-block-list__block table.wp-block-table th {
  554. padding: 8px 8px;
  555. border: 0;
  556. border-bottom: solid 1px;
  557. }
  558. .editor-block-list__block table.wp-block-table th {
  559. border-bottom: solid 3px;
  560. }
  561. .editor-block-list__block table.wp-block-table tbody th {
  562. border-bottom: solid 1px;
  563. }
  564. /*--------------------------------------------------------------
  565. 5.0 Blocks - Layout Elements
  566. --------------------------------------------------------------*/
  567. /* Buttons */
  568. .wp-block-button .wp-block-button__link {
  569. background-color: #117bb8;
  570. color: #fff;
  571. cursor: pointer;
  572. display: inline-block;
  573. font-family: "Open Sans", Arial, sans-serif;
  574. font-size: 18px;
  575. font-weight: 300;
  576. line-height: 1;
  577. margin: 5px 0;
  578. padding: 12px 24px;
  579. text-align: center;
  580. text-decoration: none;
  581. }
  582. .wp-block-button.is-style-outline .wp-block-button__link {
  583. background: transparent;
  584. color: #117bb8;
  585. }
  586. /* Separator */
  587. .wp-block-separator {
  588. background-color: #ccc;
  589. border: 0;
  590. height: 1px;
  591. margin-bottom: 1.5em;
  592. max-width: 100%;
  593. }
  594. .wp-block-separator.is-wide {
  595. max-width: 120%;
  596. margin-left: -10%;
  597. margin-right: -10%;
  598. }
  599. /*--------------------------------------------------------------
  600. 6.0 Blocks - Widgets
  601. --------------------------------------------------------------*/
  602. /* Categories & Archives */
  603. .edit-post-visual-editor [data-align="center"] .wp-block-categories__list,
  604. .edit-post-visual-editor [data-align="center"] .wp-block-archives,
  605. .edit-post-visual-editor [data-align="center"] .wp-block-lastest-posts {
  606. list-style-position: inside;
  607. }
  608. /* Latest Comments */
  609. .editor-block-list__block .wp-block-latest-comments__comment-meta a {
  610. box-shadow: none;
  611. font-weight: 700;
  612. text-decoration: none;
  613. }
  614. .wp-block-latest-comments .wp-block-latest-comments__comment {
  615. border-top: 1px solid #d1d1d1;
  616. margin-bottom: 0;
  617. padding: 1.5em 0;
  618. }
  619. .wp-block-latest-comments__comment-excerpt p:last-child {
  620. margin-bottom: 0;
  621. }
  622. /* Latest Posts */
  623. .edit-post-visual-editor .wp-block-latest-posts.is-grid {
  624. list-style: none;
  625. margin-left: 0;
  626. margin-right: 0;
  627. }
  628. .edit-post-visual-editor .wp-block-latest-posts.is-grid li {
  629. margin-bottom: 1em;
  630. }