Skip to content

Commit

Permalink
visual touchups
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 27, 2024
1 parent 6816930 commit 97e182d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import { DataTablesPaneProps, ResultTypes } from './types';
const SouthPane = styled.div`
${({ theme }) => `
position: relative;
background-color: ${theme.colors.grayscale.light5};
background-color: ${theme.antd.colorBgBase};
z-index: 5;
overflow: hidden;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export interface Props {

const DatasourceContainer = styled.div`
${({ theme }) => css`
background-color: ${theme.colors.grayscale.light5};
position: relative;
height: 100%;
display: flex;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const propTypes = {

const ExplorePanelContainer = styled.div`
${({ theme }) => css`
background: ${theme.colors.grayscale.light5};
background: ${theme.colors.lightest};
text-align: left;
position: relative;
width: 100%;
Expand All @@ -114,7 +114,6 @@ const ExplorePanelContainer = styled.div`
max-height: 100%;
}
.data-source-selection {
background-color: ${theme.colors.grayscale.light5};
padding: ${theme.gridUnit * 2}px 0;
border-right: 1px solid ${theme.colors.grayscale.light2};
}
Expand Down Expand Up @@ -150,7 +149,7 @@ const ExplorePanelContainer = styled.div`
}
.sidebar {
height: 100%;
background-color: ${theme.colors.grayscale.light4};
background-color: ${theme.colors.lightest};
padding: ${theme.gridUnit * 2}px;
width: ${theme.gridUnit * 8}px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ const Styles = styled.div`
.title-select {
flex: 1 1 100%;
display: inline-block;
background-color: ${({ theme }) => theme.colors.grayscale.light3};
padding: ${({ theme }) => theme.gridUnit * 2}px;
border-radius: ${({ theme }) => theme.borderRadius}px;
text-align: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,12 @@ export const OptionControlContainer = styled.div<{
width: 100%;
font-size: ${({ theme }) => theme.typography.sizes.s}px;
height: ${({ theme }) => theme.gridUnit * 6}px;
background-color: ${({ theme }) => theme.colors.grayscale.light3};
background-color: ${({ theme }) => theme.colors.grayscale.light4};
border-radius: 3px;
cursor: ${({ withCaret }) => (withCaret ? 'pointer' : 'default')};
:hover {
background-color: ${({ theme }) => theme.colors.grayscale.light3};
}
`;
export const Label = styled.div`
${({ theme }) => `
Expand Down

0 comments on commit 97e182d

Please sign in to comment.