-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* #1890 added directions column, and delete/edit buttons * #1890 corrected styles for direction button * #1890 fixed formatting issues, deleted useless function and comment --------- Co-authored-by: Nazarii Ivasyshyn <nivasy@softserveinc.com>
- Loading branch information
Showing
4 changed files
with
82 additions
and
17 deletions.
There are no files selected for viewing
27 changes: 24 additions & 3 deletions
27
...tions-institution-hierarchies-list/directions-institution-hierarchies-list.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 22 additions & 1 deletion
23
...tions-institution-hierarchies-list/directions-institution-hierarchies-list.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,22 @@ | ||
@import "src/app/shared/styles/tables.scss"; | ||
@import "src/app/shared/styles/tables.scss"; | ||
|
||
table { | ||
width: 100%; | ||
height: 20px; | ||
td, th { | ||
border-style: none; | ||
} | ||
|
||
img { | ||
width: 30px; | ||
height: 30px; | ||
} | ||
|
||
a { | ||
cursor: pointer; | ||
span { | ||
margin-left: 5px; | ||
vertical-align: top; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
.../directions-wrapper/directions-institution-hierarchies-list/ins-hierarchy-table-record.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Direction } from "../../../../../shared/models/category.model"; | ||
|
||
export interface InsHierarchyTableRecord { | ||
name: string[]; | ||
directions: Direction[] | ||
} |