Adapt style of inactive users (#3114)
This commit is contained in:
parent
07661d9262
commit
7a3237f1ff
@ -35,12 +35,20 @@
|
|||||||
mat-cell
|
mat-cell
|
||||||
>
|
>
|
||||||
<div class="d-flex align-items-center">
|
<div class="d-flex align-items-center">
|
||||||
<span class="d-none d-sm-inline-block text-monospace">{{
|
<span
|
||||||
element.id
|
class="d-none d-sm-inline-block text-monospace"
|
||||||
}}</span>
|
[ngClass]="{
|
||||||
<span class="d-inline-block d-sm-none text-monospace">{{
|
'text-line-through': element.role === 'INACTIVE'
|
||||||
(element.id | slice: 0 : 5) + '...'
|
}"
|
||||||
}}</span>
|
>{{ element.id }}</span
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="d-inline-block d-sm-none text-monospace"
|
||||||
|
[ngClass]="{
|
||||||
|
'text-line-through': element.role === 'INACTIVE'
|
||||||
|
}"
|
||||||
|
>{{ (element.id | slice: 0 : 5) + '...' }}</span
|
||||||
|
>
|
||||||
<gf-premium-indicator
|
<gf-premium-indicator
|
||||||
*ngIf="element?.subscription?.type === 'Premium'"
|
*ngIf="element?.subscription?.type === 'Premium'"
|
||||||
class="ml-1"
|
class="ml-1"
|
||||||
|
@ -587,6 +587,10 @@ ngx-skeleton-loader {
|
|||||||
text-decoration: underline !important;
|
text-decoration: underline !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-line-through {
|
||||||
|
text-decoration: line-through;
|
||||||
|
}
|
||||||
|
|
||||||
.with-placeholder-as-option {
|
.with-placeholder-as-option {
|
||||||
.mat-mdc-select-placeholder {
|
.mat-mdc-select-placeholder {
|
||||||
color: rgba(var(--dark-primary-text));
|
color: rgba(var(--dark-primary-text));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user