platformio / platformio-atom-ide-terminal

A terminal package for Atom, complete with themes, API and more for PlatformIO IDE
https://atom.io/packages/platformio-ide-terminal
MIT License
614 stars 162 forks source link

Close button next to open terminals #43

Open jokedurnez opened 8 years ago

jokedurnez commented 8 years ago

My close button is - unlike the printscreens in the readme - right next to the buttons for open terminals. It's too close. From time to time I close all my terminals by accident and that's extremely annoying. Would be cool if this button is elsewhere or prompts a 'are you sure?'.

zaaack commented 7 years ago

Find a hack way to solving this, just add these CSS code into your stylesheet file (~/.atom/styles.less)


.platformio-ide-terminal.status-bar .status-container {
    min-width: 300px;
    width: auto;
    height: auto;
    display: inline-block;
}