Skip to content

Commit 31cebc5

Browse files
committed
style(taskbar): Comment out border-radius and overflow properties, add color styles for taskbar glow effects - Temporarily disable border-radius and overflow styles for the taskbar, and introduce new color styles for dark and light themes to enhance visual customization.
1 parent 7807570 commit 31cebc5

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

src/styles/taskbar.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ html.window-taskbar body {
1717
padding: 0 10px;
1818
display: inline-flex;
1919
align-items: center;
20-
border-radius: 12px;
20+
/* border-radius: 12px; */
21+
/* overflow: hidden; */
2122
/* border: 1px solid rgba(255, 255, 255, 0.12); */
2223
background: rgba(0, 0, 0, 0.28);
2324
backdrop-filter: blur(10px);
@@ -65,6 +66,16 @@ html.window-taskbar body {
6566
color: rgba(0, 0, 0, 0.9);
6667
}
6768

69+
.taskbar-bar--theme-dark .taskbar-v.taskbar-glow-orange,
70+
.taskbar-bar--theme-light .taskbar-v.taskbar-glow-orange {
71+
color: var(--orange);
72+
}
73+
74+
.taskbar-bar--theme-dark .taskbar-v.taskbar-glow-red,
75+
.taskbar-bar--theme-light .taskbar-v.taskbar-glow-red {
76+
color: var(--red);
77+
}
78+
6879
.taskbar-bar--two-line {
6980
white-space: normal;
7081
}

0 commit comments

Comments
 (0)