Ticket #38697: 38697.1.diff
File 38697.1.diff, 8.2 KB (added by , 8 years ago) |
---|
-
src/wp-content/themes/twentyseventeen/assets/css/colors-dark.css
15 15 16 16 .colors-dark a:hover, 17 17 .colors-dark a:active, 18 .colors-dark .video-button-contain:hover, 18 19 .colors-dark .entry-content a:focus, 19 20 .colors-dark .entry-content a:hover, 20 21 .colors-dark .entry-summary a:focus, … … 236 237 color: #ddd; 237 238 } 238 239 240 .colors-dark .video-button-contain { 241 background-color: rgba( 221, 221, 221, 0.3 ); /* Equivilant to #ddd */ 242 } 243 244 .colors-dark .video-button-contain:hover { 245 background-color: rgba( 221, 221, 221, 0.8 ); /* Equivilant to #ddd */ 246 } 247 239 248 .colors-dark h2, 240 249 .colors-dark blockquote, 241 250 .colors-dark input[type="text"], … … 480 489 box-shadow: 0 0 0 8px #222; 481 490 } 482 491 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 .video-button-contain:hover { 484 494 color: #000; 485 495 } 486 496 497 .colors-dark .video-button-contain { 498 color: rgba( 0, 0, 0, 0.5 ); /* Equivalent to #000 */ 499 } 500 487 501 .colors-dark .menu-toggle, 488 502 .colors-dark .menu-toggle:hover, 489 503 .colors-dark .menu-toggle:focus, … … 492 506 .colors-dark .dropdown-toggle:focus, 493 507 .colors-dark .menu-scroll-down, 494 508 .colors-dark .menu-scroll-down:hover, 495 .colors-dark .menu-scroll-down:focus { 509 .colors-dark .menu-scroll-down:focus, 510 .colors-dark .wp-custom-header-video-button, 511 .colors-dark .wp-custom-header-video-button:hover, 512 .colors-dark .wp-custom-header-video-button:focus { 496 513 background-color: transparent; 497 514 } 498 515 516 .colors-dark .wp-custom-header-video-button, 517 .colors-dark .wp-custom-header-video-button:hover, 518 .colors-dark .wp-custom-header-video-button:focus { 519 color: transparent; 520 } 521 499 522 .colors-dark .widget .tagcloud a, 500 523 .colors-dark .widget .tagcloud a:focus, 501 524 .colors-dark .widget .tagcloud a:hover, -
src/wp-content/themes/twentyseventeen/assets/images/svg-icons.svg
138 138 <symbol id="icon-arrow-right" viewBox="0 0 43 32"> 139 139 <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> 140 140 </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> 141 147 </defs> 142 148 </svg> -
src/wp-content/themes/twentyseventeen/assets/js/global.js
160 160 return 'http://www.w3.org/2000/svg' === ( 'undefined' !== typeof SVGRect && div.firstChild && div.firstChild.namespaceURI ); 161 161 } 162 162 163 // Add play/pause SVGs to video button 164 $( document ).on( 'wp-custom-header-video-loaded', function() { 165 $( '#wp-custom-header-video-button' ).wrap( '<div class="video-button-contain"></div>' ).after( twentyseventeenScreenReaderText.playpause ); 166 } ); 167 163 168 // Fires on document ready 164 169 $( document ).ready( function() { 165 170 -
src/wp-content/themes/twentyseventeen/functions.php
374 374 375 375 $twentyseventeen_l10n = array( 376 376 'quote' => twentyseventeen_get_svg( array( 'icon' => 'quote-right' ) ), 377 'playpause' => twentyseventeen_get_svg( array( 'icon' => 'play' ) ) . twentyseventeen_get_svg( array( 'icon' => 'pause' ) ), 377 378 ); 378 379 379 380 if ( has_nav_menu( 'top' ) ) { -
src/wp-content/themes/twentyseventeen/inc/color-patterns.php
148 148 color: hsl( ' . $hue . ', ' . $saturation . ', 13% ); /* base: #222; */ 149 149 } 150 150 151 .colors-custom .video-button-contain { 152 background-color: hsla( ' . $hue . ', ' . $saturation . ', 15%, 0.3 ); /* base: #222; */ 153 } 154 155 .colors-custom .video-button-contain:hover { 156 background-color: hsla( ' . $hue . ', ' . $saturation . ', 15%, 0.8 ); /* base: #222; */ 157 } 158 151 159 .colors-custom .entry-content a:focus, 152 160 .colors-custom .entry-content a:hover, 153 161 .colors-custom .entry-summary a:focus, … … 467 475 .colors-custom .menu .dropdown-toggle, 468 476 .colors-custom .menu-scroll-down, 469 477 .colors-custom .menu-scroll-down:hover, 470 .colors-custom .menu-scroll-down:focus { 478 .colors-custom .menu-scroll-down:focus, 479 .colors-custom .wp-custom-header-video-button, 480 .colors-custom .wp-custom-header-video-button:hover, 481 .colors-custom .wp-custom-header-video-button:focus { 471 482 background-color: transparent; 472 483 } 473 484 485 .colors-custom .wp-custom-header-video-button, 486 .colors-custom .wp-custom-header-video-button:hover, 487 .colors-custom .wp-custom-header-video-button:focus { 488 color: transparent; 489 } 490 474 491 .colors-custom .widget .tagcloud a, 475 492 .colors-custom .widget .tagcloud a:focus, 476 493 .colors-custom .widget .tagcloud a:hover, -
src/wp-content/themes/twentyseventeen/rtl.css
95 95 96 96 /* Front Page */ 97 97 98 .video-button-contain { 99 left: 30px; 100 right: auto; 101 } 102 98 103 .twentyseventeen-panel .recent-posts .entry-header .edit-link { 99 104 margin-left: 0; 100 105 margin-right: 1em; 101 106 } 102 107 103 104 108 /* Blog, Archive, Search */ 105 109 106 110 .blog .entry-meta a.post-edit-link, -
src/wp-content/themes/twentyseventeen/style.css
1680 1680 transform: translateX(-50%) translateY(-50%); 1681 1681 } 1682 1682 1683 .wp-custom-header-video-button { 1684 height: 45px; 1685 left: 0; 1686 overflow: hidden; 1687 padding: 0; 1688 position: absolute; 1689 width: 45px; 1690 z-index: 2; 1691 } 1692 1693 .wp-custom-header-video-button, 1694 .wp-custom-header-video-button:hover, 1695 .wp-custom-header-video-button:focus { 1696 background: transparent; 1697 color: transparent; 1698 } 1699 1700 .video-button-contain { 1701 background-color: rgba( 34, 34, 34, 0.3 ); 1702 -webkit-border-radius: 2px; 1703 border-radius: 2px; 1704 color: rgba( 255, 255, 255, 0.5 ); 1705 height: 45px; 1706 line-height: 45px; 1707 position: absolute; 1708 right: 30px; 1709 text-align: center; 1710 top: 30px; 1711 -webkit-transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out; 1712 transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out; 1713 width: 45px; 1714 } 1715 1716 .video-button-contain:hover { 1717 background-color: rgba( 34, 34, 34, 0.8 ); 1718 color: #fff; 1719 } 1720 1721 .wp-custom-header-video-play ~ .icon-play, 1722 .wp-custom-header-video-pause ~ .icon-pause { 1723 display: none; 1724 } 1725 1683 1726 .has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-image img { 1684 1727 bottom: 0; 1685 1728 position: absolute;