Skip to content

Commit 5a842ee

Browse files
authored
cherry-pick(#39957): fix(dashboard): light mode styles (#39959)
1 parent 32f6a31 commit 5a842ee

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

packages/dashboard/src/dashboard.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@
3838
background: var(--color-canvas-overlay);
3939
}
4040

41-
.dashboard-view.interactive .tab.active {
42-
background: rgb(var(--interactive-orange));
43-
color: var(--color-fg-on-emphasis);
44-
}
45-
4641
.dashboard-view.interactive .toolbar::after {
4742
content: '';
4843
position: absolute;
@@ -72,7 +67,7 @@
7267
transform: translate(-50%, -50%) scale(0.35);
7368
box-shadow: 0 0 0 0 rgb(var(--interactive-orange) / 0.52);
7469
z-index: -1;
75-
animation: interactive-track-radial 420ms cubic-bezier(0.12, 0.72, 0.22, 1);
70+
animation: interactive-track-radial 420ms cubic-bezier(0.12, 0.72, 0.22, 1) forwards;
7671
}
7772

7873
.dashboard-view.interactive .segmented-control.interactive::after {
@@ -188,6 +183,11 @@
188183
background: var(--color-canvas-subtle);
189184
}
190185

186+
.dashboard-view.interactive .tab.active {
187+
background: rgb(var(--interactive-orange));
188+
color: var(--color-fg-on-emphasis);
189+
}
190+
191191
.tab-label {
192192
overflow: hidden;
193193
text-overflow: ellipsis;

0 commit comments

Comments
 (0)