Removing bugs

This commit is contained in:
Piotr Pekala 2018-12-11 01:36:23 -08:00
parent 72a0a8dfcb
commit 16ee7f2f95
2 changed files with 12 additions and 2 deletions

View File

@ -51,7 +51,9 @@ g.node:hover {
}
.drawer-button {
width: 64px!important;
width: 40px;
margin-right: 12px!important;
margin-left: 12px!important;
background: #263238;
padding: 0;
border: none;
@ -82,6 +84,10 @@ g.node:hover {
flex-direction: row;
}
.mat-sidenav-backdrop.mat-sidenav-shown{
background-color: transparent !important;
}
.selected {
stroke: #0097a7!important;
}

View File

@ -48,6 +48,7 @@ import { TextElement } from '../../cartography/models/drawings/text-element';
import { FontFixer } from '../../cartography/helpers/font-fixer';
import { MapLabelToLabelConverter } from '../../cartography/converters/map/map-label-to-label-converter';
import { select } from 'd3-selection';
import { delay } from 'q';
@Component({
@ -463,7 +464,10 @@ export class ProjectMapComponent implements OnInit, OnDestroy {
}
public showMenu(){
this.drawTools.visibility = true;
setTimeout(() => {
this.drawTools.visibility = true;
},
100);
}
public getDrawingMock(objectType: string, text?: string): MapDrawing {