Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/css/apps/components/shell/taskbar/calendar.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
pointer-events: none !important;
}

#arcShell div.taskbar div.calendar-popup > div {
#arcShell div.taskbar div.calendar-popup>div {
border-radius: 10px;
box-shadow: 0 2px 5px 2px #0002;
box-shadow: var(--secondary-box-shadow);
outline: var(--shell-component-outline) 1px solid;
outline-offset: -1px;
background-color: var(--shell-component-bg);
Expand Down Expand Up @@ -119,6 +119,7 @@
#arcShell div.taskbar div.calendar-popup div.calendar div.day p.day-number:hover {
background-color: var(--button-glass-bg);
}

#arcShell div.taskbar div.calendar-popup div.calendar div.day.today p.day-number {
background-color: var(--accent-light);
color: var(--win-bg) !important;
Expand Down Expand Up @@ -186,6 +187,7 @@
#arcShell div.taskbar div.calendar-popup div.buttons button.today:hover {
background-color: var(--button-glass-bg);
}

#arcShell div.taskbar div.calendar-popup div.buttons button.today:active {
background-color: var(--button-glass-active-bg);
}
}
12 changes: 9 additions & 3 deletions src/css/apps/user/settings/page/account.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
translate: 0 -50%;
z-index: 0;
filter: blur(40px);

.theme-light & {
opacity: .2;
}

}

#systemSettings div.container.account div.centered-layout {
Expand Down Expand Up @@ -82,7 +87,7 @@
overflow: hidden;
}

#systemSettings div.change-menu div.inner > span {
#systemSettings div.change-menu div.inner>span {
width: 30px;
height: 30px;
line-height: 30px;
Expand Down Expand Up @@ -126,7 +131,7 @@
background-color: transparent;
}

#systemSettings div.container.account div.header h1.account-name > span {
#systemSettings div.container.account div.header h1.account-name>span {
border-bottom: transparent 1px solid;
}

Expand All @@ -146,6 +151,7 @@
#systemSettings div.container.account div.header h1.account-name:hover button {
opacity: 1;
}

#systemSettings div.container.account div.header h1.account-name.editing button {
color: var(--clr-green-fg);
}
Expand All @@ -154,4 +160,4 @@
opacity: 1;
font-weight: bold;
margin-top: 20px;
}
}
17 changes: 13 additions & 4 deletions src/css/window.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ div.window:not(.core).fullscreen div.titlebar {
display: none !important;
}

div.window:not(.core).fullscreen > div.body {
div.window:not(.core).fullscreen>div.body {
height: 100vh !important;
border-top: none !important;
border-radius: 0 !important;
Expand All @@ -94,11 +94,11 @@ div.window:not(.core):not(.glass).focused {
background-color: var(--glass-bg);
}

div.window:not(.core):not(.glass).focused > div.titlebar {
div.window:not(.core):not(.glass).focused>div.titlebar {
backdrop-filter: blur(var(--blur));
}

div.window:not(.core):not(.glass) > div.body {
div.window:not(.core):not(.glass)>div.body {
background-color: var(--win-bg);
}

Expand Down Expand Up @@ -131,6 +131,7 @@ div.window:not(.core).visible:not(.closing) {
scale: 1;
margin-top: 0;
}

/*
div.window:not(.core).resizable {
resize: both;
Expand All @@ -144,6 +145,14 @@ div.window.overlay.glass {
div.window:not(.core) a {
color: var(--accent-light);
text-underline-offset: 2px;

.theme-light & {
/*
* Uses the calculated result if available,
* otherwise, uses uglier dark accent color.
*/
color: var(--accent-suggested-end, var(--accent-dark));
}
}

div.window:not(.core) div.resizer {
Expand Down Expand Up @@ -196,4 +205,4 @@ div.window.minimized.no-shell {
left: unset !important;
transform: none !important;
translate: none !important;
}
}
29 changes: 19 additions & 10 deletions src/css/window/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ div.window div.body button:not(.reset) {
text-align: center;
}

div.window:not(.core) > div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link) {
div.window:not(.core)>div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link) {
outline: var(--button-glass-bg) 1px solid;
outline-offset: -1px;
}

div.window:not(.core) > div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link):hover {
div.window:not(.core)>div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link):hover {
background-color: var(--button-glass-hover-bg);
}

div.window:not(.core) > div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link):active {
div.window:not(.core)>div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link):active {
background-color: var(--button-glass-active-bg);
}

Expand All @@ -43,6 +43,15 @@ div.window div.body button:not(.reset).link {
text-underline-offset: 2px;
width: fit-content;
border-radius: 0;

.theme-light & {
/*
* Uses the calculated result if available,
* otherwise, uses uglier dark accent color.
*/
color: var(--accent-suggested-end, var(--accent-dark));
}

}

div.window div.body button:not(.reset):disabled {
Expand Down Expand Up @@ -88,26 +97,26 @@ div.window div.body button:not(.reset).suggested:active {
filter: brightness(0.8);
}

div.window.glass > div.body button:not(.reset):not(.suggested):not(.menu-item):not(.no-glass) {
div.window.glass>div.body button:not(.reset):not(.suggested):not(.menu-item):not(.no-glass) {
background-color: var(--button-glass-bg, #fff1);
}

div.window.glass > div.body button:not(.reset):not(.suggested):not(.menu-item):not(.no-glass):hover {
div.window.glass>div.body button:not(.reset):not(.suggested):not(.menu-item):not(.no-glass):hover {
background-color: var(--button-glass-hover-bg, #fff3);
}

div.window.glass > div.body button:not(.reset):not(.suggested):not(.menu-item):not(.no-glass):active {
div.window.glass>div.body button:not(.reset):not(.suggested):not(.menu-item):not(.no-glass):active {
background-color: var(--button-glass-active-bg, #0005);
}

div.window:not(.core) > div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link).lucide {
div.window:not(.core)>div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link).lucide {
background-color: transparent;
}

div.window:not(.core) > div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link).lucide:hover {
div.window:not(.core)>div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link).lucide:hover {
background-color: var(--button-glass-bg);
}

div.window:not(.core) > div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link).lucide:active {
div.window:not(.core)>div.body button:not(.reset):not(.no-glass):not(.suggested):not(.link).lucide:active {
background-color: var(--button-glass-active-bg);
}
}
Loading