Make WordPress Core

Ticket #38697: 38697.2.diff

File 38697.2.diff, 6.7 KB (added by laurelfulford, 7 years ago)
  • src/wp-content/themes/twentyseventeen/assets/css/colors-dark.css

     
    236236        color: #ddd;
    237237}
    238238
     239.colors-dark #wp-custom-header-video-button {
     240        background-color: rgba( 221, 221, 221, 0.3 ); /* Equivilant to #ddd */
     241}
     242
     243.colors-dark #wp-custom-header-video-button:hover,
     244.colors-dark #wp-custom-header-video-button:focus {
     245        background-color: rgba( 221, 221, 221, 0.8 ); /* Equivilant to #ddd */
     246}
     247
    239248.colors-dark h2,
    240249.colors-dark blockquote,
    241250.colors-dark input[type="text"],
     
    480489        box-shadow: 0 0 0 8px #222;
    481490}
    482491
    483 .colors-dark .entry-footer .edit-link a.post-edit-link {
     492.colors-dark .entry-footer .edit-link a.post-edit-link,
     493.colors-dark #wp-custom-header-video-button:hover,
     494.colors-dark #wp-custom-header-video-button:focus {
    484495        color: #000;
    485496}
    486497
     498.colors-dark #wp-custom-header-video-button {
     499        color: rgba( 0, 0, 0, 0.5 ); /* Equivalent to #000 */
     500}
     501
    487502.colors-dark .menu-toggle,
    488503.colors-dark .menu-toggle:hover,
    489504.colors-dark .menu-toggle:focus,
  • src/wp-content/themes/twentyseventeen/assets/images/svg-icons.svg

     
    138138<symbol id="icon-arrow-right" viewBox="0 0 43 32">
    139139<path class="path1" d="M0.356 17.956c0.178 0.178 0.533 0.356 0.711 0.356h33.778l-10.311 10.489c-0.178 0.178-0.356 0.533-0.356 0.711 0 0.356 0.178 0.533 0.356 0.711l1.6 1.6c0.178 0.178 0.533 0.356 0.711 0.356s0.533-0.178 0.711-0.356l14.756-14.933c0.178-0.356 0.356-0.711 0.356-0.889s-0.178-0.533-0.356-0.711l-14.756-14.933c0-0.178-0.356-0.356-0.533-0.356s-0.533 0.178-0.711 0.356l-1.6 1.6c-0.178 0.178-0.356 0.533-0.356 0.711s0.178 0.533 0.356 0.711l10.311 10.489h-33.778c-0.178 0-0.533 0.178-0.711 0.356-0.356 0.178-0.533 0.356-0.533 0.711v2.311c0 0.178 0.178 0.533 0.356 0.711z"></path>
    140140</symbol>
     141<symbol id="icon-play" viewBox="0 0 22 28">
     142<path d="M21.625 14.484l-20.75 11.531c-0.484 0.266-0.875 0.031-0.875-0.516v-23c0-0.547 0.391-0.781 0.875-0.516l20.75 11.531c0.484 0.266 0.484 0.703 0 0.969z"></path>
     143</symbol>
     144<symbol id="icon-pause" viewBox="0 0 24 28">
     145<path d="M24 3v22c0 0.547-0.453 1-1 1h-8c-0.547 0-1-0.453-1-1v-22c0-0.547 0.453-1 1-1h8c0.547 0 1 0.453 1 1zM10 3v22c0 0.547-0.453 1-1 1h-8c-0.547 0-1-0.453-1-1v-22c0-0.547 0.453-1 1-1h8c0.547 0 1 0.453 1 1z"></path>
     146</symbol>
    141147</defs>
    142148</svg>
  • src/wp-content/themes/twentyseventeen/assets/js/global.js

     
    148148                return 'http://www.w3.org/2000/svg' === ( 'undefined' !== typeof SVGRect && div.firstChild && div.firstChild.namespaceURI );
    149149        }
    150150
     151        // Add play/pause SVGs to video button.
     152        $( document ).on( 'wp-custom-header-video-loaded', function( event ) {
     153
     154                // Add slight delay before swapping in play/pause icons, to make sure button is loaded.
     155                function iconLoad() {
     156                        $( '#wp-custom-header-video-button' ).append( twentyseventeenScreenReaderText.playpause );
     157                        }
     158                setTimeout( iconLoad, 1000 );
     159
     160        } );
     161
    151162        // Fire on document ready.
    152163        $( document ).ready( function() {
    153164
  • src/wp-content/themes/twentyseventeen/functions.php

     
    374374
    375375        $twentyseventeen_l10n = array(
    376376                'quote'          => twentyseventeen_get_svg( array( 'icon' => 'quote-right' ) ),
     377                'playpause'     => twentyseventeen_get_svg( array( 'icon' => 'play' ) ) . twentyseventeen_get_svg( array( 'icon' => 'pause' ) ),
     378
    377379        );
    378380
    379381        if ( has_nav_menu( 'top' ) ) {
  • src/wp-content/themes/twentyseventeen/inc/color-patterns.php

     
    148148        color: hsl( ' . $hue . ', ' . $saturation . ', 13% ); /* base: #222; */
    149149}
    150150
     151.colors-custom #wp-custom-header-video-button {
     152        background-color: hsla( ' . $hue . ', ' . $saturation . ', 15%, 0.3 ); /* base: #222; */
     153}
     154
     155.colors-custom #wp-custom-header-video-button:hover,
     156.colors-custom #wp-custom-header-video-button:focus {
     157        background-color: hsla( ' . $hue . ', ' . $saturation . ', 15%, 0.8 ); /* base: #222; */
     158}
     159
    151160.colors-custom .entry-content a:focus,
    152161.colors-custom .entry-content a:hover,
    153162.colors-custom .entry-summary a:focus,
  • src/wp-content/themes/twentyseventeen/rtl.css

     
    9595
    9696/* Front Page */
    9797
     98#wp-custom-header-video-button {
     99        left: 30px;
     100        right: auto;
     101}
     102
    98103.twentyseventeen-panel .recent-posts .entry-header .edit-link {
    99104        margin-left: 0;
    100105        margin-right: 1em;
    101106}
    102107
    103 
    104108/* Blog, Archive, Search */
    105109
    106110.blog .entry-meta a.post-edit-link,
  • src/wp-content/themes/twentyseventeen/style.css

     
    16801680        transform: translateX(-50%) translateY(-50%);
    16811681}
    16821682
     1683#wp-custom-header-video-button {
     1684        background-color: rgba( 34, 34, 34, 0.3 );
     1685        -webkit-border-radius: 2px;
     1686        border-radius: 2px;
     1687        color: rgba( 255, 255, 255, 0.5 );
     1688        height: 45px;
     1689        overflow: hidden;
     1690        padding: 0;
     1691        position: absolute;
     1692        right: 30px;
     1693        top: 30px;
     1694        -webkit-transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out;
     1695        transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out;
     1696        width: 45px;
     1697        z-index: 2;
     1698}
     1699
     1700#wp-custom-header-video-button:hover,
     1701#wp-custom-header-video-button:focus {
     1702        background-color: rgba( 34, 34, 34, 0.8 );
     1703        color: #fff;
     1704}
     1705
     1706.wp-custom-header-video-button-text,
     1707.wp-custom-header-video-play .icon-play,
     1708.wp-custom-header-video-pause .icon-pause {
     1709        display: none;
     1710}
     1711
    16831712.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-image img {
    16841713        bottom: 0;
    16851714        position: absolute;