Skip to content

Commit

Permalink
Try: Inspector inner shadow border fix. (#63245)
Browse files Browse the repository at this point in the history
* Try: Inspector inner shadow border fix.

* Apply to inserter as well.

Co-authored-by: jasmussen <joen@git.wordpress.org>
Co-authored-by: t-hamano <wildworks@git.wordpress.org>
  • Loading branch information
3 people authored Jul 9, 2024
1 parent 749bb12 commit 6690021
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ html.interface-interface-skeleton__html-container {
overflow: hidden;

@include break-medium() {
box-shadow: -$border-width $border-width 0 0 rgba($color: #000, $alpha: 0.133); // 0.133 = $gray-200 but with alpha.
box-shadow: -$border-width 0 0 0 rgba($color: #000, $alpha: 0.133); // 0.133 = $gray-200 but with alpha.
outline: 1px solid transparent; // Shown for Windows 10 High Contrast mode.
}
}
Expand All @@ -132,7 +132,7 @@ html.interface-interface-skeleton__html-container {
right: 0;

@include break-medium() {
box-shadow: $border-width $border-width 0 0 rgba($color: #000, $alpha: 0.133); // 0.133 = $gray-200 but with alpha.
box-shadow: $border-width 0 0 0 rgba($color: #000, $alpha: 0.133); // 0.133 = $gray-200 but with alpha.
outline: 1px solid transparent; // Shown for Windows 10 High Contrast mode.
}
}
Expand Down

0 comments on commit 6690021

Please sign in to comment.