author | Lars Hjemli <hjemli@gmail.com> | 2007-05-14 09:10:59 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-14 09:13:18 (UTC) |
commit | 9fb53af215639fcd3bfb876fa9c8bac221244bdf (patch) (unidiff) | |
tree | 3ebbebebed59b53066e16720a32e1b34c54dc609 /cgit.css | |
parent | 4fdf571c888fd38ae362684c429a3bdf24240ef7 (diff) | |
download | cgit-9fb53af215639fcd3bfb876fa9c8bac221244bdf.zip cgit-9fb53af215639fcd3bfb876fa9c8bac221244bdf.tar.gz cgit-9fb53af215639fcd3bfb876fa9c8bac221244bdf.tar.bz2 |
Add log filtering by path and link to it from tree view
This enables path-filtering in log-view, and adds a link per entry in
tree-view to show the log for each file/directory.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.css | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -160,64 +160,69 @@ td#archivelist table th { | |||
160 | } | 160 | } |
161 | 161 | ||
162 | td#content { | 162 | td#content { |
163 | padding: 1em 0.5em; | 163 | padding: 1em 0.5em; |
164 | } | 164 | } |
165 | 165 | ||
166 | div#blob { | 166 | div#blob { |
167 | border: solid 1px black; | 167 | border: solid 1px black; |
168 | } | 168 | } |
169 | 169 | ||
170 | div.error { | 170 | div.error { |
171 | color: red; | 171 | color: red; |
172 | font-weight: bold; | 172 | font-weight: bold; |
173 | margin: 1em 2em; | 173 | margin: 1em 2em; |
174 | } | 174 | } |
175 | 175 | ||
176 | td.ls-blob, td.ls-dir, td.ls-mod { | 176 | td.ls-blob, td.ls-dir, td.ls-mod { |
177 | font-family: monospace; | 177 | font-family: monospace; |
178 | } | 178 | } |
179 | 179 | ||
180 | div.ls-dir a { | 180 | div.ls-dir a { |
181 | font-weight: bold; | 181 | font-weight: bold; |
182 | } | 182 | } |
183 | 183 | ||
184 | th.filesize, td.filesize { | 184 | th.filesize, td.filesize { |
185 | text-align: right; | 185 | text-align: right; |
186 | } | 186 | } |
187 | 187 | ||
188 | td.filesize { | 188 | td.filesize { |
189 | font-family: monospace; | 189 | font-family: monospace; |
190 | } | 190 | } |
191 | 191 | ||
192 | td.links { | ||
193 | font-size: 80%; | ||
194 | padding-left: 2em; | ||
195 | } | ||
196 | |||
192 | td.filemode { | 197 | td.filemode { |
193 | font-family: monospace; | 198 | font-family: monospace; |
194 | } | 199 | } |
195 | 200 | ||
196 | td.blob { | 201 | td.blob { |
197 | white-space: pre; | 202 | white-space: pre; |
198 | font-family: monospace; | 203 | font-family: monospace; |
199 | background-color: white; | 204 | background-color: white; |
200 | } | 205 | } |
201 | 206 | ||
202 | table.nowrap td { | 207 | table.nowrap td { |
203 | white-space: nowrap; | 208 | white-space: nowrap; |
204 | } | 209 | } |
205 | 210 | ||
206 | table.commit-info { | 211 | table.commit-info { |
207 | border-collapse: collapse; | 212 | border-collapse: collapse; |
208 | margin-top: 1.5em; | 213 | margin-top: 1.5em; |
209 | } | 214 | } |
210 | 215 | ||
211 | table.commit-info th { | 216 | table.commit-info th { |
212 | text-align: left; | 217 | text-align: left; |
213 | font-weight: normal; | 218 | font-weight: normal; |
214 | padding: 0.1em 1em 0.1em 0.1em; | 219 | padding: 0.1em 1em 0.1em 0.1em; |
215 | } | 220 | } |
216 | 221 | ||
217 | table.commit-info td { | 222 | table.commit-info td { |
218 | font-weight: normal; | 223 | font-weight: normal; |
219 | padding: 0.1em 1em 0.1em 0.1em; | 224 | padding: 0.1em 1em 0.1em 0.1em; |
220 | } | 225 | } |
221 | 226 | ||
222 | div.commit-subject { | 227 | div.commit-subject { |
223 | font-weight: bold; | 228 | font-weight: bold; |