Commit

Author:

Hash:

Timestamp:

+16 -26 +/-4 browse

Kevin Schoon [me@kevinschoon.com]

8a8e72ae7abeedd0ec5df9e87f81cc70ac047bb1

Sat, 17 May 2025 12:14:26 +0000 (6 months ago)

eliminate all collapse
1diff --git a/ayllu/templates/index.html b/ayllu/templates/index.html
2index 6b7d057..e391d3e 100644
3--- a/ayllu/templates/index.html
4+++ b/ayllu/templates/index.html
5 @@ -41,7 +41,7 @@
6 </div>
7 </td>
8 <td>{{ repo.description | truncate(50) }}</td>
9- <td class="collapse-xs">{{ repo.age }}</td>
10+ <td>{{ repo.age }}</td>
11 </tr>
12 {% endfor %}
13 </tbody>
14 diff --git a/ayllu/templates/log.html b/ayllu/templates/log.html
15index 26e4d9a..46462c3 100644
16--- a/ayllu/templates/log.html
17+++ b/ayllu/templates/log.html
18 @@ -15,7 +15,7 @@
19 <th>ID</th>
20 <th>Flags</th>
21 <th>Age</th>
22- <th class="collapse">Author</th>
23+ <th>Author</th>
24 <th>Message</th>
25 </tr>
26 </thead>
27 @@ -34,7 +34,7 @@
28 {% if commit.is_extended %}<div data-tooltip="Extended Commit">[E]</div>{% endif %}
29 </td>
30 <td>{{ commit.epoch | friendly_time }}</td>
31- <td class="collapse">
32+ <td>
33 <a href="/{{ collection }}/{{ name }}/log?username={{ commit.author_name | urlencode }}&email={{ commit.author_email | urlencode }}">{{ commit.author_name }}</a>
34 </td>
35 <td>{{ commit.summary | truncate(85) }}</td>
36 diff --git a/ayllu/templates/refs.html b/ayllu/templates/refs.html
37index 64c774b..3eed5b5 100644
38--- a/ayllu/templates/refs.html
39+++ b/ayllu/templates/refs.html
40 @@ -11,8 +11,8 @@
41 <thead>
42 <tr>
43 <th>Name</th>
44- <th class="collapse">Age</th>
45- <th class="collapse">Author</th>
46+ <th>Age</th>
47+ <th>Author</th>
48 <th>Archive</th>
49 </tr>
50 </thead>
51 @@ -22,8 +22,8 @@
52 <td>
53 <a href="/{{ collection }}/{{ name }}/refs/tag/{{ tag.name }}">{{ tag.name }}</a>
54 </td>
55- <td class="collapse">{{ tag.commit.epoch | friendly_time }}</td>
56- <td class="collapse">{{ tag.author_name }}</td>
57+ <td>{{ tag.commit.epoch | friendly_time }}</td>
58+ <td>{{ tag.author_name }}</td>
59 <td>
60 <a href="/{{ collection }}/{{ name }}/refs/archive/{{ tag.name }}.tar.gz"
61 role="button">{{ tag.name }}.tar.gz</a>
62 @@ -43,9 +43,9 @@
63 <thead>
64 <tr>
65 <th>Name</th>
66- <th class="collapse">Age</th>
67+ <th>Age</th>
68 <th>Commit</th>
69- <th class="collapse-xs">Message</th>
70+ <th>Message</th>
71 </tr>
72 </thead>
73 <tbody>
74 @@ -54,11 +54,11 @@
75 <td>
76 <a href="/{{ collection }}/{{ name }}/tree/{{ branch.name | urlencode }}">{{ branch.name }}</a>
77 </td>
78- <td class="collapse">{{ branch.head.epoch | friendly_time }}</td>
79+ <td>{{ branch.head.epoch | friendly_time }}</td>
80 <td>
81 <a href="/{{ collection }}/{{ name }}/commit/{{ branch.head.id }}">{{ branch.head.id | truncate(8) }}</a>
82 </td>
83- <td class="collapse-xs">{{ branch.head.summary | truncate(85) }}</td>
84+ <td>{{ branch.head.summary | truncate(85) }}</td>
85 </tr>
86 {% endfor %}
87 </tbody>
88 @@ -75,8 +75,8 @@
89 <tr>
90 <th>Commit</th>
91 <th>Author</th>
92- <th class="collapse">Age</th>
93- <th class="collapse-xs">Message</th>
94+ <th>Age</th>
95+ <th>Message</th>
96 </tr>
97 </thead>
98 <tbody>
99 @@ -86,8 +86,8 @@
100 <a href="/{{ collection }}/{{ name }}/commit/{{ note.commit.id }}">{{ note.commit.id | truncate(8) }}</a>
101 </td>
102 <td>{{ note.author_name }}</td>
103- <td class="collapse">{{ note.author_epoch | friendly_time }}</td>
104- <td class="collapse-xs">
105+ <td>{{ note.author_epoch | friendly_time }}</td>
106+ <td>
107 <pre>{{ note.message | truncate(32) }}</pre>
108 </td>
109 </tr>
110 diff --git a/ayllu/themes/base.css b/ayllu/themes/base.css
111index ae6d88a..a508869 100644
112--- a/ayllu/themes/base.css
113+++ b/ayllu/themes/base.css
114 @@ -350,7 +350,7 @@ li.active {
115 --nice-inner-radius: none;
116 }
117
118- @media (max-width: 800px) {
119+ @media (max-width: 600px) {
120 section.flex-group {
121 flex-direction: column;
122 }
123 @@ -359,14 +359,4 @@ li.active {
124 width: 100%;
125 height: auto;
126 }
127-
128- .collapse {
129- display: none;
130- }
131- }
132-
133- @media (max-width: 600px) {
134- .collapse-xs {
135- display: none;
136- }
137 }