updates for cmdinput spacing, input-sep fonts

This commit is contained in:
sawka 2024-02-23 15:15:16 -08:00
parent 9c97882adf
commit 59c6f2da83
5 changed files with 9 additions and 8 deletions

View File

@ -16,7 +16,7 @@
@success-green: rgb(38, 97, 26);
@error-red: #cc0000;
@warning-yellow: #ffa500;
@textarea-background: #101010;
@textarea-background: #171717;
@text-primary: #fff;
@text-secondary: #c3c8c2;

View File

@ -192,7 +192,7 @@
}
.meta.meta-line1 {
color: rgba(@base-color, 0.6) !important;
color: @text-caption;
}
.meta.meta-line2 {

View File

@ -4,7 +4,7 @@
display: flex;
flex-direction: column;
overflow: auto;
padding: 0 0 10px 0;
padding: 0;
flex-grow: 1;
position: relative;
overflow-x: hidden;
@ -35,8 +35,10 @@
.line-sep-labeled {
display: flex;
align-items: center;
margin-top: 1em;
color: rgba(@base-color, 0.5);
color: @text-caption;
font-family: var(--termfontfamily);
line-height: var(--termlineheight);
font-size: var(--termfontsize);
}
.line-sep-labeled::before,

View File

@ -17,7 +17,7 @@
right: 0;
display: flex;
flex-direction: column;
height: calc(100% - 0.5rem);
height: 100%;
overflow: hidden;
margin-left: 5px;
padding-left: 5px;
@ -73,7 +73,7 @@
display: flex;
flex-direction: column;
position: absolute;
height: calc(100% - 0.5rem);
height: 100%;
overflow-x: hidden;
.rendermode-tag {

View File

@ -36,7 +36,6 @@ class WorkspaceView extends React.Component<{}, {}> {
if (cmdInputHeight == 0) {
cmdInputHeight = MagicLayout.CmdInputHeight; // this is the base size of cmdInput (measured using devtools)
}
cmdInputHeight += MagicLayout.CmdInputBottom; // reference to .cmd-input, bottom: 12px
let isHidden = GlobalModel.activeMainView.get() != "session";
let mainSidebarModel = GlobalModel.mainSidebarModel;