mirror of https://github.com/vector-im/riot-web
				
				
				
			Merge pull request #4892 from jugglinmike/gh-13135-highlight-jump-to-bottom
Highlight "Jump to Bottom" badge when appropriatepull/21833/head
						commit
						ada68c4220
					
				|  | @ -41,6 +41,11 @@ limitations under the License. | |||
|     // with text-align in parent | ||||
|     display: inline-block; | ||||
|     padding: 0 4px; | ||||
|     color: $roomtile-badge-fg-color; | ||||
|     background-color: $roomtile-name-color; | ||||
| } | ||||
| 
 | ||||
| .mx_JumpToBottomButton_highlight .mx_JumpToBottomButton_badge { | ||||
|     color: $secondary-accent-color; | ||||
|     background-color: $warning-color; | ||||
| } | ||||
|  |  | |||
|  | @ -2044,6 +2044,7 @@ export default createReactClass({ | |||
|         if (!this.state.atEndOfLiveTimeline && !this.state.searchResults) { | ||||
|             const JumpToBottomButton = sdk.getComponent('rooms.JumpToBottomButton'); | ||||
|             jumpToBottom = (<JumpToBottomButton | ||||
|                 highlight={this.state.room.getUnreadNotificationCount('highlight') > 0} | ||||
|                 numUnreadMessages={this.state.numUnreadMessages} | ||||
|                 onScrollToBottomClick={this.jumpToLiveTimeline} | ||||
|             />); | ||||
|  |  | |||
|  | @ -16,13 +16,18 @@ limitations under the License. | |||
| 
 | ||||
| import { _t } from '../../../languageHandler'; | ||||
| import AccessibleButton from '../elements/AccessibleButton'; | ||||
| import classNames from 'classnames'; | ||||
| 
 | ||||
| export default (props) => { | ||||
|     const className = classNames({ | ||||
|         'mx_JumpToBottomButton': true, | ||||
|         'mx_JumpToBottomButton_highlight': props.highlight, | ||||
|     }); | ||||
|     let badge; | ||||
|     if (props.numUnreadMessages) { | ||||
|         badge = (<div className="mx_JumpToBottomButton_badge">{props.numUnreadMessages}</div>); | ||||
|     } | ||||
|     return (<div className="mx_JumpToBottomButton"> | ||||
|     return (<div className={className}> | ||||
|         <AccessibleButton className="mx_JumpToBottomButton_scrollDown" | ||||
|             title={_t("Scroll to most recent messages")} | ||||
|             onClick={props.onScrollToBottomClick}> | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Michael Telatynski
						Michael Telatynski