mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-21 23:43:15 +01:00
RequestPane body form input text color visibility fix in dark mode (#70)
This commit is contained in:
parent
b93be5a846
commit
cffef31f97
@ -12,7 +12,7 @@ const Wrapper = styled.div`
|
||||
}
|
||||
|
||||
thead {
|
||||
color: ${(props) => props.theme.table.thead.color};;
|
||||
color: ${(props) => props.theme.table.thead.color};
|
||||
font-size: 0.8125rem;
|
||||
user-select: none;
|
||||
}
|
||||
@ -29,6 +29,7 @@ const Wrapper = styled.div`
|
||||
width: 100%;
|
||||
border: solid 1px transparent;
|
||||
outline: none !important;
|
||||
color: ${(props) => props.theme.table.input.color};
|
||||
|
||||
&:focus {
|
||||
outline: none !important;
|
||||
|
@ -12,7 +12,7 @@ const Wrapper = styled.div`
|
||||
}
|
||||
|
||||
thead {
|
||||
color: ${(props) => props.theme.table.thead.color};;
|
||||
color: ${(props) => props.theme.table.thead.color};
|
||||
font-size: 0.8125rem;
|
||||
user-select: none;
|
||||
}
|
||||
@ -29,6 +29,7 @@ const Wrapper = styled.div`
|
||||
width: 100%;
|
||||
border: solid 1px transparent;
|
||||
outline: none !important;
|
||||
color: ${(props) => props.theme.table.input.color};
|
||||
|
||||
&:focus {
|
||||
outline: none !important;
|
||||
|
@ -15,7 +15,7 @@ const darkTheme = {
|
||||
},
|
||||
|
||||
menubar: {
|
||||
bg: '#333333',
|
||||
bg: '#333333'
|
||||
},
|
||||
|
||||
sidebar: {
|
||||
@ -55,8 +55,8 @@ const darkTheme = {
|
||||
},
|
||||
|
||||
dropdown: {
|
||||
color: "rgb(204, 204, 204)",
|
||||
iconColor: "rgb(204, 204, 204)",
|
||||
color: 'rgb(204, 204, 204)',
|
||||
iconColor: 'rgb(204, 204, 204)',
|
||||
bg: 'rgb(48, 48, 49)',
|
||||
hoverBg: '#185387',
|
||||
shadow: 'rgb(0 0 0 / 36%) 0px 2px 8px',
|
||||
@ -107,7 +107,7 @@ const darkTheme = {
|
||||
active: {
|
||||
bg: 'transparent',
|
||||
hoverBg: 'transparent'
|
||||
},
|
||||
}
|
||||
},
|
||||
gridBorder: '#4f4f4f'
|
||||
}
|
||||
@ -122,9 +122,9 @@ const darkTheme = {
|
||||
},
|
||||
body: {
|
||||
color: '#ccc',
|
||||
bg: 'rgb(48, 48, 49)',
|
||||
bg: 'rgb(48, 48, 49)'
|
||||
},
|
||||
input : {
|
||||
input: {
|
||||
bg: 'rgb(65, 65, 65)',
|
||||
border: 'rgb(65, 65, 65)',
|
||||
focusBorder: 'rgb(65, 65, 65)'
|
||||
@ -191,10 +191,13 @@ const darkTheme = {
|
||||
|
||||
table: {
|
||||
border: '#333',
|
||||
thead : {
|
||||
thead: {
|
||||
color: 'rgb(204, 204, 204)'
|
||||
},
|
||||
striped: '#2A2D2F'
|
||||
striped: '#2A2D2F',
|
||||
input: {
|
||||
color: '#555555'
|
||||
}
|
||||
},
|
||||
|
||||
plainGrid: {
|
||||
|
@ -7,7 +7,7 @@ const lightTheme = {
|
||||
colors: {
|
||||
text: {
|
||||
danger: 'rgb(185, 28, 28)',
|
||||
muted: '#4b5563',
|
||||
muted: '#4b5563'
|
||||
},
|
||||
bg: {
|
||||
danger: '#dc3545'
|
||||
@ -15,7 +15,7 @@ const lightTheme = {
|
||||
},
|
||||
|
||||
menubar: {
|
||||
bg: 'rgb(44, 44, 44)',
|
||||
bg: 'rgb(44, 44, 44)'
|
||||
},
|
||||
|
||||
sidebar: {
|
||||
@ -55,8 +55,8 @@ const lightTheme = {
|
||||
},
|
||||
|
||||
dropdown: {
|
||||
color: "rgb(48 48 48)",
|
||||
iconColor: "rgb(75, 85, 99)",
|
||||
color: 'rgb(48 48 48)',
|
||||
iconColor: 'rgb(75, 85, 99)',
|
||||
bg: '#fff',
|
||||
hoverBg: '#e9e9e9',
|
||||
shadow: 'rgb(50 50 93 / 25%) 0px 6px 12px -2px, rgb(0 0 0 / 30%) 0px 3px 7px -3px',
|
||||
@ -107,7 +107,7 @@ const lightTheme = {
|
||||
active: {
|
||||
bg: '#dcdcdc',
|
||||
hoverBg: '#dcdcdc'
|
||||
},
|
||||
}
|
||||
},
|
||||
gridBorder: '#f4f4f4'
|
||||
}
|
||||
@ -126,9 +126,9 @@ const lightTheme = {
|
||||
},
|
||||
body: {
|
||||
color: 'rgb(52, 52, 52)',
|
||||
bg: 'white',
|
||||
bg: 'white'
|
||||
},
|
||||
input : {
|
||||
input: {
|
||||
bg: 'white',
|
||||
border: '#ccc',
|
||||
focusBorder: '#8b8b8b'
|
||||
@ -195,10 +195,13 @@ const lightTheme = {
|
||||
|
||||
table: {
|
||||
border: '#efefef',
|
||||
thead : {
|
||||
thead: {
|
||||
color: '#616161'
|
||||
},
|
||||
striped: '#f3f3f3'
|
||||
striped: '#f3f3f3',
|
||||
input: {
|
||||
color: '#000000'
|
||||
}
|
||||
},
|
||||
|
||||
plainGrid: {
|
||||
|
Loading…
Reference in New Issue
Block a user