Make combobox suggestions have same border as main input (#44183)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Thomas Roberts 2024-02-01 02:57:57 -08:00 committed by GitHub
parent d936e4afee
commit 77d2dd9453
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View File

@ -72,7 +72,8 @@
background-color: $select-dropdown-light;
border: 1px solid $input-border-gray;
border-top: 0;
margin: 3em 0 0 -1px;
border-bottom: 0;
margin: 3em 0 0 0;
padding: 0;
max-height: 300px;
min-width: 100%;
@ -80,6 +81,8 @@
color: $input-text-active;
border-bottom-left-radius: $universal-border-radius;
border-bottom-right-radius: $universal-border-radius;
box-shadow: 0 1px 0 1px $input-border-gray;
box-sizing: border-box;
.has-dark-controls & {
background-color: $select-dropdown-dark;

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Ensure a consistent border style is applied to combobox suggestions and the main input.