Changeset 117 for trunk/buddypub
- Timestamp:
- 04/29/08 17:03:45 (8 months ago)
- Location:
- trunk/buddypub/bpclientflex/src
- Files:
-
- 11 added
- 2 modified
-
assets/cnflexlib (added)
-
assets/cnflexlib/close_over.png (added)
-
assets/cnflexlib/close_up.png (added)
-
assets/cnflexlib/closeout-1.png (added)
-
assets/cnflexlib/closeover-4.png (added)
-
assets/cnflexlib/maximize_over.png (added)
-
assets/cnflexlib/maximize_up.png (added)
-
assets/cnflexlib/minimize_over.png (added)
-
assets/cnflexlib/minimize_up.png (added)
-
assets/cnflexlib/restore_over.png (added)
-
assets/cnflexlib/restore_up.png (added)
-
assets/css/buddypub_style.css (modified) (2 diffs)
-
org/cnflex/buddypub/mvc/view/container/Main.mxml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/buddypub/bpclientflex/src/assets/css/buddypub_style.css
r116 r117 3 3 { 4 4 borderColor: #009DFF; 5 cornerRadius: 0;6 borderAlpha: 1 .0;5 cornerRadius: 6; 6 borderAlpha: 1; 7 7 roundedBottomCorners: false; 8 8 borderThicknessLeft: 1; 9 9 borderThicknessTop: 1; 10 10 borderThicknessRight: 1; 11 borderThicknessBottom: 1; 12 controlBarStyleName: panelControlBar; 11 borderThicknessBottom: 1; 13 12 color: #FFFFFF; 14 dropShadowEnabled: false; 13 dropShadowEnabled: false; 14 titleStyleName: panelControlBar; 15 backgroundColor: #EEEBEB; 16 /*borderStyle: solid;*/ 15 17 } 18 16 19 .panelControlBar 17 20 { 18 21 backgroundAlpha: 1; 22 barColor: #180C0C; 23 fontSize: 15; 24 } 25 26 Label 27 { 28 color: #009DFF; 19 29 } 20 30 21 31 global 22 32 { 23 color: # 1D1D1D;33 color: #009DFF; 24 34 backgroundGradientAlphas: 1.0, 1.0; 25 35 backgroundGradientColors: #FDFDFD, #FDFDFD; … … 50 60 51 61 62 /**************************************************************** 63 third party styles 64 ******************************************************************/ 65 .spTitle 66 { 67 font-size: 11px; 68 font-family: arial; 69 font-weight: bold; 70 } 71 .maximizeRestoreButton 72 { 73 74 up-skin: Embed("/assets/cnflexlib/maximize_up.png"); 75 over-skin: Embed("/assets/cnflexlib/maximize_over.png"); 76 down-skin: Embed("/assets/cnflexlib/maximize_up.png"); 77 selected-up-skin: Embed("/assets/cnflexlib/restore_up.png"); 78 selected-over-skin: Embed("/assets/cnflexlib/restore_over.png"); 79 selected-down-skin: Embed("/assets/cnflexlib/restore_up.png"); 80 } 81 82 .minimizeButton 83 { 84 up-skin: Embed("/assets/cnflexlib/minimize_up.png"); 85 over-skin: Embed("/assets/cnflexlib/minimize_over.png"); 86 down-skin: Embed("/assets/cnflexlib/minimize_up.png"); 87 } 88 .closeButton 89 { 90 up-skin: Embed("/assets/cnflexlib/closeover-4.png"); 91 over-skin: Embed("/assets/cnflexlib/closeout-1.png"); 92 down-skin: Embed("/assets/cnflexlib/closeover-4.png"); 93 } 94 SuperPanel 95 { 96 97 padding-left: 10px; 98 padding-right: 10px; 99 padding-bottom: 10px; 100 padding-top: 10px; 101 header-height: 22px; 102 } 103 DragHighlight 104 { 105 border-color: #CCCCCC; 106 border-thickness: 3px; 107 border-style: solid; 108 } 52 109 53 110 -
trunk/buddypub/bpclientflex/src/org/cnflex/buddypub/mvc/view/container/Main.mxml
r116 r117 23 23 } 24 24 25 26 27 25 ]]> 28 26 </mx:Script> … … 36 34 buttonMode="true" useHandCursor="true" click="searchKeyword()"/> 37 35 </mx:HBox> 38 <mx:HBox paddingBottom="20" paddingTop="10" >39 <mx:VBox width="300">36 <mx:HBox paddingBottom="20" paddingTop="10" width="100%" height="100%"> 37 40 38 41 <view:ResizeableAndClosePanel title="test001" width="100%"> 42 <mx:Label text="1111"/> 43 </view:ResizeableAndClosePanel> 44 <view:ResizeableAndClosePanel title="test002" width="100%"/> 45 <view:ResizeableAndClosePanel title="test003" width="100%"/> 46 <view:ResizeableAndClosePanel title="test004" width="100%"/> 47 <!-- 48 <widget:MessageBox title="当前播放列表"/> 49 <widget:MessageBox title="我的收藏夹"/> 50 <widget:MessageBox title="我的主页"/> 51 <widget:MessageBox title="好友/消息"/> 52 --> 53 </mx:VBox> 39 <view:AutoLayoutPanelCanvas width="100%" height="100%" minHeight="500"> 40 <view:displayItems> 41 42 <view:ResizeableAndClosePanel title="当前播放列表" minWidth="250" width="100%"> 43 <mx:Label text="1111"/> 44 </view:ResizeableAndClosePanel> 45 <view:ResizeableAndClosePanel title="我的收藏夹" minWidth="250" width="100%"/> 46 <view:ResizeableAndClosePanel title="我的主页" minWidth="250" width="100%"/> 47 <view:ResizeableAndClosePanel title="好友/消息" minWidth="250" width="100%"/> 48 <view:ResizeableAndClosePanel title="测试1" minWidth="250" width="100%"/> 49 <view:ResizeableAndClosePanel title="测试2" minWidth="250" width="100%"/> 50 <view:ResizeableAndClosePanel title="测试3" minWidth="250" width="100%"/> 51 </view:displayItems> 52 53 </view:AutoLayoutPanelCanvas> 54 54 55 55 <mx:VBox minHeight="400" width="100%"> 56 57 </mx:VBox> 56 58 57 </mx:HBox> 59 58
