2023-04-29 21:33:25 -06:00
. list-header {
display : flex ;
align-items : center ;
flex-wrap : wrap ;
gap : . 5rem ;
}
. list-header-sort {
display : flex ;
align-items : center ;
justify-content : flex-end ;
padding-left : 1rem ;
padding-right : 1rem ;
}
. list-header-search {
display : flex ;
flex : 1 ;
align-items : center ;
flex-wrap : wrap ;
justify-content : center ;
min-width : 200px ; /* to enable flexbox wrapping on mobile */
}
. list-header-search . input {
flex : 1 ;
}
2023-05-03 15:58:59 -06:00
. small-menu-items {
2023-04-29 21:33:25 -06:00
min-height : 35 . 4px ! important ; /* match .small.button in height */
2023-06-10 20:13:08 -06:00
background : none ! important ; /* fomantic sets a color here which does not play well with active transparent color on the item, so unset and set the colors on the item */
2023-04-29 21:33:25 -06:00
}
2023-05-03 15:58:59 -06:00
. small-menu-items . item {
2023-06-10 20:13:08 -06:00
background : var ( --color-menu ) ! important ;
2023-04-29 21:33:25 -06:00
padding-top : 6px ! important ;
padding-bottom : 6px ! important ;
}
2023-06-10 20:13:08 -06:00
. small-menu-items . item : hover {
background : var ( --color-hover ) ! important ;
}
. small-menu-items . item . active {
background : var ( --color-active ) ! important ;
}