This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 5f2a1a2dbf66dd70e2b703e385e4d00ec1361950 Author: Josh Tynjala <[email protected]> AuthorDate: Thu Apr 17 14:01:36 2025 -0700 ASDoc: fix issue where content was too big for body due to bad measurements from margin and flex-wrap --- examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml b/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml index ae6567f3e8..5c35bf1bde 100644 --- a/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml +++ b/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml @@ -226,8 +226,9 @@ limitations under the License. } .titleGroup { - margin-top: 30px; - margin-left: 5px; + padding-top: 36px; + padding-left: 5px; + padding-right: 5px; } .detailsPane { @@ -422,16 +423,15 @@ limitations under the License. <js:CallLaterBead id="clb" /> </rs:beads> <rs:DocTopBar /> - <rs:DocTagline /> <js:Group width="100%" id="titleGroup" className="titleGroup"> <js:beads> - <js:OneFlexibleChildHorizontalLayoutForOverflow flexibleChild="spacer" /> + <js:FlexibleFirstChildHorizontalLayout /> </js:beads> <js:Label text="Apache Royale ActionScript Library Reference" id="title" height="30" className="title"/> <js:Spacer width="20" /> <js:Label text="Find a class" className="findClassLabel"/> <js:TextInput id="searchTI" className="searchTI" change="search()" /> - <js:Spacer id="spacer" /> + <js:Spacer id="spacer" width="20" /> <js:CheckBox id="topLevel" text="Top-Level" click="showTopLevel()" /> <js:CheckBox id="viewBeads" text="View Bead" click="showViewBeads()" /> </js:Group>
