diff --git a/web/react/components/channel_header.jsx b/web/react/components/channel_header.jsx index 90a7767917..0254d0e82e 100644 --- a/web/react/components/channel_header.jsx +++ b/web/react/components/channel_header.jsx @@ -105,7 +105,7 @@ module.exports = React.createClass({ if (!utils.areStatesEqual(newState, this.state)) { this.setState(newState); } - $('.channel-header__info .description').popover({placement: 'bottom', trigger: 'hover', html: true, delay: {show: 500, hide: 500}}); + $('.channel-header__info .description').popover({placement: 'bottom', trigger: 'hover click', html: true, delay: {show: 500, hide: 500}}); }, onSocketChange: function(msg) { if (msg.action === 'new_user') { diff --git a/web/react/components/channel_info_modal.jsx b/web/react/components/channel_info_modal.jsx index 18addb52fe..6d999870aa 100644 --- a/web/react/components/channel_info_modal.jsx +++ b/web/react/components/channel_info_modal.jsx @@ -32,7 +32,7 @@ module.exports = React.createClass({
- {'This is the start of your private message history with ' + teammateName + '.'}
- {'Private messages and files shared here are not shown to people outside this area.'}
+ This is the start of your private message history with {teammateName}.
+ Private messages and files shared here are not shown to people outside this area.
- Welcome to {uiName}!
+ Welcome to {uiName}!
- {'This is the first channel ' + strings.Team + 'mates see when they'}
+ This is the first channel {strings.Team} mates see when they
sign up - use it for posting updates everyone needs to know.
@@ -434,7 +435,7 @@ module.exports = React.createClass({
- {'This is the start of ' + uiName + ', a channel for non-work-related conversations.'}
+ This is the start of {uiName}, a channel for non-work-related conversations.
{remover} removed you from {channelName}
diff --git a/web/react/components/view_image.jsx b/web/react/components/view_image.jsx index 2b7f64030a..70b0aea718 100644 --- a/web/react/components/view_image.jsx +++ b/web/react/components/view_image.jsx @@ -109,6 +109,22 @@ module.exports = React.createClass({ } ); + $(this.refs.previewArrowLeft.getDOMNode()).hover( + function onModalHover() { + $(self.refs.imageFooter.getDOMNode()).addClass('footer--show'); + }, function offModalHover() { + $(self.refs.imageFooter.getDOMNode()).removeClass('footer--show'); + } + ); + + $(this.refs.previewArrowRight.getDOMNode()).hover( + function onModalHover() { + $(self.refs.imageFooter.getDOMNode()).addClass('footer--show'); + }, function offModalHover() { + $(self.refs.imageFooter.getDOMNode()).removeClass('footer--show'); + } + ); + $(window).on('keyup', this.handleKeyPress); // keep track of whether or not this component is mounted so we can safely set the state asynchronously @@ -252,13 +268,13 @@ module.exports = React.createClass({ var rightArrow = ''; if (this.props.filenames.length > 1) { leftArrow = ( - + ); rightArrow = ( - + ); diff --git a/web/sass-files/sass/partials/_modal.scss b/web/sass-files/sass/partials/_modal.scss index 014f834ed0..8462701c9e 100644 --- a/web/sass-files/sass/partials/_modal.scss +++ b/web/sass-files/sass/partials/_modal.scss @@ -50,6 +50,13 @@ @include clearfix; .modal-title { float: left; + font-size: 16px; + line-height: 27px; + color: #f4f4f4; + .name { + font-weight: 600; + color: #fff; + } } .modal-action { padding: 0; diff --git a/web/sass-files/sass/partials/_popover.scss b/web/sass-files/sass/partials/_popover.scss index 5008331b4a..126d239ecd 100644 --- a/web/sass-files/sass/partials/_popover.scss +++ b/web/sass-files/sass/partials/_popover.scss @@ -1,3 +1,8 @@ +.channel-header__info .popover-content { + max-height: 250px; + overflow: auto; +} + .user-popover { cursor: pointer; display: inline-block; @@ -13,4 +18,5 @@ overflow: hidden; text-overflow: ellipsis; display: block; -} \ No newline at end of file +} + diff --git a/web/sass-files/sass/partials/_sidebar--left.scss b/web/sass-files/sass/partials/_sidebar--left.scss index 6d9f2ad8b5..22b7426b11 100644 --- a/web/sass-files/sass/partials/_sidebar--left.scss +++ b/web/sass-files/sass/partials/_sidebar--left.scss @@ -38,24 +38,25 @@ height: 100%; position: relative; overflow: auto; - } .nav-pills__unread-indicator { position: absolute; left: 0; right: 0; - width: 70%; - background-color: darken($primary-color, 5%); - color: white; + width: 72%; + color: #777; + background: #DCF0FF; + @include border-radius(50px); margin: 0 auto; - padding: 2px; + padding: 3px 0 4px; + font-size: 13.5px; text-align: center; z-index: 1; } .nav-pills__unread-indicator-top { - top: 56px; + top: 66px; } .nav-pills__unread-indicator-bottom { bottom: 0px;