Skip to content

Commit 027f7c9

Browse files
committed
Report styles cleanup; Add -c alias for -hide-unchanged option; Add -move-styles option to use shared styles directory
1 parent 0be34c3 commit 027f7c9

File tree

6 files changed

+101
-68
lines changed

6 files changed

+101
-68
lines changed

modules/Internals/Fonts/OpenSans.ttf

33.2 KB
Binary file not shown.

modules/Internals/Fonts/VeraMono.ttf

48.1 KB
Binary file not shown.

modules/Internals/Styles/Index.css

+25-18
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,51 @@
1+
@font-face {
2+
font-family:"Open Sans";
3+
src:url("../fonts/OpenSans.ttf") format("truetype");
4+
}
5+
6+
@font-face {
7+
font-family:"VeraMono";
8+
src:url("../fonts/VeraMono.ttf") format("truetype");
9+
}
10+
111
body {
2-
font-family:Arial, sans-serif;
12+
font-family:'Open Sans', Arial, sans-serif;
313
background-color:White;
414
color:Black;
515
}
616
hr {
7-
color:Black;
8-
background-color:Black;
9-
height:1px;
17+
color:#ececec;
18+
background-color:#ececec;
19+
height:3px;
1020
border:0;
1121
}
1222
h1 {
13-
margin-bottom:0px;
14-
padding-bottom:0px;
1523
font-size:1.625em;
24+
text-decoration:underline;
1625
}
1726
h2 {
18-
margin-bottom:0px;
19-
padding-bottom:0px;
2027
font-size:1.25em;
2128
white-space:nowrap;
29+
text-decoration:underline;
2230
}
2331
table.summary {
2432
border-collapse:collapse;
25-
border:1px outset black;
33+
border:1px solid Gray;
34+
}
35+
table.summary td, table.summary th {
36+
border:1px solid Gray;
37+
white-space:nowrap;
2638
}
2739
table.summary th {
28-
background-color:#eeeeee;
40+
background-color:#EEEEEE;
2941
font-weight:bold;
3042
text-align:left;
31-
font-size:0.94em;
32-
white-space:nowrap;
33-
border:1px inset gray;
3443
padding: 3px;
3544
}
3645
table.summary td {
3746
text-align:right;
38-
white-space:nowrap;
39-
border:1px inset gray;
4047
padding: 3px 5px 3px 5px;
48+
font-family:'VeraMono', Consolas, 'DejaVu Sans Mono', 'Droid Sans Mono', Monaco, Monospace;
4149
}
4250
table.summary td.left {
4351
text-align:left;
@@ -47,8 +55,6 @@ table.summary th.left {
4755
font-weight:100;
4856
}
4957
table.summary td.f_path {
50-
font-size:0.875em;
51-
font-family:Consolas, 'DejaVu Sans Mono', 'Droid Sans Mono', Monaco, Monospace;
5258
white-space:normal;
5359
word-wrap:break-word;
5460
max-width:57em;
@@ -89,5 +95,6 @@ div.p_list {
8995
font-size:0.69em;
9096
}
9197
.footer {
92-
font-size:0.75em;
98+
font-size:1.2em;
99+
margin-top:23px;
93100
}

modules/Internals/Styles/View.css

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
body {
22
margin:0.4em;
3-
font-size:0.86em;
43
}
54

65
.view {

modules/Internals/Tools/rfcdiff-1.41-CUSTOM.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,10 @@ function header(file1, file2) {
316316
" <meta http-equiv=\"Content-Style-Type\" content=\"text/css\" /> \n" \
317317
" <title>Diff: %s - %s</title> \n" \
318318
" <style type=\"text/css\"> \n" \
319-
" body { font-family: Arial, sans-serif; font-size:16px; margin: 0.4ex; margin-right: auto; } \n" \
319+
" body { font-family: Arial, sans-serif; margin: 0.4ex; margin-right: auto; } \n" \
320320
" table { width: 100%; } \n" \
321321
" tr { } \n" \
322-
" td { white-space: pre; font-family: Consolas, \"DejaVu Sans Mono\", \"Droid Sans Mono\", Monaco, Monospace; vertical-align: top; font-size: 0.86em;} \n" \
322+
" td { white-space: pre; font-family: Consolas, \"DejaVu Sans Mono\", \"Droid Sans Mono\", Monaco, Monospace; vertical-align: top;} \n" \
323323
" th { font-size: 0.86em; } \n" \
324324
" .small { font-size: 0.6em; font-style: italic; font-family: Verdana, Helvetica, sans-serif; } \n" \
325325
" .left { background-color: #EEE; } \n" \
@@ -345,7 +345,7 @@ function header(file1, file2) {
345345
"</head> \n" \
346346
"<body > \n" \
347347
" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\"> \n" \
348-
" <tr bgcolor=\"#404040\"><th></th><th style=\"color:#fff;\">%s&nbsp;%s&nbsp;</th><th> </th><th style=\"color:#fff;\">&nbsp;%s&nbsp;%s</th><th></th></tr> \n" \
348+
" <tr bgcolor=\"orange\"><th></th><th>%s&nbsp;%s&nbsp;</th><th> </th><th>&nbsp;%s&nbsp;%s</th><th></th></tr> \n" \
349349
"", file1, file2, prev, url1, url2, nxt;
350350
}
351351

0 commit comments

Comments
 (0)