Make WordPress Core

Ticket #45044: 45044.2.patch

File 45044.2.patch, 24.7 KB (added by laurelfulford, 6 years ago)
  • src/wp-content/themes/twentysixteen/css/blocks.css

     
     1/*
     2Theme Name: Twenty Sixteen
     3Description: Used to style Gutenberg Blocks.
     4*/
     5
     6/*--------------------------------------------------------------
     7>>> TABLE OF CONTENTS:
     8----------------------------------------------------------------
     91.0 General Block Styles
     102.0 Blocks - Common Blocks
     113.0 Blocks - Formatting
     124.0 Blocks - Layout Elements
     135.0 Blocks - Widgets
     146.0 Blocks - Colors
     15--------------------------------------------------------------*/
     16
     17/*--------------------------------------------------------------
     181.0 General Block Styles
     19--------------------------------------------------------------*/
     20
     21/* Captions */
     22
     23[class^="wp-block-"] figcaption {
     24        color: #686868;
     25        font-style: italic;
     26        line-height: 1.6153846154;
     27        padding-top: 0.5384615385em;
     28}
     29
     30/*--------------------------------------------------------------
     312.0 Blocks - Common Blocks
     32--------------------------------------------------------------*/
     33
     34/* Paragraph */
     35
     36p.has-drop-cap:not(:focus)::first-letter {
     37        font-size: 5em;
     38}
     39
     40/* Gallery */
     41
     42.wp-block-gallery {
     43        margin-bottom: 1.75em;
     44}
     45
     46/* Quote */
     47
     48.wp-block-quote:not(.is-large):not(.is-style-large).alignleft,
     49.wp-block-quote:not(.is-large):not(.is-style-large).alignright {
     50        border-left: none;
     51        padding-left: 0;
     52}
     53
     54.rtl .wp-block-quote:not(.is-large):not(.is-style-large).alignleft,
     55.rtl .wp-block-quote:not(.is-large):not(.is-style-large).alignright {
     56        border-right: none;
     57        padding-right: 0;
     58}
     59
     60.wp-block-quote cite {
     61        color: #1a1a1a;
     62        display: block;
     63        font-size: 16px;
     64        font-size: 1rem;
     65        line-height: 1.75;
     66}
     67
     68.wp-block-quote cite:before {
     69        content: "\2014\00a0";
     70}
     71
     72/* Audio */
     73
     74.wp-block-audio audio {
     75        display: block;
     76        width: 100%;
     77}
     78
     79/* File */
     80
     81.wp-block-file .wp-block-file__button {
     82        background: #1a1a1a;
     83        border: 0;
     84        border-radius: 2px;
     85        color: #fff;
     86        font-family: Montserrat, "Helvetica Neue", sans-serif;
     87        font-weight: 700;
     88        letter-spacing: 0.046875em;
     89        line-height: 1;
     90        padding: 0.84375em 0.875em 0.78125em;
     91        text-transform: uppercase;
     92}
     93
     94.wp-block-file .wp-block-file__button:hover,
     95.wp-block-file .wp-block-file__button:focus {
     96        background: #007acc;
     97}
     98
     99.wp-block-file .wp-block-file__button:focus {
     100        outline: thin dotted;
     101        outline-offset: -4px;
     102}
     103
     104.rtl .wp-block-file * + .wp-block-file__button {
     105        margin-left: 0.75em;
     106        margin-right: 0;
     107}
     108
     109/*--------------------------------------------------------------
     1103.0 Blocks - Formatting Blocks
     111--------------------------------------------------------------*/
     112
     113/* Code */
     114
     115.wp-block-code {
     116        border: 0;
     117        font-family: Inconsolata, monospace;
     118        font-size: 16px;
     119        font-size: 1rem;
     120        line-height: 1.75;
     121        padding: 0;
     122}
     123
     124/* Pullquote */
     125
     126.wp-block-pullquote {
     127        border-width: 4px;
     128}
     129
     130.wp-block-pullquote blockquote {
     131        border-left: 0;
     132        margin: 0;
     133        padding: 0;
     134}
     135
     136.rtl .wp-block-pullquote blockquote {
     137        border-right: 0;
     138}
     139
     140.wp-block-pullquote p {
     141        color: #686868;
     142        font-size: 19px;
     143        font-size: 1.1875rem;
     144}
     145
     146.wp-block-pullquote cite {
     147        color: #1a1a1a;
     148        display: block;
     149        font-size: 16px;
     150        font-size: 1rem;
     151        font-style: none;
     152        line-height: 1.75;
     153        text-transform: none;
     154}
     155
     156.wp-block-pullquote cite:before {
     157        content: "\2014\00a0";
     158}
     159
     160/* Table */
     161
     162.wp-block-table,
     163.wp-block-table th,
     164.wp-block-table td {
     165        border: 1px solid #d1d1d1;
     166}
     167
     168.wp-block-table {
     169        border-collapse: separate;
     170        border-spacing: 0;
     171        border-width: 1px 0 0 1px;
     172        margin: 0 0 1.75em;
     173        table-layout: fixed;
     174        width: 100%;
     175}
     176
     177.wp-block-table th,
     178.wp-block-table td {
     179        font-weight: normal;
     180        padding: 0.4375em;
     181        text-align: left;
     182}
     183
     184.wp-block-table th {
     185        border-width: 0 1px 1px 0;
     186        font-weight: 700;
     187}
     188
     189.wp-block-table td {
     190        border-width: 0 1px 1px 0;
     191}
     192
     193.rtl .wp-block-table th,
     194.rtl .wp-block-table td {
     195        text-align: right;
     196}
     197
     198/*--------------------------------------------------------------
     1994.0 Blocks - Layout Elements
     200--------------------------------------------------------------*/
     201
     202/* Buttons */
     203
     204.wp-block-button .wp-block-button__link {
     205        background: #1a1a1a;
     206        border: 0;
     207        border-radius: 2px;
     208        color: #fff;
     209        font-family: Montserrat, "Helvetica Neue", sans-serif;
     210        font-weight: 700;
     211        letter-spacing: 0.046875em;
     212        line-height: 1;
     213        padding: 0.84375em 0.875em 0.78125em;
     214        text-transform: uppercase;
     215}
     216
     217.wp-block-button .wp-block-button__link:hover,
     218.wp-block-button .wp-block-button__link:focus {
     219        background: #007acc;
     220}
     221
     222.wp-block-button .wp-block-button__link:focus {
     223        outline: thin dotted;
     224        outline-offset: -4px;
     225}
     226
     227/* Seperator */
     228
     229hr.wp-block-separator {
     230        border: 0;
     231}
     232
     233.wp-block-separator {
     234        margin-left: auto;
     235        margin-right: auto;
     236        max-width: 100px;
     237}
     238
     239.wp-block-separator.is-style-wide {
     240        max-width: 100%;
     241}
     242
     243/*--------------------------------------------------------------
     2445.0 Blocks - Widget Blocks
     245--------------------------------------------------------------*/
     246
     247/* Comments */
     248
     249.wp-block-latest-comments__comment-meta a {
     250        box-shadow: none;
     251        font-weight: 700;
     252}
     253
     254.wp-block-latest-comments__comment-date {
     255        color: #686868;
     256        font-family: Montserrat, "Helvetica Neue", sans-serif;
     257        font-size: 13px;
     258        font-size: 0.8125rem;
     259        line-height: 1.6153846154;
     260}
     261
     262.wp-block-latest-comments .wp-block-latest-comments__comment {
     263        border-top: 1px solid #d1d1d1;
     264        margin-bottom: 0;
     265        padding: 1.75em 0;
     266}
     267
     268.wp-block-latest-comments__comment-excerpt p:last-child {
     269        margin-bottom: 0;
     270}
     271
     272/*--------------------------------------------------------------
     2736.0 Blocks - Colors
     274--------------------------------------------------------------*/
     275
     276.has-dark-gray-color {
     277        color: #1a1a1a;
     278}
     279
     280.has-dark-gray-background-color {
     281        background-color: #1a1a1a;
     282}
     283
     284.has-medium-gray-color {
     285        color: #686868;
     286}
     287
     288.has-medium-gray-background-color {
     289        background-color: #686868;
     290}
     291
     292.has-light-gray-color {
     293        color: #e5e5e5;
     294}
     295
     296.has-light-gray-background-color {
     297        background-color: #e5e5e5;
     298}
     299
     300.has-white-color {
     301        color: #fff;
     302}
     303
     304.has-white-background-color {
     305        background-color: #fff;
     306}
     307
     308.has-blue-gray-color {
     309        color: #4d545c;
     310}
     311
     312.has-blue-gray-background-color {
     313        background-color: #4d545c;
     314}
     315
     316.has-bright-blue-color {
     317        color: #007acc;
     318}
     319
     320.has-bright-blue-background-color {
     321        background-color: #007acc;
     322}
     323
     324.has-light-blue-color {
     325        color: #9adffd;
     326}
     327
     328.has-light-blue-background-color {
     329        background-color: #9adffd;
     330}
     331
     332.has-dark-brown-color {
     333        color: #402b30;
     334}
     335
     336.has-dark-brown-background-color {
     337        background-color: #402b30;
     338}
     339
     340.has-medium-brown-color {
     341        color: #774e24;
     342}
     343
     344.has-medium-brown-background-color {
     345        background-color: #774e24;
     346}
     347
     348.has-dark-red-color {
     349        color: #640c1f;
     350}
     351
     352.has-dark-red-background-color {
     353        background-color: #640c1f;
     354}
     355
     356.has-bright-red-color {
     357        color: #ff675f;
     358}
     359
     360.has-bright-red-background-color {
     361        background-color: #ff675f;
     362}
     363
     364.has-yellow-color {
     365        color: #ffef8e;
     366}
     367
     368.has-yellow-background-color {
     369        background-color: #ffef8e;
     370}
  • src/wp-content/themes/twentysixteen/css/editor-blocks.css

     
     1/*
     2Theme Name: Twenty Sixteen
     3Description: Used to style Gutenberg Blocks in the editor.
     4*/
     5
     6/*--------------------------------------------------------------
     7>>> TABLE OF CONTENTS:
     8----------------------------------------------------------------
     91.0 General Typography
     102.0 General Block Styles
     113.0 Blocks - Common Blocks
     124.0 Blocks - Formatting
     135.0 Blocks - Layout Elements
     146.0 Blocks - Widgets
     15--------------------------------------------------------------*/
     16
     17/*--------------------------------------------------------------
     181.0 General Typography
     19--------------------------------------------------------------*/
     20
     21.edit-post-visual-editor .editor-block-list__block,
     22.editor-default-block-appender input[type="text"].editor-default-block-appender__content {
     23        color: #1a1a1a;
     24        font-family: Merriweather, Georgia, serif;
     25        font-size: 16px;
     26        font-size: 1rem;
     27        line-height: 1.75;
     28}
     29
     30.edit-post-visual-editor .editor-block-list__block {
     31        color: #1a1a1a;
     32}
     33
     34.editor-post-title__block .editor-post-title__input {
     35        font-family: Montserrat, "Helvetica Neue", sans-serif;
     36        font-size: 28px;
     37        font-size: 1.75rem;
     38        font-weight: 700;
     39        line-height: 1.25;
     40        margin-bottom: 1em;
     41}
     42
     43.edit-post-visual-editor h1 {
     44        font-size: 28px;
     45        font-size: 1.75rem;
     46        line-height: 1.25;
     47        margin-top: 2em;
     48        margin-bottom: 1em;
     49}
     50
     51.edit-post-visual-editor h2 {
     52        font-size: 23px;
     53        font-size: 1.4375rem;
     54        line-height: 1.2173913043;
     55        margin-top: 2.4347826087em;
     56        margin-bottom: 1.2173913043em;
     57}
     58
     59.edit-post-visual-editor h3 {
     60        font-size: 19px;
     61        font-size: 1.1875rem;
     62        line-height: 1.1052631579;
     63        margin-top: 2.9473684211em;
     64        margin-bottom: 1.4736842105em;
     65}
     66
     67.edit-post-visual-editor h4,
     68.edit-post-visual-editor h5,
     69.edit-post-visual-editor h6 {
     70        font-size: 16px;
     71        font-size: 1rem;
     72        line-height: 1.3125;
     73        margin-top: 3.5em;
     74        margin-bottom: 1.75em;
     75}
     76
     77.edit-post-visual-editor h4 {
     78        letter-spacing: 0.140625em;
     79        text-transform: uppercase;
     80}
     81
     82.edit-post-visual-editor h6 {
     83        font-style: italic;
     84}
     85
     86.edit-post-visual-editor h1,
     87.edit-post-visual-editor h2,
     88.edit-post-visual-editor h3,
     89.edit-post-visual-editor h4,
     90.edit-post-visual-editor h5,
     91.edit-post-visual-editor h6 {
     92        font-weight: 900;
     93}
     94
     95@media screen and (min-width: 61.5625em) {
     96        .edit-post-visual-editor h1 {
     97                font-size: 33px;
     98                font-size: 2.0625rem;
     99                line-height: 1.2727272727;
     100                margin-top: 1.696969697em;
     101                margin-bottom: 0.8484848485em;
     102        }
     103
     104        .edit-post-visual-editor h2 {
     105                font-size: 28px;
     106                font-size: 1.75rem;
     107                line-height: 1.25;
     108                margin-top: 2em;
     109                margin-bottom: 1em;
     110        }
     111
     112        .edit-post-visual-editor h3 {
     113                font-size: 23px;
     114                font-size: 1.4375rem;
     115                line-height: 1.2173913043;
     116                margin-top: 2.4347826087em;
     117                margin-bottom: 1.2173913043em;
     118        }
     119
     120        .edit-post-visual-editor h4 {
     121                letter-spacing: 0.131578947em;
     122        }
     123
     124        .edit-post-visual-editor h4,
     125        .edit-post-visual-editor h5,
     126        .edit-post-visual-editor h6 {
     127                font-size: 19px;
     128                font-size: 1.1875rem;
     129                line-height: 1.1052631579;
     130                margin-top: 2.9473684211em;
     131                margin-bottom: 1.473684211em;
     132        }
     133}
     134
     135.edit-post-visual-editor h1:first-child,
     136.edit-post-visual-editor h2:first-child,
     137.edit-post-visual-editor h3:first-child,
     138.edit-post-visual-editor h4:first-child,
     139.edit-post-visual-editor h5:first-child,
     140.edit-post-visual-editor h6:first-child {
     141        margin-top: 0;
     142}
     143
     144.edit-post-visual-editor p {
     145        margin: 0 0 1.75em;
     146}
     147
     148.edit-post-visual-editor blockquote p {
     149        margin-bottom: 1.4736842105em;
     150}
     151
     152@media screen and (min-width: 44.375em) {
     153        .editor-post-title__block .editor-post-title__input {
     154                font-size: 33px;
     155                font-size: 2.0625rem;
     156                line-height: 1.2727272727;
     157                margin-bottom: 0.8484848485em;
     158        }
     159}
     160
     161@media screen and (min-width: 61.5625em) {
     162        .editor-post-title__block .editor-post-title__input {
     163                font-size: 40px;
     164                font-size: 2.5rem;
     165                line-height: 1.225;
     166                margin-bottom: 1.05em;
     167        }
     168}
     169
     170/*--------------------------------------------------------------
     1712.0 General Block Styles
     172--------------------------------------------------------------*/
     173
     174/* Main column width */
     175
     176body.gutenberg-editor-page .edit-post-visual-editor .editor-post-title__block,
     177body.gutenberg-editor-page .edit-post-visual-editor .editor-default-block-appender,
     178body.gutenberg-editor-page .edit-post-visual-editor .editor-block-list__block {
     179        max-width: 630px; /* 600px + 30px for padding; should be 840px for pages */
     180}
     181
     182/* Link styles */
     183
     184.edit-post-visual-editor a,
     185.editor-block-list__block a,
     186.wp-block-freeform.block-library-rich-text__tinymce a {
     187        color: #007acc;
     188}
     189
     190/* List styles */
     191
     192.edit-post-visual-editor ul:not(.wp-block-gallery),
     193.editor-block-list__block ul:not(.wp-block-gallery),
     194.block-library-list ul,
     195.edit-post-visual-editor ol,
     196.editor-block-list__block ol,
     197.block-library-list ol {
     198        margin: 0 0 1.75em 1.25em;
     199        padding: 0;
     200}
     201
     202.edit-post-visual-editor ul:not(.wp-block-gallery),
     203.editor-block-list__block ul:not(.wp-block-gallery),
     204.block-library-list ul {
     205        list-style: disc;
     206}
     207
     208.edit-post-visual-editor ol,
     209.editor-block-list__block ol,
     210.block-library-list ol {
     211        list-style: decimal;
     212        margin-left: 1.5em;
     213}
     214
     215.edit-post-visual-editor ul:not(.wp-block-gallery) li,
     216.editor-block-list__block ul:not(.wp-block-gallery) li,
     217.edit-post-visual-editor ol li,
     218.editor-block-list__block ol li,
     219.block-library-list li {
     220        margin-bottom: 0;
     221}
     222
     223.edit-post-visual-editor ul:not(.wp-block-gallery) li > ul,
     224.editor-block-list__block ul:not(.wp-block-gallery) li > ul,
     225.block-library-list li > ul,
     226.edit-post-visual-editor li > ol,
     227.editor-block-list__block li > ol,
     228.block-library-list li > ol {
     229        margin-bottom: 0;
     230}
     231
     232.rtl .edit-post-visual-editor ul:not(.wp-block-gallery),
     233.rtl .editor-block-list__block ul:not(.wp-block-gallery),
     234.rtl .block-library-list ul,
     235.rtl .edit-post-visual-editor ol,
     236.rtl .editor-block-list__block ol,
     237.rtl .block-library-list ol {
     238        margin-left: 0;
     239        margin-right: 1.25em;
     240        padding: 0;
     241}
     242
     243.rtl .edit-post-visual-editor ol,
     244.rtl .editor-block-list__block ol,
     245.rtl .block-library-list ol {
     246        margin-left: 1.5em;
     247        margin-right: 1.5em;
     248}
     249
     250/* Quotes */
     251
     252.rtl .editor-block-list__block blockquote {
     253        border-left: 0;
     254        padding-left: 0;
     255}
     256
     257/* Captions */
     258
     259[class^="wp-block-"] figcaption {
     260        color: #686868;
     261        font-style: italic;
     262        line-height: 1.6153846154;
     263        padding-top: 0.5384615385em;
     264}
     265
     266/*--------------------------------------------------------------
     2673.0 Blocks - Common Blocks
     268--------------------------------------------------------------*/
     269
     270/* Paragraph */
     271
     272.wp-block-paragraph.has-drop-cap:not(:focus)::first-letter {
     273        font-size: 5em;
     274        line-height: 0.68;
     275        margin: 0.05em 0.1em 0 0;
     276        text-transform: uppercase;
     277        font-style: normal;
     278}
     279
     280.rtl .wp-block-paragraph.has-drop-cap:not(:focus)::first-letter {
     281        margin: 0.05em 0 0 0.1em;
     282}
     283
     284/* Quote */
     285
     286.wp-block-quote {
     287        border: 0 solid #1a1a1a;
     288        border-left-width: 4px;
     289        color: #686868;
     290        font-style: italic;
     291        line-height: 1.4736842105;
     292        margin: 0 0 1.4736842105em;
     293        overflow: hidden;
     294        padding: 0 0 0 1.263157895em;
     295}
     296
     297.wp-block-quote:not(.is-large):not(.is-style-large).alignleft,
     298.wp-block-quote:not(.is-large):not(.is-style-large).alignright {
     299        border-left: 0;
     300        padding-left: 0;
     301}
     302
     303.editor-block-list__block .wp-block-quote p {
     304        font-size: 19px;
     305        font-size: 1.1875rem;
     306        margin-bottom: 1.4736842105em;
     307}
     308
     309.wp-block-quote__citation {
     310        color: #1a1a1a;
     311        display: block;
     312        font-size: 16px;
     313        font-size: 1rem;
     314        line-height: 1.75;
     315}
     316
     317.wp-block-quote__citation:before {
     318        content: "\2014\00a0";
     319}
     320
     321.wp-block-quote em,
     322.wp-block-quote i,
     323.wp-block-quote__citation:before {
     324        font-style: normal;
     325}
     326
     327.wp-block-quote strong,
     328.wp-block-quote b {
     329        font-weight: 400;
     330}
     331
     332.wp-block-quote > :last-child {
     333        margin-bottom: 0;
     334}
     335
     336.wp-block-quote.alignleft {
     337        margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
     338}
     339
     340.wp-block-quote.alignright {
     341        margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
     342}
     343
     344.wp-block-quote.aligncenter {
     345        margin-bottom: 1.473684211em;
     346}
     347
     348.rtl .wp-block-quote:not(.is-large):not(.is-style-large).alignleft,
     349.rtl .wp-block-quote:not(.is-large):not(.is-style-large).alignright  {
     350        border-right: 0;
     351        padding-right: 0;
     352}
     353
     354@media screen and (min-width: 44.375em) {
     355        .wp-block-quote.alignleft,
     356        .wp-block-quote.alignright {
     357                border-width: 4px 0 0 0;
     358                padding: 0.9473684211em 0 0;
     359                width: -webkit-calc(50% - 0.736842105em);
     360                width: calc(50% - 0.736842105em);
     361        }
     362
     363        .wp-block-quote:not(.alignleft):not(.alignright) {
     364                margin-left: -1.473684211em;
     365        }
     366
     367        .rtl .wp-block-quote:not(.alignleft):not(.alignright) {
     368                margin-left: 0;
     369                margin-right: -1.473684211em;
     370        }
     371}
     372
     373@media screen and (min-width: 80em) {
     374        .editor-block-list__block .wp-block-quote.alignleft {
     375                margin-left: -40%;
     376                width: -webkit-calc(60% - 1.4736842105em);
     377                width: calc(60% - 1.4736842105em);
     378        }
     379}
     380
     381/* File */
     382
     383.wp-block-file__textlink {
     384        box-shadow: 0 1px 0 0 currentColor;
     385        color: #007acc;
     386}
     387
     388.wp-block-file .wp-block-file__button {
     389        background: #1a1a1a;
     390        border: 0;
     391        border-radius: 2px;
     392        color: #fff;
     393        font-family: Montserrat, "Helvetica Neue", sans-serif;
     394        font-weight: 700;
     395        letter-spacing: 0.046875em;
     396        line-height: 1;
     397        padding: 0.84375em 0.875em 0.78125em;
     398        text-transform: uppercase;
     399}
     400
     401/*--------------------------------------------------------------
     4024.0 Blocks - Formatting
     403--------------------------------------------------------------*/
     404
     405/* Code */
     406
     407.wp-block-code {
     408        border: 0;
     409        padding: 0.125em 0.25em;
     410}
     411
     412/* Classic */
     413
     414.wp-block-freeform.block-library-rich-text__tinymce blockquote {
     415        border: 0 solid #1a1a1a;
     416        border-left-width: 4px;
     417        color: #686868;
     418        font-style: italic;
     419        line-height: 1.4736842105;
     420        margin: 0 0 1.4736842105em;
     421        overflow: hidden;
     422        padding: 0 0 0 1.263157895em;
     423}
     424
     425.editor-block-list__block .wp-block-freeform.block-library-rich-text__tinymce blockquote:not(.alignleft):not(.alignright) {
     426        margin-left: 0;
     427}
     428
     429.wp-block-freeform.block-library-rich-text__tinymce blockquote p {
     430        font-size: 19px;
     431        font-size: 1.1875rem;
     432}
     433
     434.wp-block-freeform.block-library-rich-text__tinymce blockquote cite {
     435        color: #1a1a1a;
     436        display: block;
     437        font-size: 16px;
     438        font-size: 1rem;
     439        font-style: normal;
     440        line-height: 1.75;
     441}
     442
     443.wp-block-freeform.block-library-rich-text__tinymce blockquote cite:before {
     444        content: "\2014\00a0";
     445}
     446
     447.wp-block-freeform.block-library-rich-text__tinymce blockquote.alignleft {
     448        margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
     449}
     450
     451.wp-block-freeform.block-library-rich-text__tinymce blockquote.alignright {
     452        margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
     453}
     454
     455.wp-block-freeform.block-library-rich-text__tinymce blockquote.aligncenter {
     456        margin-bottom: 1.473684211em;
     457}
     458
     459@media screen and (min-width: 44.375em) {
     460        .wp-block-freeform.block-library-rich-text__tinymce blockquote.alignleft,
     461        .wp-block-freeform.block-library-rich-text__tinymce blockquote.alignright {
     462                border-width: 4px 0 0 0;
     463                padding: 0.9473684211em 0 0;
     464                width: -webkit-calc(50% - 0.736842105em);
     465                width: calc(50% - 0.736842105em);
     466        }
     467}
     468
     469.rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote {
     470        border-left-width: 0;
     471        border-right-width: 4px;
     472        overflow: hidden;
     473        padding-left: 0;
     474        padding-right: 1.263157895em;
     475}
     476
     477.rtl .wp-block-freeform.block-library-rich-text__tinymce .alignleft {
     478        float: left;
     479}
     480
     481.rtl .wp-block-freeform.block-library-rich-text__tinymce .alignright {
     482        float: right;
     483}
     484
     485.rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote.alignleft {
     486        margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
     487}
     488
     489.rtl .wp-block-freeform.block-library-rich-text__tinymce blockquote.alignright {
     490        margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
     491}
     492
     493/* Pullquote */
     494
     495.editor-block-list__block .wp-block-pullquote blockquote {
     496        border: 0;
     497        margin: 0;
     498        padding: 0;
     499}
     500
     501.wp-block-pullquote blockquote > .editor-rich-text p {
     502        color: #686868;
     503        font-size: 19px;
     504        font-size: 1.1875rem;
     505}
     506
     507.wp-block-pullquote .wp-block-pullquote__citation {
     508        color: #1a1a1a;
     509        display: block;
     510        font-size: 16px;
     511        font-size: 1rem;
     512        font-style: italic;
     513        line-height: 1.75;
     514        text-transform: none;
     515}
     516
     517.wp-block-pullquote .wp-block-pullquote__citation:before {
     518        content: "\2014\00a0";
     519}
     520
     521/* Table */
     522
     523.editor-block-list__block table.wp-block-table th,
     524.editor-block-list__block table.wp-block-table td {
     525        padding: 0;
     526}
     527
     528.rtl .wp-block-table th,
     529.rtl .wp-block-table td {
     530        text-align: right;
     531}
     532
     533/*--------------------------------------------------------------
     5345.0 Blocks - Layout Elements
     535--------------------------------------------------------------*/
     536
     537/* Buttons */
     538.wp-block-button .wp-block-button__link {
     539        background: #1a1a1a;
     540        border: 0;
     541        border-radius: 2px;
     542        color: #fff;
     543        font-family: Montserrat, "Helvetica Neue", sans-serif;
     544        font-weight: 700;
     545        letter-spacing: 0.046875em;
     546        line-height: 1;
     547        padding: 0.84375em 0.875em 0.78125em;
     548        text-transform: uppercase;
     549}
     550
     551/*--------------------------------------------------------------
     5526.0 Blocks - Widgets
     553--------------------------------------------------------------*/
     554
     555/* Latest Posts */
     556
     557.edit-post-visual-editor .wp-block-latest-posts.is-grid {
     558        list-style: none;
     559        margin-left: 0;
     560        margin-right: 0;
     561}
     562
     563.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
     564        margin-bottom: 16px;
     565}
     566
     567/* Comments */
     568
     569.editor-block-list__block .wp-block-latest-comments__comment-meta a {
     570        box-shadow: none;
     571        font-weight: 700;
     572        text-decoration: none;
     573}
     574
     575.wp-block-latest-comments__comment-date {
     576        color: #686868;
     577        font-family: Montserrat, "Helvetica Neue", sans-serif;
     578        font-size: 13px;
     579        font-size: 0.8125rem;
     580        line-height: 1.6153846154;
     581}
     582
     583.wp-block-latest-comments .wp-block-latest-comments__comment {
     584        border-top: 1px solid #d1d1d1;
     585        margin-bottom: 0;
     586        padding: 1.75em 0;
     587}
     588
     589.wp-block-latest-comments__comment-excerpt p:last-child {
     590        margin-bottom: 0;
     591}
  • src/wp-content/themes/twentysixteen/functions.php

     
    124124         */
    125125        add_editor_style( array( 'css/editor-style.css', twentysixteen_fonts_url() ) );
    126126
     127        // Load regular editor styles into the new block-based editor.
     128        add_theme_support( 'editor-styles' );
     129
     130        // Load default block styles.
     131        add_theme_support( 'wp-block-styles' );
     132
     133        // Add support for custom color scheme.
     134        add_theme_support( 'editor-color-palette', array(
     135                array(
     136                        'name'  => __( 'Dark Gray', 'twentysixteen' ),
     137                        'slug'  => 'dark-gray',
     138                        'color' => '#1a1a1a',
     139                ),
     140                array(
     141                        'name'  => __( 'Medium Gray', 'twentysixteen' ),
     142                        'slug'  => 'medium-gray',
     143                        'color' => '#686868',
     144                ),
     145                array(
     146                        'name'  => __( 'Light Gray', 'twentysixteen' ),
     147                        'slug'  => 'light-gray',
     148                        'color' => '#e5e5e5',
     149                ),
     150                array(
     151                        'name'  => __( 'White', 'twentysixteen' ),
     152                        'slug'  => 'white',
     153                        'color' => '#fff',
     154                ),
     155                array(
     156                        'name'  => __( 'Blue Gray', 'twentysixteen' ),
     157                        'slug'  => 'blue-gray',
     158                        'color' => '#4d545c',
     159                ),
     160                array(
     161                        'name'  => __( 'Bright Blue', 'twentysixteen' ),
     162                        'slug'  => 'bright-blue',
     163                        'color' => '#007acc',
     164                ),
     165                array(
     166                        'name'  => __( 'Light Blue', 'twentysixteen' ),
     167                        'slug'  => 'light-blue',
     168                        'color' => '#9adffd',
     169                ),
     170                array(
     171                        'name'  => __( 'Dark Brown', 'twentysixteen' ),
     172                        'slug'  => 'dark-brown',
     173                        'color' => '#402b30',
     174                ),
     175                array(
     176                        'name'  => __( 'Medium Brown', 'twentysixteen' ),
     177                        'slug'  => 'medium-brown',
     178                        'color' => '#774e24',
     179                ),
     180                array(
     181                        'name'  => __( 'Dark Red', 'twentysixteen' ),
     182                        'slug'  => 'dark-red',
     183                        'color' => '#640c1f',
     184                ),
     185                array(
     186                        'name'  => __( 'Bright Red', 'twentysixteen' ),
     187                        'slug'  => 'bright-red',
     188                        'color' => '#ff675f',
     189                ),
     190                array(
     191                        'name'  => __( 'Yellow', 'twentysixteen' ),
     192                        'slug'  => 'yellow',
     193                        'color' => '#ffef8e',
     194                ),
     195        ) );
     196
    127197        // Indicate widget sidebars can use selective refresh in the Customizer.
    128198        add_theme_support( 'customize-selective-refresh-widgets' );
    129199}
     
    252322        // Theme stylesheet.
    253323        wp_enqueue_style( 'twentysixteen-style', get_stylesheet_uri() );
    254324
     325        // Theme block stylesheet.
     326        wp_enqueue_style( 'twentysixteen-block-style', get_theme_file_uri( '/css/blocks.css' ), array( 'twentysixteen-style' ), '1.0' );
     327
    255328        // Load the Internet Explorer specific stylesheet.
    256329        wp_enqueue_style( 'twentysixteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentysixteen-style' ), '20160816' );
    257330        wp_style_add_data( 'twentysixteen-ie', 'conditional', 'lt IE 10' );
     
    288361add_action( 'wp_enqueue_scripts', 'twentysixteen_scripts' );
    289362
    290363/**
     364 * Enqueue editor styles for Gutenberg
     365 *
     366 * @since Twenty Sixteen 1.6
     367 */
     368function twentysixteen_block_editor_styles() {
     369        // Block styles.
     370        wp_enqueue_style( 'twentysixteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css' );
     371        // Add custom fonts.
     372        wp_enqueue_style( 'twentysixteen-fonts', twentysixteen_fonts_url(), array(), null );
     373}
     374add_action( 'enqueue_block_editor_assets', 'twentysixteen_block_editor_styles' );
     375
     376/**
    291377 * Adds custom classes to the array of body classes.
    292378 *
    293379 * @since Twenty Sixteen 1.0
     
    427513        $args['largest']  = 1;
    428514        $args['smallest'] = 1;
    429515        $args['unit']     = 'em';
    430         $args['format']   = 'list'; 
     516        $args['format']   = 'list';
    431517
    432518        return $args;
    433519}