Styling applied to new elements to keep them consistent with the rest of the app
Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/88ef5b03 Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/88ef5b03 Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/88ef5b03 Branch: refs/heads/master Commit: 88ef5b031c03997027b24dd315e001230f632055 Parents: 5ef6e3c Author: Om <[email protected]> Authored: Mon May 27 03:01:26 2013 -0700 Committer: Om <[email protected]> Committed: Mon May 27 03:01:26 2013 -0700 ---------------------------------------------------------------------- installer/src/InstallApacheFlex.mxml | 33 ++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/88ef5b03/installer/src/InstallApacheFlex.mxml ---------------------------------------------------------------------- diff --git a/installer/src/InstallApacheFlex.mxml b/installer/src/InstallApacheFlex.mxml index a4987df..640bdc6 100644 --- a/installer/src/InstallApacheFlex.mxml +++ b/installer/src/InstallApacheFlex.mxml @@ -1848,28 +1848,37 @@ variables are not required because the locations of these pieces are known. height="200" top="380" x="{zeroStepGroup.x = this.width/2 - zeroStepGroup.width/2}" - visible="true" - visible.optionsState="false" - visible.directoryState="false" - visible.installState="false" backgroundAlpha="0"> <s:layout> <s:VerticalLayout verticalAlign="middle" + horizontalAlign="center" paddingRight="10" paddingLeft="10"/> </s:layout> - <s:HGroup> - <s:Label text="Select AIR version" width="200" /> - <s:ComboBox id="airVersion" + <s:HGroup verticalAlign="middle"> + <s:Label text="Select AIR version" width="200" fontFamily="openSansBold" /> + <s:DropDownList id="airVersion" dataProvider="{AIR_VERSIONS}" - change="handleAirVersionChange(event)"/> + width="200" + fontFamily="openSansSemibold" + change="handleAirVersionChange(event)"> + <s:layout> + <s:VerticalLayout requestedRowCount="-1"/> + </s:layout> + </s:DropDownList> </s:HGroup> - <s:HGroup> - <s:Label text="Select Flash Player version" width="200" /> - <s:ComboBox id="flashPlayerVersion" + <s:HGroup verticalAlign="middle"> + <s:Label text="Select Flash Player version" width="200" fontFamily="openSansBold" /> + <s:DropDownList id="flashPlayerVersion" + width="200" dataProvider="{FLASH_PLAYER_VERSIONS}" - change="handleFlashPlayerVersionChange(event)"/> + fontFamily="openSansSemibold" + change="handleFlashPlayerVersionChange(event)"> + <s:layout> + <s:VerticalLayout requestedRowCount="-1"/> + </s:layout> + </s:DropDownList> </s:HGroup> <s:controlBarContent> <s:Spacer
