﻿/* 
 * Allmänna stilar för att INSIKT-ifiera Select2-dropdowns.
*/

/* 
 * Visa inte sökfält som standard utan bara om klassen select2-with-search
 * appliceras med Select2-inställningen containerCssClass:
 * $('selector').select2({ containerCssClass: 'select2-with-search', ... })
 */
.select2-search {
	display: none;
}
.select2-with-search .select2-search {
	display: inline-block;
}
.select2-search {
	min-height: 0;
	padding: 2px 4px;
}
.select2-search input {
	min-height: 0;
	line-height: 1.3;
	outline: none !important;
	border-color: #c6c6c6;
	background-position-y: -24px;
	background: white url('../../External/select2/select2.png') no-repeat 100% -22px;
}
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
	min-height: 1em;
	padding: 3px 7px 4px;
}

.select2-container {
	width: 100%;
}
.select2-container .select2-choice {
	height: auto;
	line-height: 1.3;
}
.select2-drop {
	border-top: 1px solid #E6E6E6 !important;
	font-size: 9.86px;
}

.select2-container .select2-choice,
.select2-dropdown-open .select2-choice {
	background: white;
	filter: none;  /* IE <= 9 */
}
.select2-container .select2-choice,
.select2-drop {
	border-radius: 0;
}

.select2-container .select2-choice,
.select2-container-active.select2-dropdown-open .select2-choice,
.select2-drop,
.select2-drop-active {
	border-color: #c6c6c6;
	border-width: 1px;
}
.select2-container-active.select2-dropdown-open .select2-choice {
	outline: none;
	/*border-bottom-color: transparent;*/
}
.select2-container-active .select2-choice {
	outline: 1px solid #f5c348;
}

/* Vår egen dropdown-pil utan spec bakgrund eller avskiljare. */
.select2-container .select2-choice .select2-arrow,
.select2-dropdown-open .select2-choice .select2-arrow {
	background: white;
	filter: none;  /* IE <= 9 */
	border: none;
}
.select2-container .select2-choice .select2-arrow b,
.select2-dropdown-open .select2-choice .select2-arrow b {
	background: url('../../Images/dropdown-arrow.png') no-repeat 0 0;
}

/* Samma uteseende som andra kontextmenyer. */
.select2-results {
	margin: 0;
	padding: 0;
}
.select2-results .select2-highlighted {
	background-color: #f5c348;
}
