mirror of
https://github.com/WordPress/WordPress.git
synced 2024-10-30 23:39:42 +01:00
e0669ddaae
For a full list of changes since [49330], see 5759e96...e7d5991
.
Props poena, luminuu, ryelle, kjellr, aristath, justinahinon, felipeelia, joostdevalk.
See #51526.
Built from https://develop.svn.wordpress.org/trunk@49478
git-svn-id: http://core.svn.wordpress.org/trunk@49237 1a063a9b-81f0-0310-95a4-ce76da25c4cd
95 lines
2.4 KiB
CSS
95 lines
2.4 KiB
CSS
/* OS dark theme preference */
|
|
html.is-dark-mode {
|
|
--global--color-background: var(--global--color-dark-gray);
|
|
--global--color-primary: var(--global--color-light-gray);
|
|
--global--color-secondary: var(--global--color-light-gray);
|
|
--button--color-text: var(--global--color-background);
|
|
--button--color-text-hover: var(--global--color-secondary);
|
|
--button--color-text-active: var(--global--color-secondary);
|
|
--button--color-background: var(--global--color-secondary);
|
|
--button--color-background-active: var(--global--color-background);
|
|
}
|
|
|
|
html.is-dark-mode body {
|
|
background-color: var(--global--color-background);
|
|
}
|
|
|
|
html.is-dark-mode .site a:focus {
|
|
background: #000;
|
|
}
|
|
|
|
html.is-dark-mode img {
|
|
filter: brightness(0.85) contrast(1.1);
|
|
}
|
|
|
|
#dark-mode-toggler {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: var(--global--font-size-xs);
|
|
padding: 0.5em;
|
|
min-height: 44px;
|
|
min-width: max-content;
|
|
border: 2px solid currentColor;
|
|
box-shadow: none;
|
|
background: var(--button--color-text);
|
|
color: var(--button--color-background);
|
|
z-index: 9998;
|
|
}
|
|
|
|
.wp-admin #dark-mode-toggler {
|
|
z-index: 99999;
|
|
/* Necessary for the editor. */
|
|
}
|
|
|
|
#dark-mode-toggler.fixed-bottom {
|
|
position: fixed;
|
|
bottom: 5px;
|
|
right: 5px;
|
|
}
|
|
|
|
#dark-mode-toggler.relative {
|
|
position: absolute;
|
|
height: 44px;
|
|
top: calc(2.4 * var(--global--spacing-vertical) - 44px);
|
|
right: calc(50vw - var(--responsive--alignwide-width) / 2 - 0.5em);
|
|
}
|
|
|
|
.admin-bar #dark-mode-toggler.relative {
|
|
top: calc(2.4 * var(--global--spacing-vertical) - 44px + 32px);
|
|
}
|
|
|
|
@media only screen and (max-width: 782px) {
|
|
.admin-bar #dark-mode-toggler.relative {
|
|
top: calc(2.4 * var(--global--spacing-vertical) - 44px + 46px);
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 481px) {
|
|
.admin-bar #dark-mode-toggler.relative {
|
|
top: calc(2.4 * var(--global--spacing-vertical) - 44px + 26px);
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 481px) {
|
|
body:not(.primary-navigation-open) #dark-mode-toggler.relative ~ nav {
|
|
top: calc(44px + 44px);
|
|
}
|
|
}
|
|
|
|
.primary-navigation-open #dark-mode-toggler {
|
|
display: none;
|
|
}
|
|
|
|
#dark-mode-toggler:hover, #dark-mode-toggler:focus {
|
|
color: var(--button--color-background-active);
|
|
border: 2px solid var(--button--color-text-active);
|
|
background-color: var(--button--color-text-active);
|
|
}
|
|
|
|
.is-IE #dark-mode-toggler {
|
|
display: none;
|
|
}
|
|
|
|
/*# sourceMappingURL=style-dark-mode.css.map */ |