mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-04-16 06:36:33 +00:00
position of console changed to the right
This commit is contained in:
parent
bec15d4d37
commit
2350f88c59
@ -7,8 +7,8 @@
|
||||
.consoleWrapper {
|
||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
left: 20px;
|
||||
bottom: 40px;
|
||||
left: 80px;
|
||||
height: 180px;
|
||||
width: 600px;
|
||||
background: #000000 !important;
|
||||
|
@ -43,7 +43,7 @@ export class ConsoleWrapperComponent implements OnInit {
|
||||
this.themeService.getActualTheme() === 'light'
|
||||
? (this.isLightThemeEnabled = true)
|
||||
: (this.isLightThemeEnabled = false);
|
||||
this.style = { bottom: '20px', left: '20px', width: '720px', height: '460px' };
|
||||
this.style = { bottom: '20px', left: '80px', width: '720px', height: '460px' };
|
||||
|
||||
this.consoleService.nodeConsoleTrigger.subscribe((node) => {
|
||||
this.addTab(node, true);
|
||||
@ -58,7 +58,7 @@ export class ConsoleWrapperComponent implements OnInit {
|
||||
minimize(value: boolean) {
|
||||
this.isMinimized = value;
|
||||
if (!value) {
|
||||
this.style = { bottom: '20px', left: '20px', width: `${this.resizedWidth}px`, height: `${this.resizedHeight}px` };
|
||||
this.style = { bottom: '20px', left: '80px', width: `${this.resizedWidth}px`, height: `${this.resizedHeight}px` };
|
||||
} else {
|
||||
this.style = { bottom: '20px', left: '20px', width: `${this.resizedWidth}px`, height: '56px' };
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user