147 lines
7.0 KiB
CSS
Raw Normal View History

2021-06-16 19:28:37 +08:00
@media (prefers-color-scheme: dark) {
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-close,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-close {
background: url("../titlebuttons/titlebutton-close-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-max,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-max {
background: url("../titlebuttons/titlebutton-maximize-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-min,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-min {
background: url("../titlebuttons/titlebutton-minimize-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-restore,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-restore,
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar .titlebar-max,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar #titlebar-max {
background: url("../titlebuttons/titlebutton-maximize-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-close:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-close:hover {
background: url("../titlebuttons/titlebutton-close-hover-inactive-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-max:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-max:hover {
background: url("../titlebuttons/titlebutton-maximize-hover-inactive-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-min:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-min:hover {
background: url("../titlebuttons/titlebutton-minimize-hover-inactive-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-close:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-close:hover {
background: url("../titlebuttons/titlebutton-close-hover-dark.svg") no-repeat;
background-size: contain;
transition: background-size 300ms cubic-bezier(0.0, 0.0, 0.2, 1);
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-max:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-max:hover {
background: url("../titlebuttons/titlebutton-maximize-hover-dark.svg") no-repeat;
background-size: contain;
transition: background-size 300ms cubic-bezier(0.0, 0.0, 0.2, 1);
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-min:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-min:hover {
background: url("../titlebuttons/titlebutton-minimize-hover-dark.svg") no-repeat;
background-size: contain;
transition: background-size 300ms cubic-bezier(0.0, 0.0, 0.2, 1);
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-restore:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-restore:hover,
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar .titlebar-max:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar #titlebar-max:hover {
background: url("../titlebuttons/titlebutton-unmaximize-hover-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-close:active,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-close:active {
background: url("../titlebuttons/titlebutton-close-active-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-max:active,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-max:active {
background: url("../titlebuttons/titlebutton-maximize-active-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-min:active,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-min:active {
background: url("../titlebuttons/titlebutton-minimize-active-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar .titlebar-restore:active,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar #titlebar-restore:active,
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar .titlebar-max:active,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar #titlebar-max:active {
background: url("../titlebuttons/titlebutton-unmaximize-active-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-close,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive #titlebar-close {
background: url("../titlebuttons/titlebutton-backdrop-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-max,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive #titlebar-max {
background: url("../titlebuttons/titlebutton-backdrop-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-min,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive #titlebar-min {
background: url("../titlebuttons/titlebutton-backdrop-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-restore,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive #titlebar-restore,
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar:-moz-window-inactive .titlebar-max,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar:-moz-window-inactive #titlebar-max {
background: url("../titlebuttons/titlebutton-backdrop-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-close:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive #titlebar-close:hover {
background: url("../titlebuttons/titlebutton-close-backdrop-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-max:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive #titlebar-max:hover {
background: url("../titlebuttons/titlebutton-maximize-backdrop-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-min:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive #titlebar-min:hover {
background: url("../titlebuttons/titlebutton-minimize-backdrop-dark.svg") no-repeat;
background-size: contain;
}
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-restore:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar] #titlebar:-moz-window-inactive #titlebar-restore:hover,
2023-02-09 11:19:41 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar:-moz-window-inactive .titlebar-max:hover,
2021-06-16 19:28:37 +08:00
:root[tabsintitlebar][sizemode="maximized"] #titlebar:-moz-window-inactive #titlebar-max:hover {
background: url("../titlebuttons/titlebutton-unmaximize-backdrop-dark.svg") no-repeat;
background-size: contain;
}
:root[tabsintitlebar][inFullscreen] #window-controls #restore-button {
background: url("../titlebuttons/titlebutton-maximize-dark.svg") no-repeat;
background-size: contain;
}
:root[tabsintitlebar][inFullscreen] #window-controls #restore-button:hover {
background: url("../titlebuttons/titlebutton-unmaximize-hover-dark.svg") no-repeat;
background-size: contain;
}
:root[tabsintitlebar][inFullscreen] #window-controls #restore-button:active {
background: url("../titlebuttons/titlebutton-unmaximize-active-dark.svg") no-repeat;
background-size: contain;
}
:root[tabsintitlebar][inFullscreen] #window-controls:-moz-window-inactive #restore-button {
background: url("../titlebuttons/titlebutton-backdrop-dark.svg") no-repeat;
background-size: contain;
}
}