-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8070abb
commit 10e5625
Showing
8 changed files
with
206 additions
and
91 deletions.
There are no files selected for viewing
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
55 changes: 28 additions & 27 deletions
55
src/app/features/audit-log/audit-log/audit-log.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
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
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,50 @@ | ||
:host ::ng-deep { | ||
.performer-list-table { | ||
.p-datatable .p-datatable-tbody > tr > td .p-column-title { | ||
display: none; | ||
} | ||
|
||
.action { | ||
width: 4rem; | ||
} | ||
|
||
.p-datatable-wrapper table { | ||
background-color: #1e1e1e; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 959px) { | ||
.p-datatable { | ||
.p-datatable-thead > tr > th, | ||
.p-datatable-tfoot > tr > td { | ||
display: none !important; | ||
} | ||
|
||
arpa-avatar { | ||
display: none; | ||
} | ||
|
||
.p-datatable-tbody > tr { | ||
padding: 0.5rem 0; | ||
|
||
& > td { | ||
text-align: left; | ||
width: 100%; | ||
float: left; | ||
clear: left; | ||
border: 0 none; | ||
margin: 0.2rem; | ||
border-bottom: 1px solid var(--surface-d); | ||
|
||
.p-column-title { | ||
padding: 0.4rem; | ||
min-width: 30%; | ||
display: inline-block; | ||
margin: -0.4em 1em -0.4em -0.4rem; | ||
font-weight: bold; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
34 changes: 19 additions & 15 deletions
34
src/app/features/persons/person-list/person-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
<div class='p-formgroup-inline p-jc-between'> | ||
<div class='p-field p-col p-text-left' > | ||
<button label="{{ 'persons.ADD_NEW_PERSON' | translate }}" | ||
icon='pi pi-plus' pButton | ||
(click)='openPersonDetailDialog(null)' | ||
type='button'></button> | ||
<div class="p-formgroup-inline p-jc-between"> | ||
<div class="p-field p-col p-text-left"> | ||
<button | ||
label="{{ 'persons.ADD_NEW_PERSON' | translate }}" | ||
icon="pi pi-plus" | ||
pButton | ||
(click)="openPersonDetailDialog(null)" | ||
type="button" | ||
></button> | ||
</div> | ||
</div> | ||
|
||
<!-- Graphql feed controls and holds graphql api results. --> | ||
<arpa-graph-ql-feed #feedSource [contentTemplate]='feed' [query]='query'></arpa-graph-ql-feed> | ||
<arpa-graph-ql-feed #feedSource [contentTemplate]="feed" [query]="query"></arpa-graph-ql-feed> | ||
|
||
<router-outlet name='modal'></router-outlet> | ||
<router-outlet name="modal"></router-outlet> | ||
|
||
<!-- The feed template is projected into the graph-ql-feed component. --> | ||
<ng-template #feed let-feed> | ||
<arpa-table | ||
(lazyEvents)='feedSource.onLazy($event)' | ||
(rowClickEvents)='onRowClick($event)' | ||
[columns]='columns' | ||
[feed]='feed' | ||
></arpa-table> | ||
<div class="person-list-table"> | ||
<arpa-table | ||
(lazyEvents)="feedSource.onLazy($event)" | ||
(rowClickEvents)="onRowClick($event)" | ||
[columns]="columns" | ||
[feed]="feed" | ||
></arpa-table> | ||
</div> | ||
</ng-template> | ||
|
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,50 @@ | ||
:host ::ng-deep { | ||
.person-list-table { | ||
.p-datatable .p-datatable-tbody > tr > td .p-column-title { | ||
display: none; | ||
} | ||
|
||
.action { | ||
width: 4rem; | ||
} | ||
|
||
.p-datatable-wrapper table { | ||
background-color: #1e1e1e; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 959px) { | ||
.p-datatable { | ||
.p-datatable-thead > tr > th, | ||
.p-datatable-tfoot > tr > td { | ||
display: none !important; | ||
} | ||
|
||
arpa-avatar { | ||
display: none; | ||
} | ||
|
||
.p-datatable-tbody > tr { | ||
padding: 0.5rem 0; | ||
border-bottom: 1px solid var(--surface-d); | ||
|
||
& > td { | ||
text-align: left; | ||
width: 100%; | ||
float: left; | ||
clear: left; | ||
border: 0 none; | ||
margin: 0.2rem; | ||
|
||
.p-column-title { | ||
padding: 0.4rem; | ||
min-width: 30%; | ||
display: inline-block; | ||
margin: -0.4em 1em -0.4em -0.4rem; | ||
font-weight: bold; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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
55 changes: 28 additions & 27 deletions
55
src/app/features/projects/project-list/project-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