made a changes in Diff.styled.ts,
also in QueryForm.styled.ts
This commit is contained in:
parent
727f38401b
commit
0e7a74be17
3 changed files with 6 additions and 6 deletions
|
@ -33,6 +33,7 @@ export const Fieldset = styled.fieldset`
|
|||
flex: 1;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
color: ${({ theme }) => theme.default.color.normal};
|
||||
`;
|
||||
|
||||
export const ButtonsContainer = styled.div`
|
||||
|
|
|
@ -14,9 +14,6 @@ export const DiffWrapper = styled.div`
|
|||
background-color: ${({ theme }) => theme.default.backgroundColor};
|
||||
color: ${({ theme }) => theme.default.color.normal};
|
||||
}
|
||||
.ace_line {
|
||||
background-color: ${({ theme }) => theme.default.backgroundColor};
|
||||
}
|
||||
.ace_gutter-cell {
|
||||
background-color: ${({ theme }) =>
|
||||
theme.ksqlDb.query.editor.cell.backgroundColor};
|
||||
|
@ -39,10 +36,10 @@ export const DiffWrapper = styled.div`
|
|||
.ace_string {
|
||||
color: ${({ theme }) => theme.ksqlDb.query.editor.aceString};
|
||||
}
|
||||
> .codeMarker {
|
||||
background: ${({ theme }) => theme.icons.warningIcon};
|
||||
.codeMarker {
|
||||
background-color: ${({ theme }) => theme.ksqlDb.query.editor.codeMarker};
|
||||
position: absolute;
|
||||
z-index: 20;
|
||||
z-index: 2000;
|
||||
}
|
||||
`;
|
||||
|
||||
|
|
|
@ -366,6 +366,7 @@ export const theme = {
|
|||
cursor: Colors.neutral[90],
|
||||
variable: Colors.red[50],
|
||||
aceString: Colors.green[60],
|
||||
codeMarker: Colors.yellow[20],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
@ -761,6 +762,7 @@ export const darkTheme: ThemeType = {
|
|||
cursor: Colors.neutral[0],
|
||||
variable: Colors.red[50],
|
||||
aceString: Colors.green[60],
|
||||
codeMarker: Colors.yellow[20],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue