Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/android-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
echo "GPF_key=${{ secrets.GPF_key }}" > .env
echo "signalement_url=${{ secrets.SIGNALEMENT_URL }}" >> .env
echo "osm_bearer_token=${{ secrets.OSM_BEARER_TOKEN }}" >> .env
echo "geovelo_key=${{ secrets.GEOVELO_KEY }}" >> .env

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ios-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
echo "GPF_key=${{ secrets.GPF_key }}" > .env
echo "signalement_url=${{ secrets.SIGNALEMENT_URL }}" >> .env
echo "osm_bearer_token=${{ secrets.OSM_BEARER_TOKEN }}" >> .env
echo "geovelo_key=${{ secrets.GEOVELO_KEY }}" >> .env

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
3 changes: 3 additions & 0 deletions src/css/assets/directions/details-o.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/css/assets/directions/details.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 0 additions & 5 deletions src/css/assets/directions/invisible.svg

This file was deleted.

3 changes: 3 additions & 0 deletions src/css/assets/directions/link-play.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/css/assets/directions/location-step-add.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/css/assets/directions/velo-s.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/css/assets/directions/velo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 0 additions & 5 deletions src/css/assets/directions/visible.svg

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/css/assets/isochrone-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 16 additions & 5 deletions src/css/directions-results.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,22 @@
background-image: url("assets/directions/voiture.svg");
}

#directionsSummaryTransportVelo {
background-image: url("assets/directions/velo.svg");
}

.lblDirectionsSummaryTransport {
width: 30px;
height: 30px;
display: inline-block;
background-repeat: no-repeat;
background-position: left;
flex-shrink: 0;
}

#directionsSummaryComputation {
font-size: 12px;
color: var(--mid-grey);
font-family: "Open Sans Semibold";
}

.lblDirectionsSummaryComputation {
Expand Down Expand Up @@ -104,14 +110,14 @@
cursor: pointer;
text-align: right;
width: 75px;
background-image: url("assets/directions/invisible.svg");
background-image: url("assets/directions/details.svg");
background-repeat: no-repeat;
background-position: 8px;
background-position: 15px;
color: var(--dark-green);
}

#directionsDetails input[id="directionsShowDetail"]:checked + label {
background-image: url("assets/directions/visible.svg");
background-image: url("assets/directions/details-o.svg");
background-color: var(--dark-green);
color: white;
}
Expand Down Expand Up @@ -233,7 +239,12 @@
font-family: "Fira Sans Semibold";
}


.divPositionAdressOriginInfo.geovelolink {
text-decoration: none;
background-image: url(assets/directions/link-play.svg);
background-size: 16px;
background-position: center right 16px;
}

@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
#directionsListDetails {
Expand Down
Loading