jiti-meet/css/aui-components/dropdown.scss

67 lines
1.6 KiB
SCSS
Raw Normal View History

2016-10-26 14:52:55 +00:00
.select2-container.aui-select2-container {
background-color: transparent !important;
a.select2-choice {
height: 28px !important;
line-height: 18px !important;
width: 100% !important;
background-color: $selectBg !important;
border-color: $selectBg !important;
color: $selectFontColor !important;
text-shadow: none !important;
font-size: 12px !important;
margin: 0 auto !important;
&:after {
border-top-color: $selectFontColor;
2016-09-20 07:59:12 +00:00
}
}
2016-10-26 14:52:55 +00:00
&.select2-dropdown-open{
a.select2-choice {
background-color: $selectActiveBg !important;
border-color: $selectActiveBg !important;
}
2016-10-18 15:31:52 +00:00
}
}
2016-10-26 14:52:55 +00:00
.select2-drop.aui-select2-drop.aui-style-default {
z-index: $dropdownZ;
background-color: $selectActiveBg;
border-color: $selectActiveBg;
2016-10-26 14:52:55 +00:00
.select2-results{
background-color: $selectActiveBg;
border-color: $selectActiveBg;
&::-webkit-scrollbar {
background-color: transparent;
}
&::-webkit-scrollbar-track {
background-color: transparent;
}
&::-webkit-scrollbar-track-piece {
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background-color: $selectActiveItemBg;
}
.select2-result{
&.select2-highlighted{
background-color: $selectActiveItemBg;
}
.select2-result-label{
font-size: 12px;
line-height: 20px;
}
}
}
2016-09-20 07:59:12 +00:00
}
2016-10-26 14:52:55 +00:00
.select2-drop-mask {
z-index: $dropdownMaskZ;
2016-10-24 16:30:47 +00:00
}