Ajustes visuais no botão de light/dark mode

This commit is contained in:
Paulo Porto
2026-05-27 11:12:57 -03:00
parent cbf9550f0b
commit 945da04db0
2 changed files with 23 additions and 4 deletions

View File

@@ -222,8 +222,12 @@ body.arch-panel-extension-modal-open {
.arch-panel-extension-theme-toggle {
appearance: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
min-height: 34px;
padding: 0 14px;
padding: 0;
border: 1px solid rgba(255, 255, 255, 0.28);
border-radius: 4px;
background: rgba(255, 255, 255, 0.12);
@@ -235,6 +239,13 @@ body.arch-panel-extension-modal-open {
transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.arch-panel-extension-theme-toggle svg {
width: 16px;
height: 16px;
fill: currentColor;
pointer-events: none;
}
.arch-panel-extension-shell-header .arch-panel-extension-theme-toggle:hover {
border-color: rgba(255, 255, 255, 0.44);
background: rgba(255, 255, 255, 0.2);