Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: vehicle popup transition. #194

Merged
merged 1 commit into from
Jan 26, 2024
Merged
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
5 changes: 1 addition & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@ jobs:
with:
ref: ${{ inputs.branchName || 'main' }}
- name: Apt Pkgs
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libnss3-tools
version: 1.3.1
run: sudo apt install libnss3-tools
- name: Install mkcert
run: |
curl -JLO "https://dl.filippo.io/mkcert/latest?for=linux/amd64"
Expand Down
7 changes: 4 additions & 3 deletions packages/ui/src/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,16 @@ body.busmap-dark .busmap-user-circle {
.busmap-vehicle-popup dd {
margin: 0;
}
.busmap-vehicle-popup.selected {
transition: transform 4.25s ease;
/* increased specificity necessary due to cascade from dynamic import of leaflets css file. */
.leaflet-popup.busmap-vehicle-popup.selected {
transition: transform 3.75s ease;
}
.busmap-vehicle {
width: auto !important;
height: auto !important;
white-space: nowrap;
border: 1px solid black;
transition: transform 4.25s ease;
transition: transform 3.75s ease;
}
body.busmap-mapmove .busmap-vehicle {
transition: none;
Expand Down