1.1.9 fix width for container-carrier
This commit is contained in:
@@ -1313,7 +1313,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.from-to-country-container-carrier{
|
.from-to-country-container-carrier{
|
||||||
width: calc(100% - 70px);
|
width: calc(100% - 60px);
|
||||||
margin: auto;
|
margin: auto;
|
||||||
background: #F8F8F8;
|
background: #F8F8F8;
|
||||||
box-shadow: -1px 4px 10px 0 rgba(198, 199, 203, 0.20), 0 -1px 10px 0 rgba(198, 199, 203, 0.20);
|
box-shadow: -1px 4px 10px 0 rgba(198, 199, 203, 0.20), 0 -1px 10px 0 rgba(198, 199, 203, 0.20);
|
||||||
|
|||||||
@@ -675,7 +675,7 @@ function confirmUpgrade(el, routeID){
|
|||||||
|
|
||||||
let editButton = document.getElementById('edit_route_' + routeID)
|
let editButton = document.getElementById('edit_route_' + routeID)
|
||||||
|
|
||||||
if(url === '/routes/highlight_route/' && !remainsHighlightCount[0].innerText === '0'){
|
if(url === '/routes/highlight_route/'){
|
||||||
el_route.classList.add('highlight-color');
|
el_route.classList.add('highlight-color');
|
||||||
editButton.classList.add('highlight-color')
|
editButton.classList.add('highlight-color')
|
||||||
document.getElementById('control_frame_' + routeID).classList.remove('show')
|
document.getElementById('control_frame_' + routeID).classList.remove('show')
|
||||||
@@ -683,11 +683,11 @@ function confirmUpgrade(el, routeID){
|
|||||||
|
|
||||||
|
|
||||||
for (let i = 0; i < remainsRisingCount.length; i++){
|
for (let i = 0; i < remainsRisingCount.length; i++){
|
||||||
remainsRisingCount[i].innerText = data.remains_route_rising_count.toString();
|
remainsRisingCount[i].innerText = data.remains_route_rising_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let i = 0; i < remainsHighlightCount.length; i++){
|
for (let i = 0; i < remainsHighlightCount.length; i++){
|
||||||
remainsHighlightCount[i].innerText = data.remains_route_highlight_count.toString();
|
remainsHighlightCount[i].innerText = data.remains_route_highlight_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user