2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_Dropdown {
|
|
|
|
position: relative;
|
2019-03-06 18:53:44 +01:00
|
|
|
color: $primary-fg-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dropdown_disabled {
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dropdown_input {
|
2019-01-29 23:38:41 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-04-12 01:23:35 +02:00
|
|
|
position: relative;
|
2021-07-06 11:08:57 +02:00
|
|
|
border-radius: 4px;
|
2018-04-12 01:23:35 +02:00
|
|
|
border: 1px solid $strong-input-border-color;
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-12px;
|
2018-04-12 01:23:35 +02:00
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2020-04-15 15:19:47 +02:00
|
|
|
.mx_Dropdown_input.mx_AccessibleButton_disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_Dropdown_input:focus {
|
2019-03-06 18:53:44 +01:00
|
|
|
border-color: $input-focused-border-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable dropdown highlight on focus */
|
|
|
|
.mx_Dropdown_input.mx_AccessibleButton:focus {
|
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dropdown_arrow {
|
2019-01-29 23:38:41 +01:00
|
|
|
width: 10px;
|
|
|
|
height: 6px;
|
2019-02-01 23:06:46 +01:00
|
|
|
padding-right: 9px;
|
2019-02-27 11:42:05 +01:00
|
|
|
mask: url('$(res)/img/feather-customised/dropdown-arrow.svg');
|
2019-01-29 23:38:41 +01:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
background: $primary-fg-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dropdown_option {
|
|
|
|
height: 35px;
|
2020-03-31 16:26:23 +02:00
|
|
|
line-height: $font-35px;
|
2018-04-12 01:23:35 +02:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
|
2019-07-10 17:55:03 +02:00
|
|
|
.mx_Dropdown_input > .mx_Dropdown_option {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
flex: 1;
|
2020-04-07 17:27:26 +02:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2019-07-10 17:55:03 +02:00
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_Dropdown_option div {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2020-05-11 23:04:18 +02:00
|
|
|
.mx_Dropdown_option img,
|
|
|
|
.mx_Dropdown_option .mx_Dropdown_option_emoji {
|
2018-04-12 01:23:35 +02:00
|
|
|
margin: 5px;
|
2019-01-29 23:04:44 +01:00
|
|
|
width: 16px;
|
2018-04-12 01:23:35 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2020-05-11 23:04:18 +02:00
|
|
|
.mx_Dropdown_option_emoji {
|
|
|
|
font-size: $font-16px;
|
|
|
|
line-height: $font-16px;
|
|
|
|
}
|
|
|
|
|
2019-03-06 18:53:44 +01:00
|
|
|
input.mx_Dropdown_option,
|
|
|
|
input.mx_Dropdown_option:focus {
|
|
|
|
font-weight: normal;
|
2018-04-12 01:23:35 +02:00
|
|
|
border: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
// XXX: hack to prevent text box being too big and pushing
|
|
|
|
// its parent out / overlapping the dropdown arrow. Only really
|
|
|
|
// works in the Country dropdown.
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dropdown_menu {
|
|
|
|
position: absolute;
|
|
|
|
left: -1px;
|
|
|
|
right: -1px;
|
|
|
|
top: 100%;
|
|
|
|
z-index: 2;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0px;
|
2021-07-06 11:08:57 +02:00
|
|
|
border-radius: 4px;
|
2019-03-06 18:53:44 +01:00
|
|
|
border: 1px solid $input-focused-border-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
background-color: $primary-bg-color;
|
|
|
|
max-height: 200px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dropdown_menu .mx_Dropdown_option {
|
|
|
|
height: auto;
|
|
|
|
min-height: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dropdown_menu .mx_Dropdown_option_highlight {
|
|
|
|
background-color: $focus-bg-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dropdown_searchPrompt {
|
|
|
|
font-weight: normal;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|