Thomas Kaul
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
18 additions and
6 deletions
-
apps/client/src/app/components/admin-users/admin-users.html
-
apps/client/src/styles.scss
|
|
@ -35,12 +35,20 @@ |
|
|
|
mat-cell |
|
|
|
> |
|
|
|
<div class="d-flex align-items-center"> |
|
|
|
<span class="d-none d-sm-inline-block text-monospace">{{ |
|
|
|
element.id |
|
|
|
}}</span> |
|
|
|
<span class="d-inline-block d-sm-none text-monospace">{{ |
|
|
|
(element.id | slice: 0 : 5) + '...' |
|
|
|
}}</span> |
|
|
|
<span |
|
|
|
class="d-none d-sm-inline-block text-monospace" |
|
|
|
[ngClass]="{ |
|
|
|
'text-line-through': element.role === 'INACTIVE' |
|
|
|
}" |
|
|
|
>{{ 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 |
|
|
|
*ngIf="element?.subscription?.type === 'Premium'" |
|
|
|
class="ml-1" |
|
|
|
|
|
@ -587,6 +587,10 @@ ngx-skeleton-loader { |
|
|
|
text-decoration: underline !important; |
|
|
|
} |
|
|
|
|
|
|
|
.text-line-through { |
|
|
|
text-decoration: line-through; |
|
|
|
} |
|
|
|
|
|
|
|
.with-placeholder-as-option { |
|
|
|
.mat-mdc-select-placeholder { |
|
|
|
color: rgba(var(--dark-primary-text)); |
|
|
|