Skip to content

Commit

Permalink
Move gitblame tooltip to the left (#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
wbqpk3 authored Oct 9, 2024
1 parent 4d025e2 commit b3e1b58
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/git/webgui/js/gitBlame.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function (on, topic, declare, Color, dom, Tooltip, Text, model, viewHandler,
commitCache[tooltipId] = gitUtil.createTooltip(commit);
}

Tooltip.show(commitCache[tooltipId], domNode, ['above']);
Tooltip.show(commitCache[tooltipId], domNode, ['before']);
on.once(domNode, 'mouseleave', function(){
Tooltip.hide(domNode);
})
Expand Down
6 changes: 6 additions & 0 deletions webgui/style/codecompass.css
Original file line number Diff line number Diff line change
Expand Up @@ -709,3 +709,9 @@ div.CodeMirror-linenumber {
.cm-s-default .cm-Function { font-weight: bold; }
.cm-s-default .cm-Type { color:rgb(43, 145, 175); }
.cm-s-default .cm-Enum { color:rgb(47, 79, 79); }

/* Revision (Git) Management */

.git-message {
overflow-wrap: break-word;
}

0 comments on commit b3e1b58

Please sign in to comment.