| | |
| | | .darkmode { |
| | | cursor: pointer; |
| | | padding: 0; |
| | | position: relative; |
| | | background: none; |
| | | border: none; |
| | | width: 20px; |
| | | height: 20px; |
| | | margin: 0 10px; |
| | | |
| | | & > .toggle { |
| | | display: none; |
| | | box-sizing: border-box; |
| | | } |
| | | margin: 0; |
| | | text-align: inherit; |
| | | flex-shrink: 0; |
| | | |
| | | & svg { |
| | | cursor: pointer; |
| | | opacity: 0; |
| | | position: absolute; |
| | | width: 20px; |
| | | height: 20px; |
| | |
| | | } |
| | | } |
| | | |
| | | :root[saved-theme="dark"] .toggle ~ label { |
| | | & > #dayIcon { |
| | | opacity: 0; |
| | | :root[saved-theme="dark"] { |
| | | color-scheme: dark; |
| | | } |
| | | |
| | | :root[saved-theme="light"] { |
| | | color-scheme: light; |
| | | } |
| | | |
| | | :root[saved-theme="dark"] .darkmode { |
| | | & > .dayIcon { |
| | | display: none; |
| | | } |
| | | & > #nightIcon { |
| | | opacity: 1; |
| | | & > .nightIcon { |
| | | display: inline; |
| | | } |
| | | } |
| | | |
| | | :root .toggle ~ label { |
| | | & > #dayIcon { |
| | | opacity: 1; |
| | | :root .darkmode { |
| | | & > .dayIcon { |
| | | display: inline; |
| | | } |
| | | & > #nightIcon { |
| | | opacity: 0; |
| | | & > .nightIcon { |
| | | display: none; |
| | | } |
| | | } |