git-repo-styles

Design documents for git.pablopie.xyz ✏️

Commit
2f33cf7ce0e8a200918fad43647f99dbea8d1517
Parent
0da0c467d44128ca64be1bcf5bdc54fb99e7eff8
Author
Pablo <pablo-escobar@riseup.net>
Date

Made it so that the number of insertions and delitions in the diffstat is displayed through text instead of visually

This was previously displayed by concatenating '+' and '-' characters

Diffstat

1 file changed, 4 insertions, 2 deletions

Status File Name N° Changes Insertions Deletions
Modified commit.html 6 4 2
diff --git a/commit.html b/commit.html
@@ -48,7 +48,8 @@
 <td>Mode</td>
 <td>File Name</td>
 <td>N&deg; Changes</td>
-<td align="right">Insertions/Deletions</td>
+<td>Insertions</td>
+<td align="right">Deletions</td>
 </tr>
 </thead>
 <tbody>
@@ -56,7 +57,8 @@
 <td class="M">M</td>
 <td><a href="#h0">stagit-index.c</a></td>
 <td>2</td>
-<td align="right"><span class="i">+</span><span class="d">-</span></td>
+<td>1</td>
+<td>1</td>
 </tr>
 </tbody>
 </table>