| Age | Commit message (Collapse) | Author |
|
|
|
|
|
Fix consolidated view when togglable elements are open. Fixes #6972
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5796 Add some legroom in the JourneyPatterns editor
|
|
|
|
|
|
Ensure a time is set for all non-commercial stops
|
|
- Add a `kind` attribute
- Hide irrelevant fields in the form
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Adds a `JSON` attribute in the model
- Adds the fields in the editor
|
|
|
|
|
|
|
|
files. Refs #4259
|
|
|
|
|
|
|
|
|
|
|
|
When an error occurred when modifying a time in a journey pattern, it
would be surrounded by a red box. The trouble is, you wouldn't be able
to click inside that box to focus the inputs and change times once the
box was added.
The problem happens on this page:
http://stif-boiv.dev:3000/referentials/4/lines/158/routes/1/vehicle_journeys
This was due to the z-index placing the box on a layer closer to the
front than the inputs, eating click events and preventing them from
being clicked on.
Originally I thought about using `pointer-events: none;` but according
to http://caniuse.com/#search=pointer-events it isn't supported in
IE < 11. Eliminated the `z-index` instead which has the same effect and
doesn't appear to cause any visual problems, at least on the page I
mentioned. Only tested in Opera TBH.
Refs #3301
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|