Ticket #52257: 52257.diff
File 52257.diff, 9.4 KB (added by , 4 years ago) |
---|
-
src/wp-content/themes/twentytwentyone/assets/css/ie-editor.css
351 351 } 352 352 353 353 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { 354 color: #d1e4dd; 354 background: #000; 355 color: #fff; 356 text-decoration: none; 355 357 } 356 358 357 359 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav { 358 color: # d1e4dd;360 color: #fff; 359 361 } 360 362 361 363 .has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { … … 379 381 background-color: #f1f1f1; 380 382 } 381 383 382 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link :focus{384 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link { 383 385 background: none; 384 386 } 385 387 -
src/wp-content/themes/twentytwentyone/assets/css/ie.css
2192 2192 } 2193 2193 2194 2194 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { 2195 color: #d1e4dd; 2195 background: #000; 2196 color: #fff; 2197 text-decoration: none; 2196 2198 } 2197 2199 2198 2200 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav { 2199 color: # d1e4dd;2201 color: #fff; 2200 2202 } 2201 2203 2202 2204 .has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { … … 2220 2222 background-color: #f1f1f1; 2221 2223 } 2222 2224 2223 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link :focus{2225 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link { 2224 2226 background: none; 2225 2227 } 2226 2228 -
src/wp-content/themes/twentytwentyone/assets/css/style-dark-mode-rtl.css
17 17 --table--stripes-background-color: rgba(240, 240, 240, 0.15); 18 18 } 19 19 20 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button),21 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav {22 background: #000;23 color: #fff;24 text-decoration: none;25 }26 27 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link:focus,28 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav.custom-logo-link:focus {29 background: none;30 }31 32 20 .is-dark-theme.is-dark-theme img { 33 21 filter: brightness(0.85) contrast(1.1); 34 22 } -
src/wp-content/themes/twentytwentyone/assets/css/style-dark-mode.css
17 17 --table--stripes-background-color: rgba(240, 240, 240, 0.15); 18 18 } 19 19 20 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button),21 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav {22 background: #000;23 color: #fff;24 text-decoration: none;25 }26 27 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link:focus,28 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav.custom-logo-link:focus {29 background: none;30 }31 32 20 .is-dark-theme.is-dark-theme img { 33 21 filter: brightness(0.85) contrast(1.1); 34 22 } -
src/wp-content/themes/twentytwentyone/assets/css/style-editor.css
488 488 background: rgba(255, 255, 255, 0.9); 489 489 } 490 490 491 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button), 491 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { 492 background: var(--global--color-black); 493 color: var(--global--color-white); 494 text-decoration: none; 495 } 496 492 497 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav { 493 color: var(--wp--style--color--link, var(--global--color- background));498 color: var(--wp--style--color--link, var(--global--color-white)); 494 499 } 495 500 496 501 .has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { … … 514 519 background-color: #f1f1f1; 515 520 } 516 521 517 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link :focus{522 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link { 518 523 background: none; 519 524 } 520 525 -
src/wp-content/themes/twentytwentyone/assets/sass/04-elements/links.scss
25 25 background: rgba(255, 255, 255, .9); 26 26 27 27 // Change text color when the body background is dark. 28 .is-dark-theme &, 29 .is-dark-theme & .meta-nav { 30 color: var(--wp--style--color--link, var(--global--color-background)); 28 .is-dark-theme & { 29 background: var(--global--color-black); 30 color: var(--global--color-white); 31 text-decoration: none; 32 33 .meta-nav { 34 color: var(--wp--style--color--link, var(--global--color-white)); 35 } 31 36 } 32 37 33 38 // Change colors when the body background is white. … … 53 58 } 54 59 55 60 &.custom-logo-link { 56 57 &:focus { 58 background: none; 59 } 61 background: none; 60 62 } 61 63 62 64 img { -
src/wp-content/themes/twentytwentyone/assets/sass/style-dark-mode.scss
16 16 --table--stripes-border-color: rgba(240, 240, 240, 0.15); 17 17 --table--stripes-background-color: rgba(240, 240, 240, 0.15); 18 18 19 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button),20 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav {21 background: #000;22 color: #fff;23 text-decoration: none;24 25 &.custom-logo-link {26 27 &:focus {28 background: none;29 }30 }31 }32 33 19 img { 34 20 filter: brightness(.85) contrast(1.1); 35 21 } -
src/wp-content/themes/twentytwentyone/style-rtl.css
1660 1660 background: rgba(255, 255, 255, 0.9); 1661 1661 } 1662 1662 1663 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button), 1663 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { 1664 background: var(--global--color-black); 1665 color: var(--global--color-white); 1666 text-decoration: none; 1667 } 1668 1664 1669 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav { 1665 color: var(--wp--style--color--link, var(--global--color- background));1670 color: var(--wp--style--color--link, var(--global--color-white)); 1666 1671 } 1667 1672 1668 1673 .has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { … … 1686 1691 background-color: #f1f1f1; 1687 1692 } 1688 1693 1689 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link :focus{1694 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link { 1690 1695 background: none; 1691 1696 } 1692 1697 -
src/wp-content/themes/twentytwentyone/style.css
1670 1670 background: rgba(255, 255, 255, 0.9); 1671 1671 } 1672 1672 1673 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button), 1673 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { 1674 background: var(--global--color-black); 1675 color: var(--global--color-white); 1676 text-decoration: none; 1677 } 1678 1674 1679 .is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav { 1675 color: var(--wp--style--color--link, var(--global--color- background));1680 color: var(--wp--style--color--link, var(--global--color-white)); 1676 1681 } 1677 1682 1678 1683 .has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { … … 1696 1701 background-color: #f1f1f1; 1697 1702 } 1698 1703 1699 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link :focus{1704 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link { 1700 1705 background: none; 1701 1706 } 1702 1707