File tree Expand file tree Collapse file tree 4 files changed +35
-1
lines changed Expand file tree Collapse file tree 4 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1010@import url ('refinement-list.css' );
1111@import url ('panel.css' );
1212@import url ('pagination.css' );
13+ @import url ('hits-per-page.css' );
Original file line number Diff line number Diff line change 88/* Focus outline */
99a [class ^= 'ais-' ]: focus- vis ible,
1010button [class ^= 'ais-' ]: focus- vis ible,
11- input [class ^= 'ais-' ]: focus-visible {
11+ input [class ^= 'ais-' ]: focus- vis ible,
12+ select [class ^= 'ais-' ]: focus-visible {
1213 outline : 2px solid
1314 rgba (var (--ais-primary-color-rgb ), var (--ais-primary-color-alpha ));
1415 outline-offset : 2px ;
Original file line number Diff line number Diff line change 1+ .ais-HitsPerPage {
2+ & : after {
3+ transition : transform var (--ais-transition-duration )
4+ var (--ais-transition-timing-function );
5+ background-image : var (--ais-chevron-icon );
6+ background-repeat : no-repeat;
7+ content : '' ;
8+ display : inline-block;
9+ height : 1rem ;
10+ margin-left : calc (var (--ais-spacing ) * -1 - 1rem );
11+ transform : translateY (0.2rem );
12+ user-select : none;
13+ width : 1rem ;
14+ }
15+ .ais-HitsPerPage-select {
16+ color : rgba (var (--ais-text-color-rgb ), var (--ais-text-color-alpha ));
17+ font : inherit;
18+ padding : calc (var (--ais-spacing ) / 2 ) calc (var (--ais-spacing ) * 2 + 0.5rem )
19+ calc (var (--ais-spacing ) / 2 ) var (--ais-spacing );
20+ border-radius : var (--ais-radius-xs );
21+ border : 1px solid
22+ rgba (var (--ais-border-color-rgb ), var (--ais-border-color-alpha ));
23+ & : focus-visible {
24+ outline-offset : -1px ;
25+ }
26+ }
27+ }
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ a[class^='ais-'] {
66 text-decoration : none;
77}
88
9+ select [class ^= 'ais-' ] {
10+ appearance : none;
11+ background : none;
12+ }
13+
914/* Reset all lists */
1015.ais-Breadcrumb-list ,
1116.ais-Carousel-list ,
You can’t perform that action at this time.
0 commit comments