0.8.368
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.disp-none{
|
.disp-none{
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
@@ -968,6 +969,26 @@
|
|||||||
width: calc(100% - 95px);
|
width: calc(100% - 95px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.from_address_point_txt.find_route.w_100{
|
||||||
|
border: 1px solid #E6E6E6;
|
||||||
|
width: calc(100% - 35px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.from_address_point_txt.find_route.first.w_100{
|
||||||
|
width: calc(100% - 35px);
|
||||||
|
border-right: 1px solid #E6E6E6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.to_address_point_txt.find_route.w_100{
|
||||||
|
border: 1px solid #E6E6E6;
|
||||||
|
width: calc(100% - 35px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.to_address_point_txt.find_route.first.w_100{
|
||||||
|
width: calc(100% - 35px);
|
||||||
|
border-right: 1px solid #E6E6E6;
|
||||||
|
}
|
||||||
|
|
||||||
.to_address_point_txt.find_route{
|
.to_address_point_txt.find_route{
|
||||||
border-top: 1px solid #E6E6E6;
|
border-top: 1px solid #E6E6E6;
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
|
|||||||
@@ -56,6 +56,12 @@ function open_chat (user_id){
|
|||||||
function changeWidthEL (el){
|
function changeWidthEL (el){
|
||||||
let parent = el.offsetParent
|
let parent = el.offsetParent
|
||||||
let loader_place = parent.querySelector('.abbreviation_airport_in_search')
|
let loader_place = parent.querySelector('.abbreviation_airport_in_search')
|
||||||
loader_place.classList.toggle('hide')
|
if (loader_place.innerHTML){
|
||||||
el.classList.toggle('width-100')
|
loader_place.classList.remove('hide')
|
||||||
|
el.classList.remove('w_100')
|
||||||
|
} else {
|
||||||
|
loader_place.classList.add('hide')
|
||||||
|
el.classList.add('w_100')
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user