0.0.148
This commit is contained in:
@@ -1097,7 +1097,29 @@ form.new_route{
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
input#id_from_address_point_txt{
|
.from_address_point_txt{
|
||||||
|
display: block;
|
||||||
|
border-radius: 15px;
|
||||||
|
border: 1px solid #E6E6E6;
|
||||||
|
color: #272424;
|
||||||
|
font-family: Inter;
|
||||||
|
font-size: 16px;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 22px;
|
||||||
|
appearance: none;
|
||||||
|
background: white url("/static/img/png/icon-arrow.svg") no-repeat calc(100% - 15px) center;
|
||||||
|
|
||||||
|
height: 60px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.from_address_point_txt.post_route{
|
||||||
|
margin-top: 10px;
|
||||||
|
width: 392px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.to_address_point_txt{
|
||||||
display: block;
|
display: block;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
border: 1px solid #E6E6E6;
|
border: 1px solid #E6E6E6;
|
||||||
@@ -1114,20 +1136,9 @@ input#id_from_address_point_txt{
|
|||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input#id_to_address_point_txt{
|
|
||||||
display: block;
|
.to_address_point_txt.post_route{
|
||||||
border-radius: 15px;
|
|
||||||
border: 1px solid #E6E6E6;
|
|
||||||
color: #272424;
|
|
||||||
font-family: Inter;
|
|
||||||
font-size: 16px;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 22px;
|
|
||||||
appearance: none;
|
|
||||||
background: white url("/static/img/png/icon-arrow.svg") no-repeat calc(100% - 15px) center;
|
|
||||||
width: 392px;
|
width: 392px;
|
||||||
height: 60px;
|
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1220,17 +1231,20 @@ div.departure_arrival>div>input{
|
|||||||
|
|
||||||
.input_list{
|
.input_list{
|
||||||
display: none;
|
display: none;
|
||||||
max-width: 390px;
|
|
||||||
max-height: 200px;
|
max-height: 200px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding-top: 20px;
|
|
||||||
background-color: #F8F8F8;
|
background-color: #F8F8F8;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
overflow-x:hidden;
|
overflow-x:hidden;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input_list.post_route{
|
||||||
|
padding-top: 20px;
|
||||||
|
max-width: 390px;
|
||||||
|
}
|
||||||
|
|
||||||
.input_list.show{
|
.input_list.show{
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
|
|
||||||
|
|||||||
@@ -106,7 +106,7 @@
|
|||||||
type="text"
|
type="text"
|
||||||
minlength="3"
|
minlength="3"
|
||||||
name="from_address_point_txt"
|
name="from_address_point_txt"
|
||||||
class="from_address_point_txt"
|
class="from_address_point_txt post_route"
|
||||||
{% if form.fields.from_address_point.required %} required{% endif %}
|
{% if form.fields.from_address_point.required %} required{% endif %}
|
||||||
id="id_from_address_point_txt"
|
id="id_from_address_point_txt"
|
||||||
{% if form.initial.from_address_point_txt %}value="{{ form.initial.from_address_point_txt }}"{% endif %}
|
{% if form.initial.from_address_point_txt %}value="{{ form.initial.from_address_point_txt }}"{% endif %}
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
|
|
||||||
</datalist>
|
</datalist>
|
||||||
|
|
||||||
<div class="input_list" name="from_address_point_txt_list">
|
<div class="input_list post_route" name="from_address_point_txt_list">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
{% if not errors_off and form.errors and form.errors.from_address_point %}
|
{% if not errors_off and form.errors and form.errors.from_address_point %}
|
||||||
@@ -142,11 +142,11 @@
|
|||||||
name="to_address_point_txt"
|
name="to_address_point_txt"
|
||||||
{% if form.fields.to_address_point.required %} required{% endif %}
|
{% if form.fields.to_address_point.required %} required{% endif %}
|
||||||
id="id_to_address_point_txt"
|
id="id_to_address_point_txt"
|
||||||
class="to_address_point_txt"
|
class="to_address_point_txt post_route"
|
||||||
{% if form.initial.to_address_point_txt %}value="{{ form.initial.to_address_point_txt}}"{% endif %}
|
{% if form.initial.to_address_point_txt %}value="{{ form.initial.to_address_point_txt}}"{% endif %}
|
||||||
|
|
||||||
/>
|
/>
|
||||||
<div class="input_list" name="to_address_point_txt_list">
|
<div class="input_list post_route" name="to_address_point_txt_list">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
{% if not errors_off and form.errors and form.errors.to_address_point %}
|
{% if not errors_off and form.errors and form.errors.to_address_point %}
|
||||||
|
|||||||
Reference in New Issue
Block a user