Skip to content

Commit b3e1b58

Browse files
Move gitblame tooltip to the left (#763)
1 parent 4d025e2 commit b3e1b58

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

plugins/git/webgui/js/gitBlame.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function (on, topic, declare, Color, dom, Tooltip, Text, model, viewHandler,
3939
commitCache[tooltipId] = gitUtil.createTooltip(commit);
4040
}
4141

42-
Tooltip.show(commitCache[tooltipId], domNode, ['above']);
42+
Tooltip.show(commitCache[tooltipId], domNode, ['before']);
4343
on.once(domNode, 'mouseleave', function(){
4444
Tooltip.hide(domNode);
4545
})

webgui/style/codecompass.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -709,3 +709,9 @@ div.CodeMirror-linenumber {
709709
.cm-s-default .cm-Function { font-weight: bold; }
710710
.cm-s-default .cm-Type { color:rgb(43, 145, 175); }
711711
.cm-s-default .cm-Enum { color:rgb(47, 79, 79); }
712+
713+
/* Revision (Git) Management */
714+
715+
.git-message {
716+
overflow-wrap: break-word;
717+
}

0 commit comments

Comments
 (0)