##// END OF EJS Templates
hgweb: improve look-n-feel of changelog nagivation
TK Soh -
r1425:8fe4116b default
parent child Browse files
Show More
@@ -1,36 +1,36 b''
1 1 #header#
2 2 <title>#repo|escape#: changelog</title>
3 3 <link rel="alternate" type="application/rss+xml"
4 4 href="?cmd=changelog;style=rss" title="RSS feed for #repo|escape#">
5 5 </head>
6 6 <body>
7 7
8 8 <div class="buttons">
9 9 <a href="?cmd=tags">tags</a>
10 10 <a href="?mf=#manifest|short#;path=/">manifest</a>
11 11 <a type="application/rss+xml" href="?style=rss">rss</a>
12 12 </div>
13 13
14 14 <h2>changelog for #repo|escape#</h2>
15 15
16 16 <form action="#">
17 17 <p>
18 18 <label for="search1">search:</label>
19 19 <input type="hidden" name="cmd" value="changelog">
20 20 <input name="rev" id="search1" type="text" size="30">
21 navigate: <small>#changenav%naventry#</small>
21 navigate: <small class="navigate">#changenav%naventry#</small>
22 22 </p>
23 23 </form>
24 24
25 25 #entries%changelogentry#
26 26
27 27 <form action="#">
28 28 <p>
29 29 <label for="search2">search:</label>
30 30 <input type="hidden" name="cmd" value="changelog">
31 31 <input name="rev" id="search2" type="text" size="30">
32 navigate: <small>#changenav%naventry#</small>
32 navigate: <small class="navigate">#changenav%naventry#</small>
33 33 </p>
34 34 </form>
35 35
36 36 #footer#
@@ -1,73 +1,79 b''
1 1 Content-type: text/html
2 2
3 3 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
4 4 <html>
5 5 <head>
6 6 <style type="text/css">
7 7 <!--
8 8 a { text-decoration:none; }
9 9 .parity0 { background-color: #dddddd; }
10 10 .parity1 { background-color: #eeeeee; }
11 11 .lineno { width: 60px; color: #aaaaaa; font-size: smaller;
12 12 text-align: right; padding-right:1em; }
13 13 .plusline { color: green; }
14 14 .minusline { color: red; }
15 15 .atline { color: purple; }
16 16 .annotate { font-size: smaller; text-align: right; padding-right: 1em; }
17 17 .buttons a {
18 18 background-color: #666666;
19 19 padding: 2pt;
20 20 color: white;
21 21 font-family: sans;
22 22 font-weight: bold;
23 23 }
24 .navigate a {
25 background-color: #ccc;
26 padding: 2pt;
27 font-family: sans;
28 color: black;
29 }
24 30
25 31 .metatag {
26 32 background-color: #888888;
27 33 color: white;
28 34 text-align: right;
29 35 }
30 36
31 37 /* Common */
32 38 pre { margin: 0; }
33 39
34 40 .logo {
35 41 background-color: #333;
36 42 padding: 4pt;
37 43 margin: 8pt 0 8pt 8pt;
38 44 font-family: sans;
39 45 font-size: 60%;
40 46 color: white;
41 47 float: right;
42 48 clear: right;
43 49 text-align: left;
44 50 }
45 51
46 52 .logo a {
47 53 font-weight: bold;
48 54 font-size: 150%;
49 55 color: #999;
50 56 }
51 57
52 58 /* Changelog entries */
53 59 .changelogEntry { width: 100%; }
54 60 .changelogEntry th { font-weight: normal; text-align: right; vertical-align: top; }
55 61 .changelogEntry th.age, .changelogEntry th.firstline { font-weight: bold; }
56 62 .changelogEntry th.firstline { text-align: left; width: inherit; }
57 63
58 64 /* Tag entries */
59 65 #tagEntries { list-style: none; margin: 0; padding: 0; }
60 66 #tagEntries .tagEntry { list-style: none; margin: 0; padding: 0; }
61 67 #tagEntries .tagEntry span.node { font-family: monospace; }
62 68
63 69 /* Changeset entry */
64 70 #changesetEntry { }
65 71 #changesetEntry th { font-weight: normal; background-color: #888; color: #fff; text-align: right; }
66 72 #changesetEntry th.files, #changesetEntry th.description { vertical-align: top; }
67 73
68 74 /* File diff view */
69 75 #filediffEntry { }
70 76 #filediffEntry th { font-weight: normal; background-color: #888; color: #fff; text-align: right; }
71 77
72 78 -->
73 79 </style>
General Comments 0
You need to be logged in to leave comments. Login now