by roundabout, Monday, 17 February 2025, 09:46:01 (1739785561), pushed by roundabout, Monday, 17 February 2025, 09:46:08 (1739785568)
Author identity: vlad <vlad.muntoiu@gmail.com>
12490b47b0f05bacd08804717133b9ac8ab8434e
static/style.css
@@ -709,3 +709,18 @@ small {
color: var(--color-primary-text);
text-decoration: underline;
}
.commit-card > .card-main {
text-wrap: wrap;
flex: 1 1 auto;
}
button, .button, input:is([type="button"], [type="submit"], [type="reset"]) {
text-align: center;
}
.commit-sha {
text-wrap: wrap;
overflow-wrap: anywhere;
word-break: break-all;
}
templates/repository/repo-commit.html
@@ -32,7 +32,7 @@
{% trans %}Author identity:{% endtrans %} <code>{{ data.owner_identity | harvester_protection | safe }}</code>
</p>
<code>{{ data.sha }}</code>
<code class="commit-sha">{{ data.sha }}</code>
<x-vbox>
{% for file in diff %}
templates/repository/repo-log.html
@@ -45,7 +45,7 @@
});
</script>
{% for commit in commits %}
<article class="card card-horizontal">
<article class="card card-horizontal commit-card">
<figure class="branch-icon">
<a href="/{{ commit.owner_name }}">
{% if "@" not in commit.owner_name %}
@@ -66,7 +66,7 @@
{% trans pusher_name=commit.pusher_name, profile_url=pusher_name | profile_url %}pushed by <a href="/{{ pusher_name }}">{{ pusher_name }}</a>,{% endtrans %}
{{ commit.receive_date|strftime("%A, %e %B %Y, %H:%M:%S") }}
</p>
<code>{{ commit.sha }}</code>
<code class="commit-sha">{{ commit.sha }}</code>
</section>
<section>
<x-buttonbox style="align-items: center; height: 100%;">