/* Search field shown inside a jQuery UI selectmenu button while its menu is open
   (see static/js/shared/selectmenu_search.js). It has to look exactly like the label it
   replaces, so everything is inherited from .ui-selectmenu-text. */
.ui-selectmenu-text > input.selectmenu_search_input {
	border: none;
	outline: none;
	background: transparent;
	box-shadow: none;
	margin: 0;
	padding: 0;
	height: 20px;
	width: calc(100% - 25px);
	font: inherit;
	color: inherit;
	text-align: inherit;
}

/* Menu entries filtered out by the current search text. */
.ui-menu li.selectmenu_search_hidden {
	display: none;
}

.ui-selectmenu-text > input.selectmenu_search_input::placeholder {
	color: inherit;
	opacity: 0.55;
}
