Ticket #52257: 52257.2.diff
File 52257.2.diff, 3.6 KB (added by , 4 years ago) |
---|
-
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 { 20 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { 22 21 background: #000; 23 22 color: #fff; 24 23 text-decoration: none; 25 24 } 26 25 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 { 26 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav { 27 color: #fff; 28 } 29 30 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link { 29 31 background: none; 30 32 } 31 33 -
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 { 20 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { 22 21 background: #000; 23 22 color: #fff; 24 23 text-decoration: none; 25 24 } 26 25 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 { 26 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) .meta-nav { 27 color: #fff; 28 } 29 30 .is-dark-theme.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button).custom-logo-link { 29 31 background: none; 30 32 } 31 33 -
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 { 19 .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) { 21 20 background: #000; 22 21 color: #fff; 23 22 text-decoration: none; 24 23 24 & .meta-nav { 25 color: #fff; 26 } 27 25 28 &.custom-logo-link { 26 27 &:focus { 28 background: none; 29 } 29 background: none; 30 30 } 31 31 } 32 32