2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2019-04-03 17:27:45 +02:00
|
|
|
Copyright 2019 New Vector Ltd
|
2018-04-12 01:23:35 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Using a textarea for this element, to circumvent autofill */
|
2019-04-03 17:27:45 +02:00
|
|
|
.mx_AddressPickerDialog_input,
|
2019-07-09 19:15:10 +02:00
|
|
|
.mx_AddressPickerDialog_input:focus {
|
2018-04-12 01:23:35 +02:00
|
|
|
height: 26px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: $font-family;
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 12px;
|
|
|
|
margin: 0 !important;
|
|
|
|
border: 0 !important;
|
|
|
|
outline: 0 !important;
|
|
|
|
width: 1000%; /* Pretend that this is an "input type=text" */
|
|
|
|
resize: none;
|
|
|
|
overflow: hidden;
|
|
|
|
vertical-align: middle;
|
|
|
|
box-sizing: border-box;
|
|
|
|
word-wrap: nowrap;
|
|
|
|
}
|
|
|
|
|
2019-04-03 17:27:45 +02:00
|
|
|
.mx_AddressPickerDialog .mx_Dialog_content {
|
2019-07-09 19:15:10 +02:00
|
|
|
min-height: 50px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-04-03 17:27:45 +02:00
|
|
|
.mx_AddressPickerDialog_inputContainer {
|
2018-04-12 01:23:35 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
border: solid 1px $input-border-color;
|
|
|
|
line-height: 36px;
|
|
|
|
padding-left: 4px;
|
|
|
|
padding-right: 4px;
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
max-height: 150px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
2019-04-03 17:27:45 +02:00
|
|
|
.mx_AddressPickerDialog_error {
|
2018-04-12 01:23:35 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
color: $warning-color;
|
|
|
|
}
|
|
|
|
|
2019-04-03 17:27:45 +02:00
|
|
|
.mx_AddressPickerDialog_cancel {
|
2018-04-12 01:23:35 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 11px;
|
|
|
|
top: 13px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-04-03 17:27:45 +02:00
|
|
|
.mx_AddressPickerDialog_cancel object {
|
2018-04-12 01:23:35 +02:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|