Skip to content

Commit 07e2745

Browse files
authored
Merge pull request #87 from metrico/alexey-feature-light-theme
logs light bg fix
2 parents f576b4e + 36930e9 commit 07e2745

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Diff for: src/components/DataView/styled/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import styled from "@emotion/styled";
22
import { CircularProgress } from "@mui/material";
33

44
export const DataViewStyled = styled.div`
5-
background: ${(props) => props.theme.viewBg};
5+
background: ${(props) => props.theme.mainBgColor};
66
margin: 6px 8px;
77
overflow-y: scroll;
88
overflow-x: hidden;

Diff for: src/plugins/queryhistory/styled/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ import { TabsUnstyled } from "@mui/base";
1313
export const StyledDrawer = styled((props) => (
1414
<Drawer
1515
anchor={"bottom"}
16-
style={{ maxHeight: "250px" }}
16+
style={{ maxHeight: "250px", }}
1717
variant={"persistent"}
1818
{...props}
1919
/>
2020
))(({ theme }) => ({
2121
"& .MuiPaper-root": {
22-
borderTop: "none",
22+
borderTop:`1px solid ${theme.buttonBorder}`,
2323
},
2424
}));
2525

Diff for: src/plugins/settingsmenu/Menu.js

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ const StyledMenu = styled((props) => (
2929
marginTop: theme.spacing(1),
3030
minWidth: 180,
3131
color:clokitheme.textColor,
32+
border: `1px solid ${clokitheme.buttonBorder}`,
3233
backgroundColor: clokitheme.buttonDefault,
3334
"& .MuiMenu-list": {
3435
padding: "4px 0",

Diff for: src/theme/light.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const typography = {
5656
const orange = {
5757
or100: "hsl(39, 100%, 50%)",
5858
};
59-
const mainBgColor = white.w500;
59+
const mainBgColor = white.w100;
6060
const logBgColor = white.w100;
6161
const tabActive = white.w100;
6262
const tabHeader = white.b400;

0 commit comments

Comments
 (0)