Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
#216 fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Shakhov committed Jul 11, 2017
1 parent a575891 commit 380b30c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/deep/ .vm-tag-creation-dialog {
/deep/ .tag-creation-dialog {
width: 375px;
}
1 change: 0 additions & 1 deletion src/app/tags/tag-edit/tag-edit.component.scss
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

2 changes: 1 addition & 1 deletion src/app/tags/tag/tag.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="key" [innerHTML]="tag.keyWithoutCategory | highlight:query"></div>
<div class="key" [innerHTML]="tag.key | highlight:query"></div>

<div style="width: 300px">
<cs-inline-edit
Expand Down
2 changes: 1 addition & 1 deletion src/app/tags/tags.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class TagsComponent implements OnChanges {
public addTag(category: TagCategory): void {
this.dialogService.showCustomDialog({
component: TagCreationDialogComponent,
classes: 'vm-tag-creation-dialog',
classes: 'tag-creation-dialog',
providers: [
{ provide: 'category', useValue: this.getCategoryByName(category.name) },
{ provide: 'entity', useValue: this.entity }
Expand Down

0 comments on commit 380b30c

Please sign in to comment.