romgrk / termrk

Terminal for atom, using pty.js & term.js
MIT License
33 stars 7 forks source link

Changing background color dosen't work , and Enhancement request to allow background color of theme #16

Closed v3ss0n closed 9 years ago

v3ss0n commented 9 years ago

I tried this and dosen't work

.termrk .terminal {
    background-color:  @app-background-color
}
v3ss0n commented 9 years ago

this one works

atom-panel.termrk-panel .termrk-container {
    background-color:  @app-background-color
}
v3ss0n commented 9 years ago

it fails to work again after atom restart.

v3ss0n commented 9 years ago

I have to do this to ovveride background color and make it transparent.

atom-panel.termrk-panel .termrk-container{
    background-color:  @app-background-color;
    border: 5px solid transparent;
}
atom-panel .termrk .terminal {
    background-color: @app-background-color;
}
romgrk commented 9 years ago

Well noted. Working on a fix, the styling format might change.

romgrk commented 9 years ago

Fixed 1ddc5b6047ba4283a63ac894fa77b27f51f319cc

Styling should now work as described in README.md, using .termrk .terminal and .termrk .terminal-cursor.