2023-04-30 05:33:25 +02:00
. list-header {
display : flex ;
align-items : center ;
flex-wrap : wrap ;
gap : .5 rem ;
}
. list-header-sort {
display : flex ;
align-items : center ;
padding-left : 1 rem ;
padding-right : 1 rem ;
}
. list-header-search {
display : flex ;
flex : 1 ;
align-items : center ;
flex-wrap : wrap ;
justify-content : center ;
min-width : 200 px ; /* to enable flexbox wrapping on mobile */
}
. list-header-search . input {
flex : 1 ;
}
2023-05-03 23:58:59 +02:00
. small-menu-items {
2023-04-30 05:33:25 +02:00
min-height : 35.4 px !important ; /* match .small.button in height */
2023-06-09 10:37:47 +02: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-30 05:33:25 +02:00
}
2023-05-03 23:58:59 +02:00
. small-menu-items . item {
2023-06-09 10:37:47 +02:00
background : var ( - - color - menu ) !important ;
2023-04-30 05:33:25 +02:00
padding-top : 6 px !important ;
padding-bottom : 6 px !important ;
}
2023-06-09 10:37:47 +02:00
. small-menu-items . item : hover {
background : var ( - - color - hover ) !important ;
}
. small-menu-items . item . active {
background : var ( - - color - active ) !important ;
}
2023-06-18 12:31:42 +02:00
@ media ( max-width : 767 . 98px ) {
. list-header-search {
order : 0 ;
}
. list-header-toggle {
order : 1 ;
}
. list-header-sort {
order : 2 ;
margin-left : auto ;
}
}