move aux panel into room body
to put a resize handle between the body and the right panel later onpull/21833/head
							parent
							
								
									3d07f45370
								
							
						
					
					
						commit
						4972b1ba7c
					
				|  | @ -24,12 +24,6 @@ limitations under the License. | |||
|     flex-direction: column; | ||||
| } | ||||
| 
 | ||||
| .mx_RoomView .mx_RoomHeader { | ||||
|     order: 1; | ||||
| 
 | ||||
|     flex: 0 0 52px; | ||||
| } | ||||
| 
 | ||||
| .mx_RoomView_fileDropTarget { | ||||
|     min-width: 0px; | ||||
|     width: 100%; | ||||
|  | @ -69,8 +63,6 @@ limitations under the License. | |||
|     margin: 0px auto; | ||||
| 
 | ||||
|     overflow: auto; | ||||
|     border-bottom: 1px solid $primary-hairline-color; | ||||
| 
 | ||||
|     flex: 0 0 auto; | ||||
| } | ||||
| 
 | ||||
|  |  | |||
|  | @ -14,6 +14,13 @@ See the License for the specific language governing permissions and | |||
| limitations under the License. | ||||
| */ | ||||
| 
 | ||||
| .mx_RoomHeader { | ||||
|     order: 1; | ||||
|     flex: 0 0 52px; | ||||
|     border-bottom: 1px solid $primary-hairline-color; | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
| /* add 20px to the height of the header when editing */ | ||||
| .mx_RoomHeader_editing { | ||||
|     flex: 0 0 93px ! important; | ||||
|  |  | |||
|  | @ -1507,18 +1507,20 @@ module.exports = React.createClass({ | |||
|                             oobData={this.props.oobData} | ||||
|                             collapsedRhs={this.props.collapsedRhs} | ||||
|                         /> | ||||
|                         <div className="mx_RoomView_auxPanel"> | ||||
|                             <RoomPreviewBar onJoinClick={this.onJoinButtonClicked} | ||||
|                                             onForgetClick={this.onForgetClick} | ||||
|                                             onRejectClick={this.onRejectThreepidInviteButtonClicked} | ||||
|                                             canPreview={false} error={this.state.roomLoadError} | ||||
|                                             roomAlias={roomAlias} | ||||
|                                             spinner={this.state.joining} | ||||
|                                             spinnerState="joining" | ||||
|                                             inviterName={inviterName} | ||||
|                                             invitedEmail={invitedEmail} | ||||
|                                             room={this.state.room} | ||||
|                             /> | ||||
|                         <div className="mx_RoomView_body"> | ||||
|                             <div className="mx_RoomView_auxPanel"> | ||||
|                                 <RoomPreviewBar onJoinClick={this.onJoinButtonClicked} | ||||
|                                                 onForgetClick={this.onForgetClick} | ||||
|                                                 onRejectClick={this.onRejectThreepidInviteButtonClicked} | ||||
|                                                 canPreview={false} error={this.state.roomLoadError} | ||||
|                                                 roomAlias={roomAlias} | ||||
|                                                 spinner={this.state.joining} | ||||
|                                                 spinnerState="joining" | ||||
|                                                 inviterName={inviterName} | ||||
|                                                 invitedEmail={invitedEmail} | ||||
|                                                 room={this.state.room} | ||||
|                                 /> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                         <div className="mx_RoomView_messagePanel"></div> | ||||
|                     </div> | ||||
|  | @ -1552,16 +1554,18 @@ module.exports = React.createClass({ | |||
|                             room={this.state.room} | ||||
|                             collapsedRhs={this.props.collapsedRhs} | ||||
|                         /> | ||||
|                         <div className="mx_RoomView_auxPanel"> | ||||
|                             <RoomPreviewBar onJoinClick={this.onJoinButtonClicked} | ||||
|                                             onForgetClick={this.onForgetClick} | ||||
|                                             onRejectClick={this.onRejectButtonClicked} | ||||
|                                             inviterName={inviterName} | ||||
|                                             canPreview={false} | ||||
|                                             spinner={this.state.joining} | ||||
|                                             spinnerState="joining" | ||||
|                                             room={this.state.room} | ||||
|                             /> | ||||
|                         <div className="mx_RoomView_body"> | ||||
|                             <div className="mx_RoomView_auxPanel"> | ||||
|                                 <RoomPreviewBar onJoinClick={this.onJoinButtonClicked} | ||||
|                                                 onForgetClick={this.onForgetClick} | ||||
|                                                 onRejectClick={this.onRejectButtonClicked} | ||||
|                                                 inviterName={inviterName} | ||||
|                                                 canPreview={false} | ||||
|                                                 spinner={this.state.joining} | ||||
|                                                 spinnerState="joining" | ||||
|                                                 room={this.state.room} | ||||
|                                 /> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                         <div className="mx_RoomView_messagePanel"></div> | ||||
|                     </div> | ||||
|  | @ -1824,8 +1828,8 @@ module.exports = React.createClass({ | |||
|                     onForgetClick={(myMembership === "leave") ? this.onForgetClick : null} | ||||
|                     onLeaveClick={(myMembership === "join") ? this.onLeaveClick : null} | ||||
|                 /> | ||||
|                 { auxPanel } | ||||
|                 <div className={fadableSectionClasses}> | ||||
|                     { auxPanel } | ||||
|                     { topUnreadMessagesBar } | ||||
|                     { messagePanel } | ||||
|                     { searchResultsPanel } | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Bruno Windels
						Bruno Windels