Browse Source
Feature/simplify badge style in admin settings (#5046)
* Simplify badge style
pull/5048/head
Thomas Kaul
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
2 additions and
9 deletions
-
apps/client/src/app/components/admin-settings/admin-settings.component.html
-
apps/client/src/app/components/admin-settings/admin-settings.component.scss
-
apps/client/src/app/pages/admin/admin-page.component.ts
|
|
@ -62,7 +62,7 @@ |
|
|
|
/> |
|
|
|
@if (isGhostfolioApiKeyValid === false) { |
|
|
|
<span |
|
|
|
class="badge badge-light ml-2 new text-uppercase" |
|
|
|
class="badge badge-pill badge-secondary ml-2 text-uppercase" |
|
|
|
i18n |
|
|
|
>new</span |
|
|
|
> |
|
|
|
|
|
@ -9,13 +9,6 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.badge { |
|
|
|
&.new { |
|
|
|
border: 1px solid var(--mat-table-row-item-outline-color); |
|
|
|
padding-bottom: 0.05rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.mat-mdc-card { |
|
|
|
--mdc-outlined-card-container-color: whitesmoke; |
|
|
|
|
|
|
|
|
|
@ -33,7 +33,7 @@ export class AdminPageComponent implements OnDestroy, OnInit { |
|
|
|
iconName: 'settings-outline', |
|
|
|
label: |
|
|
|
internalRoutes.adminControl.subRoutes.settings.title + |
|
|
|
'<span class="badge badge-secondary badge-pill ml-2 text-uppercase">' + |
|
|
|
'<span class="badge badge-pill badge-secondary ml-2 text-uppercase">' + |
|
|
|
$localize`new` + |
|
|
|
'</span>', |
|
|
|
routerLink: internalRoutes.adminControl.subRoutes.settings.routerLink |
|
|
|