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

Panel broken in atom-material-ui theme #40

Open
bennypowers opened this issue Jun 24, 2019 · 0 comments
Open

Panel broken in atom-material-ui theme #40

bennypowers opened this issue Jun 24, 2019 · 0 comments

Comments

@bennypowers
Copy link

The atom material ui theme has this style

/* /Users/bennyp/.atom/packages/atom-material-ui/index.less */
.overlay, atom-panel.modal {
    color: rgba(221, 221, 221, 0.65);
    background-color: #212121;
    font-size: 12px;
    padding: 10px;
    box-shadow: 0 0 10px transparent;
    border-radius: 0.125rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.19), 0 0.375rem 0.375rem rgba(0, 0, 0, 0.23);
}

which sets overflow: hidden on the dropdown.

anyone coming here with this problem can add this to their stylesheet to fix it

.theme-atom-material-ui {
  .overlay, atom-panel.modal {
    overflow: initial;
  }
}
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

1 participant