Make combobox suggestions have same border as main input (#44183)
Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
parent
d936e4afee
commit
77d2dd9453
|
@ -72,7 +72,8 @@
|
||||||
background-color: $select-dropdown-light;
|
background-color: $select-dropdown-light;
|
||||||
border: 1px solid $input-border-gray;
|
border: 1px solid $input-border-gray;
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
margin: 3em 0 0 -1px;
|
border-bottom: 0;
|
||||||
|
margin: 3em 0 0 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
max-height: 300px;
|
max-height: 300px;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
|
@ -80,6 +81,8 @@
|
||||||
color: $input-text-active;
|
color: $input-text-active;
|
||||||
border-bottom-left-radius: $universal-border-radius;
|
border-bottom-left-radius: $universal-border-radius;
|
||||||
border-bottom-right-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 & {
|
.has-dark-controls & {
|
||||||
background-color: $select-dropdown-dark;
|
background-color: $select-dropdown-dark;
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: fix
|
||||||
|
|
||||||
|
Ensure a consistent border style is applied to combobox suggestions and the main input.
|
Loading…
Reference in New Issue