We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efc8cec + f3df3e1 commit 9a4715cCopy full SHA for 9a4715c
lib/src/input-text/InputText.jsx
@@ -241,7 +241,7 @@ const DxcInputText = ({
241
/>
242
</TextContainer>
243
244
- <Popper
+ <DxcSuggestions
245
open={isOpen}
246
anchorEl={anchorEl}
247
anchororigin={{
@@ -285,7 +285,7 @@ const DxcInputText = ({
285
</Paper>
286
</React.Fragment>
287
</SuggestionsContainer>
288
- </Popper>
+ </DxcSuggestions>
289
</ThemeProvider>
290
);
291
};
@@ -318,6 +318,10 @@ const getCursor = (interactuable, disabled) => {
318
return "cursor:default; outline:none;";
319
320
321
+const DxcSuggestions = styled(Popper)`
322
+ z-index: 1301;
323
+`;
324
+
325
const SuggestionsContainer = styled.div`
326
width: ${(props) => calculateWidth(props.margin, props.size)};
327
.MuiPaper-root {
0 commit comments