Showing with 9 additions and 4 deletions.
  1. +6 −1 pagure/static/pagure.css
  2. +2 −2 pagure/templates/commit.html
  3. +1 −1 pagure/templates/edit_file.html
@@ -385,6 +385,10 @@ pre {
text-align: right;
}

.filehex, .commitid {
font-family: "courier new";
}

.tree_list li:nth-child(odd),
.commit_list li:nth-child(odd),
.tag_list li:nth-child(odd),
@@ -434,6 +438,7 @@ table.list tr:hover td > a
{
color:white;
}

.commit_list li > a:first-child,
.tree_list li > a:first-child,
.tag_list li > a:first-child,
@@ -931,7 +936,7 @@ span.CONFLICTS {
line-height: 100%;
}

#commit {
#commit_block {
padding-top: 2em;
padding-left: 2em;
}
@@ -9,7 +9,7 @@
<div class="header">
<h3>
{{ splitted_message[0] }}
(<span class="commitid" title="{{ commitid }}">commit: {{ commitid|short }}
(commit: <span class="commitid" title="{{ commitid }}">{{ commitid|short }}
</span> - <a href="{{ url_for('view_tree', username=username,
repo=repo.name, identifier=commitid) }}">tree</a>)
{% if splitted_message|length > 1 %}
@@ -53,7 +53,7 @@ <h3>
<td>
{% for parent in commit.parents %}
<a href="{{ url_for('view_commit', username=username,
repo=repo.name, commitid=parent.oid.hex) }}">
repo=repo.name, commitid=parent.oid.hex) }}" class="commitid">
{{ parent.oid.hex }}
</a> <br />
{% endfor %}
@@ -39,7 +39,7 @@ <h2>
{{ data }}
</textarea>

<div id="commit">
<div id="commit_block">
<div>
{{ user.username | avatar(24) | safe }}
{{ user.fullname }}