Skip to content

Commit

Permalink
[core] fix: reduce visual weight of input borders (#6343)
Browse files Browse the repository at this point in the history
Co-authored-by: Charles <cperinet@palantir.com>
Co-authored-by: Adi Dahiya <adahiya@palantir.com>
  • Loading branch information
3 people committed Oct 10, 2023
1 parent 351030f commit 5217cd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/common/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ $pt-transition-duration: 100ms !default;
// Light theme styles

$pt-input-box-shadow: inset 0 0 0 1px rgba($black, 0.2),
inset 0 1px 1px rgba($black, 0.5) !default;
inset 0 1px 1px rgba($black, 0.3) !default;

$pt-dialog-box-shadow: $pt-elevation-shadow-3 !default;
$pt-popover-box-shadow: $pt-elevation-shadow-3 !default;
Expand All @@ -136,7 +136,7 @@ $pt-toast-box-shadow: inset border-shadow(0.2),
// Dark theme styles

$pt-dark-input-box-shadow: inset 0 0 0 1px rgba($white, 0.2),
inset 0 -1px 1px 0 $gray3 !default;
inset 0 -1px 1px 0 rgba($white, 0.3) !default;
$pt-dark-input-intent-box-shadow-colors: (
"primary": $blue4,
"success": $green4,
Expand Down

1 comment on commit 5217cd7

@adidahiya
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[core] fix: reduce visual weight of input borders (#6343)

Build artifact links for this commit: documentation | landing | table | demo

This is an automated comment from the deploy-preview CircleCI job.

Please sign in to comment.