Skip to content

Commit

Permalink
Correctly position tooltips relative to parent element.
Browse files Browse the repository at this point in the history
  • Loading branch information
rxl881 committed Mar 6, 2018
1 parent c198dd3 commit 9fc7435
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/components/views/rooms/RoomTooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ module.exports = React.createClass({
// positioned, also taking into account any window zoom
// NOTE: The additional 6 pixels for the left position, is to take account of the
// tooltips chevron
var parent = ReactDOM.findDOMNode(this);
var parent = ReactDOM.findDOMNode(this).parentNode;
var style = {};
style.top = parent.getBoundingClientRect().top + window.pageYOffset;
style.left = 6 + parent.getBoundingClientRect().right + window.pageXOffset;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@ limitations under the License.
*/

.mx_MImageBody {
display: block;
margin-right: 34px;
display: block;
margin-right: 34px;
}

.mx_MImageBody_thumbnail {
max-width: 100%;
/*
background-color: $primary-bg-color;
border: 2px solid $primary-bg-color;
border-radius: 1px;
*/
.mx_MImageBody_thumbnail_container {
display: inline-block;
}

img.mx_MImageBody_thumbnail {
max-width: 100%;
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,6 @@ limitations under the License.
line-height: 14px;
font-size: 13px;
color: $primary-fg-color;
max-width: 600px;
margin-right: 50px;
}

0 comments on commit 9fc7435

Please sign in to comment.