mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 09:36:43 +03:00
fix(devui): fix z-index issues (#838)
* fix(devui): fix z-index issues * Update snapshots
This commit is contained in:
parent
01ad152ac9
commit
3a84ab4f7c
|
@ -16,7 +16,7 @@ export const style = ({
|
|||
right: 0px;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
z-index: 4;
|
||||
z-index: 14;
|
||||
display: ${open ? 'flex' : 'none'};
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
@ -37,7 +37,7 @@ export const style = ({
|
|||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
z-index: 12;
|
||||
max-height: 100%;
|
||||
min-width: 320px;
|
||||
${fullWidth ? 'width: 99%;' : ''}
|
||||
|
|
|
@ -12,7 +12,7 @@ export const style = ({
|
|||
right: 0px;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
z-index: 4;
|
||||
z-index: 14;
|
||||
display: ${open ? 'flex' : 'none'};
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
@ -33,7 +33,7 @@ export const style = ({
|
|||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
z-index: 12;
|
||||
max-height: 100%;
|
||||
min-width: 320px;
|
||||
${fullWidth ? 'width: 99%;' : ''}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
exports[`Dialog renders correctly 1`] = `
|
||||
<div
|
||||
class="sc-pGacB cQhcnT"
|
||||
class="sc-pGacB bbkBgj"
|
||||
>
|
||||
<div />
|
||||
<div>
|
||||
|
@ -45,7 +45,7 @@ exports[`Dialog renders correctly 1`] = `
|
|||
|
||||
exports[`Dialog renders modal 1`] = `
|
||||
<div
|
||||
class="sc-pGacB cQhcnT"
|
||||
class="sc-pGacB bbkBgj"
|
||||
>
|
||||
<div />
|
||||
<div>
|
||||
|
@ -85,7 +85,7 @@ exports[`Dialog renders modal 1`] = `
|
|||
|
||||
exports[`Dialog renders with props 1`] = `
|
||||
<div
|
||||
class="sc-pGacB itppjQ"
|
||||
class="sc-pGacB cALHtI"
|
||||
open=""
|
||||
>
|
||||
<div />
|
||||
|
|
|
@ -128,7 +128,7 @@ export default class TestTab<S, A extends Action<unknown>> extends Component<
|
|||
return (
|
||||
<Container>
|
||||
<Toolbar>
|
||||
<div style={{ flexGrow: 1, zIndex: 100 }}>
|
||||
<div style={{ flexGrow: 1, zIndex: 10 }}>
|
||||
<Select
|
||||
options={templates}
|
||||
getOptionValue={(template: Template) => template.name!}
|
||||
|
|
Loading…
Reference in New Issue
Block a user