Galooshi / atom-import-js

Atom plugin for ImportJS
MIT License
36 stars 3 forks source link

Panel broken in atom-material-ui theme #40

Open bennypowers opened 5 years ago

bennypowers commented 5 years ago

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;
  }
}