mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
fix UI design (#13346)
This commit is contained in:
@@ -3,9 +3,9 @@
|
|||||||
*ngIf="{ enabled: accountDeprovisioningEnabled$ | async } as accountDeprovisioning"
|
*ngIf="{ enabled: accountDeprovisioningEnabled$ | async } as accountDeprovisioning"
|
||||||
>
|
>
|
||||||
<ng-container bitDialogTitle>
|
<ng-container bitDialogTitle>
|
||||||
<h1 *ngIf="accountDeprovisioning.enabled; else nonMemberTitle">{{ bulkMemberTitle }}</h1>
|
<h3 *ngIf="accountDeprovisioning.enabled; else nonMemberTitle">{{ bulkMemberTitle }}</h3>
|
||||||
<ng-template #nonMemberTitle>
|
<ng-template #nonMemberTitle>
|
||||||
<h1>{{ bulkTitle }}</h1>
|
<h3>{{ bulkTitle }}</h3>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
@@ -46,10 +46,7 @@
|
|||||||
</ng-template>
|
</ng-template>
|
||||||
|
|
||||||
<ng-container *ngIf="!done">
|
<ng-container *ngIf="!done">
|
||||||
<bit-callout type="warning" *ngIf="users.length > 0 && !error && isRevoking">
|
<p *ngIf="users.length > 0 && !error && isRevoking">{{ "revokeUsersWarning" | i18n }}</p>
|
||||||
<p>{{ "revokeUsersWarning" | i18n }}</p>
|
|
||||||
</bit-callout>
|
|
||||||
|
|
||||||
<bit-table>
|
<bit-table>
|
||||||
<ng-container header>
|
<ng-container header>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -109,7 +106,13 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
<ng-container bitDialogFooter>
|
<ng-container bitDialogFooter>
|
||||||
<button type="button" bitButton *ngIf="!done && users.length > 0" [bitAction]="submit">
|
<button
|
||||||
|
type="button"
|
||||||
|
bitButton
|
||||||
|
*ngIf="!done && users.length > 0"
|
||||||
|
[bitAction]="submit"
|
||||||
|
buttonType="primary"
|
||||||
|
>
|
||||||
{{ accountDeprovisioning.enabled ? bulkMemberTitle : bulkTitle }}
|
{{ accountDeprovisioning.enabled ? bulkMemberTitle : bulkTitle }}
|
||||||
</button>
|
</button>
|
||||||
<button type="button" bitButton buttonType="secondary" bitDialogClose>
|
<button type="button" bitButton buttonType="secondary" bitDialogClose>
|
||||||
|
|||||||
Reference in New Issue
Block a user