git://git.cassowary.me
/
gitweb-theme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5f15db
)
better commit table display on small screens
author
cassowary
<cassowary@cassowary.me>
Mon, 27 Jul 2026 21:30:51 +0000
(14:30 -0700)
committer
cassowary
<cassowary@cassowary.me>
Mon, 27 Jul 2026 21:30:51 +0000
(14:30 -0700)
static/gitweb-site.css
patch
|
blob
|
history
diff --git
a/static/gitweb-site.css
b/static/gitweb-site.css
index
45682b7
..
fd3bd13
100644
(file)
--- a/
static/gitweb-site.css
+++ b/
static/gitweb-site.css
@@
-39,3
+39,27
@@
table.project_list,
div.page_body {
flex: 1 0 auto;
}
+
+table.shortlog {
+ tr {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+
+ td:nth-child(1) {
+ flex: 1 0 25%;
+ }
+
+ td:nth-child(2) {
+ flex: 1 0 75%;
+ }
+
+ td:nth-child(3) {
+ flex: 1 0 100%;
+ }
+
+ td:nth-child(4) {
+ flex: 1 0 100%;
+ }
+ }
+}