mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-02 18:39:05 +01:00
fix terminal paste (inverted colors) (#271)
This commit is contained in:
parent
2d34a81259
commit
62d9d53e52
@ -285,9 +285,9 @@
|
||||
}
|
||||
|
||||
&.is-layoutmode .block-mask-inner {
|
||||
margin-top: 35px; // TODO fix this magic
|
||||
margin-top: var(--header-height); // TODO fix this magic
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
height: calc(100% - 35px);
|
||||
height: calc(100% - var(--header-height));
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
.view-term {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
|
@ -314,6 +314,7 @@ const TerminalView = ({ blockId, model }: TerminalViewProps) => {
|
||||
drawBoldTextInBrightColors: false,
|
||||
fontWeight: "normal",
|
||||
fontWeightBold: "bold",
|
||||
allowTransparency: true,
|
||||
},
|
||||
{
|
||||
keydownHandler: handleTerminalKeydown,
|
||||
|
Loading…
Reference in New Issue
Block a user