mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-21 21:49:55 +03:00
fix(devui): fix z-index issues
This commit is contained in:
parent
4d8daffc6b
commit
732e224a29
|
@ -16,7 +16,7 @@ export const style = ({
|
||||||
right: 0px;
|
right: 0px;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
z-index: 4;
|
z-index: 14;
|
||||||
display: ${open ? 'flex' : 'none'};
|
display: ${open ? 'flex' : 'none'};
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -37,7 +37,7 @@ export const style = ({
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 2;
|
z-index: 12;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
min-width: 320px;
|
min-width: 320px;
|
||||||
${fullWidth ? 'width: 99%;' : ''}
|
${fullWidth ? 'width: 99%;' : ''}
|
||||||
|
|
|
@ -12,7 +12,7 @@ export const style = ({
|
||||||
right: 0px;
|
right: 0px;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
z-index: 4;
|
z-index: 14;
|
||||||
display: ${open ? 'flex' : 'none'};
|
display: ${open ? 'flex' : 'none'};
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -33,7 +33,7 @@ export const style = ({
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 2;
|
z-index: 12;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
min-width: 320px;
|
min-width: 320px;
|
||||||
${fullWidth ? 'width: 99%;' : ''}
|
${fullWidth ? 'width: 99%;' : ''}
|
||||||
|
|
|
@ -128,7 +128,7 @@ export default class TestTab<S, A extends Action<unknown>> extends Component<
|
||||||
return (
|
return (
|
||||||
<Container>
|
<Container>
|
||||||
<Toolbar>
|
<Toolbar>
|
||||||
<div style={{ flexGrow: 1, zIndex: 100 }}>
|
<div style={{ flexGrow: 1, zIndex: 10 }}>
|
||||||
<Select
|
<Select
|
||||||
options={templates}
|
options={templates}
|
||||||
getOptionValue={(template: Template) => template.name!}
|
getOptionValue={(template: Template) => template.name!}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user