Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

z-index issues with editor sub menu and toolbar #364

Open
Beslinda opened this issue Jun 25, 2024 · 2 comments
Open

z-index issues with editor sub menu and toolbar #364

Beslinda opened this issue Jun 25, 2024 · 2 comments
Assignees

Comments

@Beslinda
Copy link

Describe the bug
I have the exact issue mentioned in here . The popover submenu of one editor gets hidden by the toolbar of the next one.

I tried the solution provided here although the default style is applied, the issue still persists .

@ulri1122
Copy link

+1

@Beslinda
Copy link
Author

For those that need a solution: I somehow fixed it by adding the following styles:

  .sun-editor {
    .se-wrapper {
      overflow: auto;
      z-index: unset;

      .se-wrapper-inner {
        overflow-y: visible;
        overflow-x: visible;
      }
    }
  }

  .se-toolbar {
    outline: none;
    z-index: unset;
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants