Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed missing CSS vars #949

Merged
merged 3 commits into from
Aug 12, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ exports[`components/calculations/Options should match snapshot menu open 1`] = `
</div>
</div>
<div
class=" css-inewzj-menu"
class=" css-1kslk4z-menu"
>
<div
class=" css-g29tl0-MenuList"
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/calculations/options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const styles = {
...provided,
minWidth: '100%',
width: 'max-content',
background: 'rgb(var(--main-bg))',
background: 'rgb(var(--center-channel-bg-rgb))',
right: '0',
marginBottom: '0',
}),
Expand Down
6 changes: 3 additions & 3 deletions webapp/src/components/properties/dateRange/dateRange.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@

.DayPicker {
}

.DayPickerInput-Overlay {
background-color: rgba(var(--main-bg));
background-color: rgba(var(--center-channel-bg-rgb));
box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1),0 4px 11px hsla(0, 0%, 0%, 0.1);
line-height: 100%;
}
Expand Down Expand Up @@ -152,4 +152,4 @@
.DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
background-color: rgba(var(--body-color), 0.2);
}
}
}
8 changes: 4 additions & 4 deletions webapp/src/components/table/calculation/calculationRow.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
border-top: solid 1px rgba(var(--body-color), 0.09);
// To override table's specific border
border-bottom: none !important;
background-color: rgb(var(--main-bg));
background-color: rgb(var(--center-channel-bg-rgb));

.octo-table-cell {
background-color: rgb(var(--main-bg));
background-color: rgb(var(--center-channel-bg-rgb));
align-items: center;
justify-content: flex-end;
border: none;
Expand All @@ -28,10 +28,10 @@
.Table {
.octo-table-cell.Calculation:focus-within {
border: unset;
background-color: rgb(var(--main-bg));
background-color: rgb(var(--center-channel-bg-rgb));
}

.octo-table-cell.Calculation:hover {
background-color: rgb(var(--main-bg));
background-color: rgb(var(--center-channel-bg-rgb));
}
}