Change terminal colors

This commit is contained in:
Gabor PEK
2018-03-14 14:34:17 +01:00
parent ba2e2ace6d
commit a7dbd15370
7 changed files with 47 additions and 9 deletions

View File

@ -161,4 +161,4 @@ $company-logo-width: 130px;
// Change this to switch template. Options: 'default', 'vraw', 'hraw'
$layout-template: 'default';
$layout-template: 'hraw';

View File

@ -4,8 +4,9 @@ $grid-rows-count: 15;
$default-layout: (
'header': (1, 2, 1, 2),
'messages': (1, 2, 2, 10),
'webide': (4,$grid-rows-count+1, 1,$grid-rows-count+1),
'terminal': (1, 4, 10,$grid-rows-count+1),
'webide': (4,$grid-rows-count+1, 1, $grid-rows-count+1),
'terminal': (1, 4, 10, $grid-rows-count),
'terminal-footer': (1, 4, $grid-rows-count, -1),
'web': (2, 4, 1, 10)
);
@ -13,7 +14,8 @@ $vraw-layout: (
'header': (1, 2, 1, 2),
'messages': (1, 2, 2,$grid-rows-count+1),
'webide': (4,$grid-rows-count+1, 1,$grid-rows-count+1),
'terminal': (2, 4, 1,$grid-rows-count+1),
'terminal': (2, 4, 1,$grid-rows-count),
'terminal-footer': (2, 4, $grid-rows-count, -1),
'web': (),
);
@ -21,7 +23,8 @@ $hraw-layout: (
'header': (1, 2, 1,$grid-rows-count+1),
'messages': (1, 2, 2,$grid-rows-count+1),
'webide': (2,$grid-rows-count+1, 1, 10),
'terminal': (2,$grid-rows-count+1, 10,$grid-rows-count+1),
'terminal': (2, $grid-rows-count+1, 10, $grid-rows-count),
'terminal-footer': (2, $grid-rows-count+1, $grid-rows-count, -1),
'web': (),
);