-
Notifications
You must be signed in to change notification settings - Fork 3
Layout refactor #4
Comments
Case: Table of ContentsThe Table of Contents (ToC) can display members of a class. Sometimes a member name can be really long. How is the width of the ToC handled?
Consensus: Poor support for "fluid" layout. Refactor should incorporate layout based on constant-sized space allocations. Dynamics are handled by having multiple layouts selected by |
Case: Width analysisThe frequency of the widths of member names can be analyzed to decide on an optimal width for elements for various screen sizes. For example, a sample was taken of the widths of every member name in the API, using Open Sans font at
This could be used, for example, to decide the amount of screen width to allocate to a list that displays members, such as a ToC. A smaller width will take up less of the screen, but will truncate more members. Conversely, a larger width will truncate less members, but use up more of the screen. 300px is enough to display every member without truncation. However, for common screen resolutions, a significant portion of the screen will be allocated. On the other hand, at only half the width, 90% of members are still covered. Using |
The layout of the website is messy, derived from a poor understanding of CSS. There is a rudimentary application of fluidity, but this conflicts with the dynamic nature of the content.
The text was updated successfully, but these errors were encountered: