File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 992
992
min-height : 46px ; /* align baseline height to Search button */
993
993
}
994
994
995
+ /* Add border-bottom to choices input with more specific selectors */
996
+ :global(
997
+ .gem-c-select-with-search .choices [data-type *= " select-one" ] .choices__input
998
+ ) {
999
+ border-bottom : 1px solid #ddd ;
1000
+ margin : 0 ;
1001
+ }
1002
+
1003
+ /* Also target the cloned input that appears when dropdown is active */
1004
+ :global(
1005
+ .gem-c-select-with-search
1006
+ .choices [data-type *= " select-one" ]
1007
+ .choices__input--cloned
1008
+ ) {
1009
+ border-bottom : 1px solid #ddd ;
1010
+ }
1011
+
1012
+ /* Target the input when dropdown is active */
1013
+ :global(
1014
+ .gem-c-select-with-search
1015
+ .choices [data-type *= " select-one" ].is-active
1016
+ .choices__input
1017
+ ) {
1018
+ border-bottom : 1px solid #ddd ;
1019
+ }
1020
+
1021
+ /* Target the input when focused */
1022
+ :global(
1023
+ .gem-c-select-with-search
1024
+ .choices [data-type *= " select-one" ]
1025
+ .choices__input :focus
1026
+ ) {
1027
+ border-bottom : 1px solid #ddd ;
1028
+ }
1029
+
995
1030
:global(.govuk-label ) {
996
1031
font-family : " GDS Transport" , arial , sans-serif ;
997
1032
-webkit-font-smoothing : antialiased ;
You can’t perform that action at this time.
0 commit comments