mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 05:13:29 +00:00
[CL-351] Prevent tw-group styling conflicts by namespacing (#12261)
This commit is contained in:
@@ -350,7 +350,6 @@ export class ChangePlanDialogComponent implements OnInit, OnDestroy {
|
||||
switch (cardState) {
|
||||
case PlanCardState.Selected: {
|
||||
return [
|
||||
"tw-group",
|
||||
"tw-cursor-pointer",
|
||||
"tw-block",
|
||||
"tw-rounded",
|
||||
|
||||
@@ -17,12 +17,12 @@
|
||||
? 'tw-bg-primary-600 tw-font-bold !tw-text-contrast tw-ring-offset-2 hover:tw-bg-primary-600'
|
||||
: ''
|
||||
"
|
||||
class="tw-group tw-flex tw-h-24 tw-w-28 tw-flex-col tw-items-center tw-justify-center tw-rounded tw-p-1 tw-text-primary-600 tw-outline-none hover:tw-bg-background-alt hover:tw-text-primary-700 hover:tw-no-underline focus-visible:!tw-ring-2 focus-visible:!tw-ring-primary-700"
|
||||
class="tw-group/product-link tw-flex tw-h-24 tw-w-28 tw-flex-col tw-items-center tw-justify-center tw-rounded tw-p-1 tw-text-primary-600 tw-outline-none hover:tw-bg-background-alt hover:tw-text-primary-700 hover:tw-no-underline focus-visible:!tw-ring-2 focus-visible:!tw-ring-primary-700"
|
||||
ariaCurrentWhenActive="page"
|
||||
>
|
||||
<i class="bwi {{ product.icon }} tw-text-4xl !tw-m-0 !tw-mb-1"></i>
|
||||
<span
|
||||
class="tw-max-w-24 tw-text-center tw-text-sm tw-leading-snug group-hover:tw-underline"
|
||||
class="tw-max-w-24 tw-text-center tw-text-sm tw-leading-snug group-hover/product-link:tw-underline"
|
||||
>{{ product.name }}</span
|
||||
>
|
||||
</a>
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
</p>
|
||||
<bit-table *ngIf="!loading && global.length > 0">
|
||||
<ng-template body>
|
||||
<tr bitRow *ngFor="let d of global" class="tw-group">
|
||||
<tr bitRow *ngFor="let d of global">
|
||||
<td bitCell [ngClass]="{ 'table-list-strike': d.excluded }">{{ d.domains }}</td>
|
||||
<td bitCell>
|
||||
<button
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<div class="tw-relative">
|
||||
<div
|
||||
*ngIf="planCard.selected"
|
||||
class="tw-bg-primary-600 tw-text-center !tw-text-contrast tw-text-sm tw-font-bold tw-py-1 group-hover:tw-bg-primary-700"
|
||||
class="tw-bg-primary-600 tw-text-center !tw-text-contrast tw-text-sm tw-font-bold tw-py-1 group-hover/plan-card-container:tw-bg-primary-700"
|
||||
>
|
||||
{{ "selected" | i18n }}
|
||||
</div>
|
||||
|
||||
@@ -69,7 +69,7 @@ export class CreateClientDialogComponent implements OnInit {
|
||||
switch (selected) {
|
||||
case true: {
|
||||
return [
|
||||
"tw-group",
|
||||
"tw-group/plan-card-container",
|
||||
"tw-cursor-pointer",
|
||||
"tw-block",
|
||||
"tw-rounded",
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="tw-group tw-flex tw-w-full">
|
||||
<div class="tw-flex tw-w-full">
|
||||
<ng-content select="bit-side-nav, [slot=side-nav]"></ng-content>
|
||||
<main
|
||||
[id]="mainContentId"
|
||||
|
||||
@@ -99,7 +99,6 @@ export class SortableComponent implements OnInit {
|
||||
|
||||
get classList() {
|
||||
return [
|
||||
"tw-group",
|
||||
"tw-min-w-max",
|
||||
|
||||
// Offset to border and padding
|
||||
|
||||
Reference in New Issue
Block a user