mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
[CL-605] Fix whitespace between elements (#13644)
This commit is contained in:
@@ -14,13 +14,13 @@
|
|||||||
<b>{{params.cipherName}}</b>
|
<b>{{params.cipherName}}</b>
|
||||||
{{ "sshkeyApprovalMessageSuffix" | i18n }} {{ params.action | i18n }}
|
{{ "sshkeyApprovalMessageSuffix" | i18n }} {{ params.action | i18n }}
|
||||||
</div>
|
</div>
|
||||||
<div bitDialogFooter>
|
<ng-container bitDialogFooter>
|
||||||
<button type="submit" bitButton bitFormButton buttonType="primary">
|
<button type="submit" bitButton bitFormButton buttonType="primary">
|
||||||
<span>{{ "authorize" | i18n }}</span>
|
<span>{{ "authorize" | i18n }}</span>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" bitButton bitFormButton buttonType="secondary" bitDialogClose>
|
<button type="button" bitButton bitFormButton buttonType="secondary" bitDialogClose>
|
||||||
{{ "deny" | i18n }}
|
{{ "deny" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</ng-container>
|
||||||
</bit-dialog>
|
</bit-dialog>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@@ -187,7 +187,7 @@
|
|||||||
class="tw-mr-3"
|
class="tw-mr-3"
|
||||||
></bit-avatar>
|
></bit-avatar>
|
||||||
<div class="tw-flex tw-flex-col">
|
<div class="tw-flex tw-flex-col">
|
||||||
<div>
|
<div class="tw-flex tw-flex-row tw-gap-2">
|
||||||
<button type="button" bitLink>
|
<button type="button" bitLink>
|
||||||
{{ u.name ?? u.email }}
|
{{ u.name ?? u.email }}
|
||||||
</button>
|
</button>
|
||||||
@@ -196,22 +196,25 @@
|
|||||||
class="tw-text-xs"
|
class="tw-text-xs"
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
*ngIf="u.status === userStatusType.Invited"
|
*ngIf="u.status === userStatusType.Invited"
|
||||||
>{{ "invited" | i18n }}</span
|
|
||||||
>
|
>
|
||||||
|
{{ "invited" | i18n }}
|
||||||
|
</span>
|
||||||
<span
|
<span
|
||||||
bitBadge
|
bitBadge
|
||||||
class="tw-text-xs"
|
class="tw-text-xs"
|
||||||
variant="warning"
|
variant="warning"
|
||||||
*ngIf="u.status === userStatusType.Accepted"
|
*ngIf="u.status === userStatusType.Accepted"
|
||||||
>{{ "needsConfirmation" | i18n }}</span
|
|
||||||
>
|
>
|
||||||
|
{{ "needsConfirmation" | i18n }}
|
||||||
|
</span>
|
||||||
<span
|
<span
|
||||||
bitBadge
|
bitBadge
|
||||||
class="tw-text-xs"
|
class="tw-text-xs"
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
*ngIf="u.status === userStatusType.Revoked"
|
*ngIf="u.status === userStatusType.Revoked"
|
||||||
>{{ "revoked" | i18n }}</span
|
|
||||||
>
|
>
|
||||||
|
{{ "revoked" | i18n }}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="tw-text-sm tw-text-muted" *ngIf="u.name">
|
<div class="tw-text-sm tw-text-muted" *ngIf="u.name">
|
||||||
{{ u.email }}
|
{{ u.email }}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
<h2 bitTypography="h2">
|
<h2 bitTypography="h2">
|
||||||
{{ "logInWithPasskey" | i18n }}
|
{{ "logInWithPasskey" | i18n }}
|
||||||
|
<span class="tw-inline-flex tw-gap-1 tw-align-middle">
|
||||||
<ng-container *ngIf="hasData">
|
<ng-container *ngIf="hasData">
|
||||||
<span
|
<span
|
||||||
*ngIf="requireSsoPolicyEnabled"
|
*ngIf="requireSsoPolicyEnabled"
|
||||||
@@ -10,15 +11,16 @@
|
|||||||
{{ "off" | i18n }} - {{ "ssoLoginIsRequired" | i18n }}
|
{{ "off" | i18n }} - {{ "ssoLoginIsRequired" | i18n }}
|
||||||
</span>
|
</span>
|
||||||
<ng-container *ngIf="!requireSsoPolicyEnabled">
|
<ng-container *ngIf="!requireSsoPolicyEnabled">
|
||||||
<span *ngIf="hasCredentials" bitBadge variant="success" class="!tw-align-middle">{{
|
<span *ngIf="hasCredentials" bitBadge variant="success" class="!tw-align-middle">
|
||||||
"on" | i18n
|
{{ "on" | i18n }}
|
||||||
}}</span>
|
</span>
|
||||||
<span *ngIf="!hasCredentials" bitBadge variant="secondary" class="!tw-align-middle">{{
|
<span *ngIf="!hasCredentials" bitBadge variant="secondary" class="!tw-align-middle">
|
||||||
"off" | i18n
|
{{ "off" | i18n }}
|
||||||
}}</span>
|
</span>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<span bitBadge variant="warning" class="!tw-align-middle">{{ "beta" | i18n }}</span>
|
<span bitBadge variant="warning" class="!tw-align-middle">{{ "beta" | i18n }}</span>
|
||||||
|
</span>
|
||||||
<ng-container *ngIf="loading">
|
<ng-container *ngIf="loading">
|
||||||
<i class="bwi bwi-spinner bwi-spin tw-ml-1" aria-hidden="true"></i>
|
<i class="bwi bwi-spinner bwi-spin tw-ml-1" aria-hidden="true"></i>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|||||||
@@ -49,8 +49,9 @@
|
|||||||
appStopClick
|
appStopClick
|
||||||
(click)="selectCipher(row)"
|
(click)="selectCipher(row)"
|
||||||
title="{{ 'editItemWithName' | i18n: row.name }}"
|
title="{{ 'editItemWithName' | i18n: row.name }}"
|
||||||
>{{ row.name }}</a
|
|
||||||
>
|
>
|
||||||
|
{{ row.name }}
|
||||||
|
</a>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-template #cantManage>
|
<ng-template #cantManage>
|
||||||
<span>{{ row.name }}</span>
|
<span>{{ row.name }}</span>
|
||||||
|
|||||||
@@ -7,25 +7,27 @@
|
|||||||
<span bitDialogTitle>
|
<span bitDialogTitle>
|
||||||
<span *ngIf="!data.orgDomain">{{ "newDomain" | i18n }}</span>
|
<span *ngIf="!data.orgDomain">{{ "newDomain" | i18n }}</span>
|
||||||
<span *ngIf="data.orgDomain">
|
<span *ngIf="data.orgDomain">
|
||||||
|
{{ ((accountDeprovisioningEnabled$ | async) ? "claimDomain" : "verifyDomain") | i18n }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span *ngIf="data.orgDomain" class="tw-text-xs tw-text-muted">
|
||||||
|
{{ data.orgDomain.domainName }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span *ngIf="data?.orgDomain && !data.orgDomain?.verifiedDate" bitBadge variant="warning">
|
||||||
{{
|
{{
|
||||||
((accountDeprovisioningEnabled$ | async) ? "claimDomain" : "verifyDomain") | i18n
|
|
||||||
}}</span
|
|
||||||
>
|
|
||||||
|
|
||||||
<span *ngIf="data.orgDomain" class="tw-text-xs tw-text-muted">{{
|
|
||||||
data.orgDomain.domainName
|
|
||||||
}}</span>
|
|
||||||
|
|
||||||
<span *ngIf="data?.orgDomain && !data.orgDomain?.verifiedDate" bitBadge variant="warning">{{
|
|
||||||
((accountDeprovisioningEnabled$ | async)
|
((accountDeprovisioningEnabled$ | async)
|
||||||
? "domainStatusUnderVerification"
|
? "domainStatusUnderVerification"
|
||||||
: "domainStatusUnverified"
|
: "domainStatusUnverified"
|
||||||
) | i18n
|
) | i18n
|
||||||
}}</span>
|
}}
|
||||||
<span *ngIf="data?.orgDomain && data?.orgDomain?.verifiedDate" bitBadge variant="success">{{
|
</span>
|
||||||
|
<span *ngIf="data?.orgDomain && data?.orgDomain?.verifiedDate" bitBadge variant="success">
|
||||||
|
{{
|
||||||
((accountDeprovisioningEnabled$ | async) ? "domainStatusClaimed" : "domainStatusVerified")
|
((accountDeprovisioningEnabled$ | async) ? "domainStatusClaimed" : "domainStatusVerified")
|
||||||
| i18n
|
| i18n
|
||||||
}}</span>
|
}}
|
||||||
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<div bitDialogContent>
|
<div bitDialogContent>
|
||||||
<bit-form-field>
|
<bit-form-field>
|
||||||
|
|||||||
Reference in New Issue
Block a user