1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-24 08:22:29 +02:00

Fixed missing CSS vars (#949)

* Fixed missing css vars

* Updated snapshots
This commit is contained in:
Harshil Sharma 2021-08-12 15:29:57 +05:30 committed by GitHub
parent aaa0b0dccc
commit 3a7747b7dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View File

@ -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"

View File

@ -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',
}),

View File

@ -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%;
}
@ -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);
}
}
}

View File

@ -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;
@ -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));
}
}