Skip to content

Commit

Permalink
fix: revert high contrast to false by default for popover (#2848)
Browse files Browse the repository at this point in the history
Signed-off-by: Akshat Patel <[email protected]>
  • Loading branch information
Akshat55 authored Apr 6, 2024
1 parent 26d04ad commit 0837d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/popover/popover.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ export class PopoverContainer implements AfterViewInit, OnChanges, OnDestroy {
/**
* Enable high contrast for popover container
*/
@HostBinding("class.cds--popover--high-contrast") @Input() highContrast = true;
@HostBinding("class.cds--popover--high-contrast") @Input() highContrast = false;
/**
* **Experimental**: Use floating-ui to position the tooltip
* This is not toggleable - should be sent once
* This is not toggleable - should be assigned once
*/
@HostBinding("class.cds--popover--auto-align") @Input() autoAlign = false;
@HostBinding("class.cds--popover-container") containerClass = true;
Expand Down

0 comments on commit 0837d03

Please sign in to comment.