On off toggle styling needs to be update due to overflow into adjacent panels

Description

To replicate navigate to infusion/examples/framework/preferences/conditionalAdjusters/

Make sure there are no elements before the toggle as the vertical spacing providing by the elements will prevent the bug from triggering.

Click on/off toggle, in the "on" state, there will be overflow onto the adjacent panels.

figure 1. In css, remove overflow hidden for the toggle. Toggling "on" in the speaking panel causes overflow into the increase size panel pushing the header down

figure 2. In css, remove "list-style: hidden". Assuming it's an overflow issue, the overflow onto adjacent panels is entirely fixed but the styling for the on-toggle is broken. Meanwhile the off-toggle is not affected.
Removing resetting list-style to default in css fixes the overflow issue.

figure 3. There is an input checkbox hidden with css according to a foundation hack (see link below) that requires a "position: absolute" that when revealed is about the same size as the overflow space.
Unhiding the hidden checkbox also fixes the overflow issue

Other notes: figure 4. display-inline will temporarily fix the issue as it will align the space for the hidden checkbox with the space for the visible toggle. However it introduces the overflow issues into the prefs framework demo. Most likely caused by some combination of the toggle styling and hidden checkbox.

Suggested solution is to completely refactor the styling and semantics of the on/off toggle to make the toggle more robust and resolve this issue moving forward.

The foundation hack that is applied to the checkbox to make it visibly hidden but accessible:
Show for screen readers only
http://foundation.zurb.com/docs/components/visibility.html

.show-for-sr {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute !important;
width: 1px;
}

Environment

None

Attachments

4

Activity

Show:

Cindy Li April 10, 2017 at 7:12 PM

The respective infusion-docs pull request has been merged into the project repo master branch at 47114433f7ac15feafffc594080118e1f6732eae

Cindy Li April 3, 2017 at 7:18 PM

The pull request https://github.com/fluid-project/infusion/pull/811 has been merged into the project repo master branch at bc7374793cd254f84b56750e9c10c3660398d4e1

Justin Obara February 14, 2017 at 8:06 PM
Edited

Another options with more structure. Could clean up the CSS and class usage.
https://jsfiddle.net/zxm507Lg/1/

Working implementation on Safari and Chrome:
https://jsfiddle.net/zxm507Lg/8/

Cross-browser working implementation:
https://jsfiddle.net/zxm507Lg/11/

Justin Obara February 14, 2017 at 2:44 PM

First pass at styling using :before and :after pseudo elements. I'm afraid that this will be brittle though.
https://jsfiddle.net/cu09c3st/6/

Justin Obara February 9, 2017 at 8:05 PM

The on/off toggles should respond to the "inputs larger" adjuster.

Fixed

Details

Assignee

Reporter

Components

Fix versions

Priority

Created July 16, 2015 at 6:23 PM
Updated April 10, 2017 at 7:12 PM
Resolved April 3, 2017 at 7:18 PM