mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-01-03 19:44:12 +00:00
Removing bugs
This commit is contained in:
parent
72a0a8dfcb
commit
16ee7f2f95
@ -51,7 +51,9 @@ g.node:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.drawer-button {
|
.drawer-button {
|
||||||
width: 64px!important;
|
width: 40px;
|
||||||
|
margin-right: 12px!important;
|
||||||
|
margin-left: 12px!important;
|
||||||
background: #263238;
|
background: #263238;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
border: none;
|
||||||
@ -82,6 +84,10 @@ g.node:hover {
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mat-sidenav-backdrop.mat-sidenav-shown{
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
|
|
||||||
.selected {
|
.selected {
|
||||||
stroke: #0097a7!important;
|
stroke: #0097a7!important;
|
||||||
}
|
}
|
||||||
|
@ -48,6 +48,7 @@ import { TextElement } from '../../cartography/models/drawings/text-element';
|
|||||||
import { FontFixer } from '../../cartography/helpers/font-fixer';
|
import { FontFixer } from '../../cartography/helpers/font-fixer';
|
||||||
import { MapLabelToLabelConverter } from '../../cartography/converters/map/map-label-to-label-converter';
|
import { MapLabelToLabelConverter } from '../../cartography/converters/map/map-label-to-label-converter';
|
||||||
import { select } from 'd3-selection';
|
import { select } from 'd3-selection';
|
||||||
|
import { delay } from 'q';
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -463,7 +464,10 @@ export class ProjectMapComponent implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public showMenu(){
|
public showMenu(){
|
||||||
this.drawTools.visibility = true;
|
setTimeout(() => {
|
||||||
|
this.drawTools.visibility = true;
|
||||||
|
},
|
||||||
|
100);
|
||||||
}
|
}
|
||||||
|
|
||||||
public getDrawingMock(objectType: string, text?: string): MapDrawing {
|
public getDrawingMock(objectType: string, text?: string): MapDrawing {
|
||||||
|
Loading…
Reference in New Issue
Block a user