mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-03 18:28:13 +01:00
fix: width layout (#3234)
This commit is contained in:
parent
8cc02ff03d
commit
4398467368
@ -126,11 +126,15 @@
|
|||||||
[ngClass]="{ active: organization.id === activeFilter.selectedOrganizationId }"
|
[ngClass]="{ active: organization.id === activeFilter.selectedOrganizationId }"
|
||||||
>
|
>
|
||||||
<span class="filter-buttons">
|
<span class="filter-buttons">
|
||||||
<button class="filter-button" (click)="applyOrganizationFilter(organization)">
|
<button
|
||||||
|
class="filter-button"
|
||||||
|
[ngClass]="{ 'disabled-organization': !organization.enabled }"
|
||||||
|
(click)="applyOrganizationFilter(organization)"
|
||||||
|
>
|
||||||
<i class="bwi bwi-fw bwi-business" aria-hidden="true"></i>
|
<i class="bwi bwi-fw bwi-business" aria-hidden="true"></i>
|
||||||
{{ organization.name }}
|
{{ organization.name }}
|
||||||
</button>
|
</button>
|
||||||
<span class="ml-auto contents">
|
<span class="ml-auto">
|
||||||
<i
|
<i
|
||||||
*ngIf="!organization.enabled"
|
*ngIf="!organization.enabled"
|
||||||
class="org-options bwi bwi-fw bwi-exclamation-triangle text-danger"
|
class="org-options bwi bwi-fw bwi-exclamation-triangle text-danger"
|
||||||
|
@ -113,6 +113,10 @@
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
max-width: 90%;
|
max-width: 90%;
|
||||||
|
|
||||||
|
&.disabled-organization {
|
||||||
|
max-width: 78%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit-button {
|
.edit-button {
|
||||||
|
Loading…
Reference in New Issue
Block a user