From d82c08a0446aa712a7d825e07f3d51796421b3a2 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Wed, 16 May 2007 03:30:57 +0200 Subject: Do not wrap filemode column in diffstat table The diffstat looks rather ugly when the filemode is wrapped to one char per line, so lets force it to not wrap. Signed-off-by: Lars Hjemli --- cgit.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cgit.css b/cgit.css index 5cf8d15..6c7f9c3 100644 --- a/cgit.css +++ b/cgit.css @@ -266,6 +266,10 @@ table.diffstat td { border: none; } +table.diffstat td.mode { + white-space: nowrap; +} + table.diffstat td span.modechange { padding-left: 1em; color: red; -- cgit v1.2.3-54-g00ecf ng' alt='cgit logo'/> index : cgit
Web front-end for git that you're looking at right now. Might have had a few additions from upstream.
summaryrefslogtreecommitdiffstatshomepage
path: root/tests/t0104-tree.sh
blob: 2e140f5939c1b9ac17a0987e2d550fc7d06ef099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh

test_description='Check content on tree page'
. ./setup.sh

test_expect_success 'generate bar/tree' 'cgit_url "bar/tree" >tmp'
test_expect_success 'find file-1' 'grep "file-1" tmp'
test_expect_success 'find file-50' 'grep "file-50" tmp'

test_expect_success 'generate bar/tree/file-50' 'cgit_url "bar/tree/file-50" >tmp'

test_expect_success 'find line 1' '
	grep "<a id=.n1. href=.#n1.>1</a>" tmp
'

test_expect_success 'no line 2' '
	! grep "<a id=.n2. href=.#n2.>2</a>" tmp
'

test_expect_success 'generate foo+bar/tree' 'cgit_url "foo%2bbar/tree" >tmp'

test_expect_success 'verify a+b link' '
	grep "/foo+bar/tree/a+b" tmp
'

test_expect_success 'generate foo+bar/tree?h=1+2' 'cgit_url "foo%2bbar/tree&h=1%2b2" >tmp'

test_expect_success 'verify a+b?h=1+2 link' '
	grep "/foo+bar/tree/a+b?h=1%2b2" tmp
'

test_done