Make WordPress Core

Ticket #45426: 45426.patch

File 45426.patch, 3.9 KB (added by laurelfulford, 6 years ago)
  • src/wp-content/themes/twentyseventeen/assets/css/blocks.css

     
    66/*--------------------------------------------------------------
    77>>> TABLE OF CONTENTS:
    88----------------------------------------------------------------
    9 1.0 Blocks - Common Blocks
    10 2.0 Blocks - Formatting
    11 3.0 Blocks - Layout Elements
    12 4.0 Blocks - Widgets
     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
    1315--------------------------------------------------------------*/
    1416
    1517/*--------------------------------------------------------------
     
    187189/* Buttons */
    188190
    189191.wp-block-button .wp-block-button__link {
    190         background-color: #222;
    191192        -webkit-border-radius: 2px;
    192193        border-radius: 2px;
    193194        -webkit-box-shadow: none;
    194195        box-shadow: none;
    195         color: #fff;
    196196        display: inline-block;
    197197        font-size: 14px;
    198198        font-size: 0.875rem;
     
    205205        white-space: nowrap;
    206206}
    207207
    208 .wp-block-button .wp-block-button__link:hover,
    209 .wp-block-button .wp-block-button__link:focus {
     208.entry-content .wp-block-button__link {
     209        background-color: #222;
     210        color: #fff;
     211}
     212
     213.entry-content .wp-block-button__link:hover,
     214.entry-content .wp-block-button__link:focus {
    210215        background-color: #767676;
     216        color: #fff;
    211217        -webkit-box-shadow: none;
    212218        box-shadow: none;
    213219}
     
    295301        font-size: 14px;
    296302        font-size: 0.875rem;
    297303}
     304
     305/*--------------------------------------------------------------
     3066.0 Blocks - Colors
     307--------------------------------------------------------------*/
     308
     309.entry-content .has-pale-pink-color {
     310        color: #f78da7;
     311}
     312
     313.entry-content .has-pale-pink-background-color {
     314        background-color: #f78da7;
     315}
     316
     317.entry-content .has-vivid-red-color {
     318        color: #cf2e2e;
     319}
     320
     321.entry-content .has-vivid-red-background-color {
     322        background-color: #cf2e2e;
     323}
     324
     325.entry-content .has-luminous-vivid-orange-color {
     326        color: #ff6900;
     327}
     328
     329.entry-content .has-luminous-vivid-orange-background-color {
     330        background-color: #ff6900;
     331}
     332
     333.entry-content .has-luminous-vivid-amber-color {
     334        color: #fcb900;
     335}
     336
     337.entry-content .has-luminous-vivid-amber-background-color {
     338        background-color: #fcb900;
     339}
     340
     341.entry-content .has-light-green-cyan-color {
     342        color: #7bdcb5;
     343}
     344
     345.entry-content .has-light-green-cyan-background-color {
     346        background-color: #7bdcb5;
     347}
     348
     349.entry-content .has-vivid-green-cyan-color {
     350        color: #00d084;
     351}
     352
     353.entry-content .has-vivid-green-cyan-background-color {
     354        background-color: #00d084;
     355}
     356
     357.entry-content .has-pale-cyan-blue-color {
     358        color: #8ed1fc;
     359}
     360
     361.entry-content .has-pale-cyan-blue-background-color {
     362        background-color: #8ed1fc;
     363}
     364
     365.entry-content .has-vivid-cyan-blue-color {
     366        color: #0693e3;
     367}
     368
     369.entry-content .has-vivid-cyan-blue-background-color {
     370        background-color: #0693e3;
     371}
     372
     373.entry-content .has-very-light-gray-color {
     374        color: #eee;
     375}
     376
     377.entry-content .has-very-light-gray-background-color {
     378        background-color: #eee;
     379}
     380
     381.entry-content .has-cyan-bluish-gray-color {
     382        color: #abb8c3;
     383}
     384
     385.entry-content .has-cyan-bluish-gray-background-color {
     386        background-color: #abb8c3;
     387}
     388
     389.entry-content .has-very-dark-gray-color {
     390        color: #313131;
     391}
     392
     393.entry-content .has-very-dark-gray-background-color {
     394        background-color: #313131;
     395}
  • src/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css

     
    495495        margin-top: 0.075em;
    496496}
    497497
     498.wp-block-paragraph.has-background {
     499        padding: 20px 30px;
     500}
     501
    498502/* Gallery */
    499503
    500504.wp-block-gallery figcaption {