jesseweed / seti-ui

A subtle dark colored UI theme for Atom.
MIT License
943 stars 287 forks source link

Command Palette not wide/padded enough for output #383

Closed dhollinger closed 6 years ago

dhollinger commented 7 years ago

Command Palette is too small for some plugins' output and instead ends up overlaying output on top of each other.

Example from the git-plus plugin with Seti-UI: seti-screen

Same example with the Atom Dark UI: atom-screen

Same example with the Material UI: mat-screen

forestgagnon commented 7 years ago

FYI as a workaround you can specify a custom modal width for things like command palette in your styles.less. I use this snippet to make modals wider:

atom-workspace, atom-text-editor {
  .modal {
    width: 800px;
    margin-left: -400px;
  }
}
jesseweed commented 6 years ago

I believe this issue has been resolved. Free free to re-open if you disagree.