diff --git a/rhodecode/lib/helpers.py b/rhodecode/lib/helpers.py --- a/rhodecode/lib/helpers.py +++ b/rhodecode/lib/helpers.py @@ -1196,7 +1196,7 @@ class InitialsGravatar(object): """.format( size=self.size, - f_size=self.size/1.85, # scale the text inside the box nicely + f_size=self.size/2.05, # scale the text inside the box nicely background=self.background, text_color=self.text_color, text=initials.upper(), diff --git a/rhodecode/public/css/main.less b/rhodecode/public/css/main.less --- a/rhodecode/public/css/main.less +++ b/rhodecode/public/css/main.less @@ -2187,6 +2187,11 @@ h3.files_location{ margin-right: @padding; } } + + .select-index-number { + margin: 0 0 0 20px; + color: @grey3; + } } .search_activate { diff --git a/rhodecode/templates/files/base.mako b/rhodecode/templates/files/base.mako --- a/rhodecode/templates/files/base.mako +++ b/rhodecode/templates/files/base.mako @@ -1,4 +1,11 @@ <%def name="refs(commit)"> + ## Build a cache of refs for selector + + %if commit.merge: ${_('merge')} @@ -10,6 +17,9 @@ ${h.shorter(book)} + %endfor %endif @@ -17,12 +27,18 @@ ${tag} + %endfor %if commit.branch: ${h.shorter(commit.branch)} + %endif diff --git a/rhodecode/templates/files/files.mako b/rhodecode/templates/files/files.mako --- a/rhodecode/templates/files/files.mako +++ b/rhodecode/templates/files/files.mako @@ -33,6 +33,8 @@