The indicators go out of whack when you're positioning road signs on scenarios.
This is due to laziness. divs are positioned with Absolute values. it's fine if the screen doesn't change size or other elements don't change position.
but if it does (like when expanding Divs) it ruins everything!
Notice how the second image has two red dot indicators? One of them is the original position for placing the road sign on that image, the other is the one that was on the penguin. it was just positioned Abs.
Fixes could involve:
Ignoring it.
Only allowing one div to be expanded at a time
Using Relative Positions placing the Div relative to the img.
This issue is opened as it will be fixed later, after the first draft of the clinician app is done.
The indicators go out of whack when you're positioning road signs on scenarios.
This is due to laziness. divs are positioned with Absolute values. it's fine if the screen doesn't change size or other elements don't change position.
but if it does (like when expanding Divs) it ruins everything!
Notice how the second image has two red dot indicators? One of them is the original position for placing the road sign on that image, the other is the one that was on the penguin. it was just positioned Abs.
Fixes could involve:
This issue is opened as it will be fixed later, after the first draft of the clinician app is done.