Skip to content

Commit 56db2f8

Browse files
committed
Fix incorrect CSS variable name
1 parent f045832 commit 56db2f8

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

components/dash-core-components/src/components/Tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function Tabs({
102102
colors = {
103103
border: 'var(--Dash-Stroke-Weak)',
104104
primary: 'var(--Dash-Fill-Interactive-Strong)',
105-
background: 'var(--Dash-Fill-Weak)',
105+
background: 'var(--Dash-Fill-Interactive-Weak)',
106106
},
107107
vertical = false,
108108
// eslint-disable-next-line @typescript-eslint/no-unused-vars

components/dash-core-components/src/components/css/calendar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
.dash-datepicker-calendar td:hover {
3232
cursor: pointer;
33-
background-color: var(--Dash-Fill-Weak);
33+
background-color: var(--Dash-Fill-Interactive-Weak);
3434
}
3535

3636
.dash-datepicker-calendar td:focus {

components/dash-core-components/src/components/css/dcc.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
--Dash-Stroke-Strong: rgba(0, 18, 77, 0.45);
44
--Dash-Stroke-Weak: rgba(0, 24, 102, 0.1);
55
--Dash-Fill-Interactive-Strong: #7f4bc4;
6-
--Dash-Fill-Weak: rgba(0, 30, 128, 0.04);
6+
--Dash-Fill-Interactive-Weak: rgba(0, 30, 128, 0.04);
77
--Dash-Fill-Inverse-Strong: #fff;
88
--Dash-Text-Primary: rgba(0, 18, 77, 0.87);
99
--Dash-Text-Strong: rgba(0, 9, 38, 0.9);

components/dash-core-components/src/components/css/dropdown.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
padding: 4px;
109109
border-radius: 4px;
110110
color: var(--Dash-Text-Weak);
111-
background: var(--Dash-Fill-Weak);
111+
background: var(--Dash-Fill-Interactive-Weak);
112112
font-size: 0.875em;
113113
}
114114

0 commit comments

Comments
 (0)