Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/PSMRI/TM-UI-NEXT into de…
Browse files Browse the repository at this point in the history
…velop
  • Loading branch information
Ancy Riju authored and Ancy Riju committed Mar 25, 2024
2 parents cd32a5a + 752a152 commit 576158b
Show file tree
Hide file tree
Showing 12 changed files with 40 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/app/app-modules/lab/worklist/worklist.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mat-input-container {

mat-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

@media (max-width: 481px) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mat-input-container {

mat-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

:host /deep/ .pagination {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mat-input-container {

mat-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

:host /deep/ .pagination {
Expand Down Expand Up @@ -187,4 +187,4 @@ ul li div {
.totalCount,
.description {
padding-top: 15px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@
</th>
<td class="centered" mat-cell *matCellDef="let element">
<mat-checkbox
class="control-label"
[disabled]="
element.statusCode === 1 ||
element.statusCode === 2 ||
Expand Down Expand Up @@ -234,30 +233,37 @@
<ng-container matColumnDef="action">
<th
mat-header-cell
style="border-bottom: none"
style="border-bottom: unset !important; text-align: center"
*matHeaderCellDef
mat-sort-header
colspan="3"
style="text-align: center"
id="action"
>
{{ currentLanguageSet?.bendetails?.action }}
</th>
<td mat-cell *matCellDef="let element">
<td
mat-cell
*matCellDef="let element"
class="col-12"
style="text-align: center; width: 26%"
>
<button
mat-raised-button
(click)="cancelTCRequest(element)"
matTooltip="{{ currentLanguageSet?.tc?.cancelTc }}"
color="warn"
class="mat_blue_table col-4"
[disabled]="element.specialist_flag !== 1"
>
{{ currentLanguageSet?.common?.cancel }}
</button>
<button
style="margin: 0px 10px 0px 10px !important"
mat-raised-button
(click)="openScheduler(element)"
matTooltip="{{ currentLanguageSet?.tc?.reschedule }}"
color="primary"
class="mat_blue_table col-4"
[disabled]="element.specialist_flag !== 4"
>
{{ currentLanguageSet?.tc?.schedule }}
Expand All @@ -267,6 +273,7 @@
(click)="initiateTC(element)"
matTooltip="{{ currentLanguageSet?.tc?.startTc }}"
color="accent"
class="mat_blue_table col-4"
[disabled]="
element.specialist_flag !== 1 && !element.benArrivedFlag
"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ md2-pagination {

md-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

.norecord {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ md-input-container {

md-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

:host /deep/ .pagination {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ md-input-container {

md-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

:host /deep/ .pagination {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mat-pagination {

mat-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

.norecord {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mat-input-container {

mat-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

:host /deep/ .pagination {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mat-input-container {

mat-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

#refresh,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ md-input-container {

md-card {
min-height: 400px;
padding: 15px;
/* padding: 15px; */
}

.norecord {
Expand Down
18 changes: 18 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,24 @@
line-height: 36px;
min-width: 88px;
}
.mat_blue_table {
background-color: #0277bd !important;
border-color: unset !important;
color: white;
border: unset;
border-radius: 3px;
line-height: 36px;
width: 90px;
}
.mat_blue_table:disabled {
background-color: #e0e0e0 !important;
border-color: unset !important;
color: rgba(0, 0, 0, 0.38);
border: unset;
border-radius: 3px;
line-height: 36px;
width: 90px;
}
.mat_green {
background-color: #43a047 !important;
border-color: unset !important;
Expand Down

0 comments on commit 576158b

Please sign in to comment.