Skip to content

Commit bba75ba

Browse files
committed
Adding a local static/css/base.css, and changing the table settings a bit in the mailing list pages to make the two header images end up on the same line. Needing to do this is related to the change to serving XHTML Transitional; if I take away the xml and transitional doctype declarations, the pre-change html worked fine.
- Legacy-Id: 569
1 parent 057503d commit bba75ba

4 files changed

Lines changed: 39 additions & 5 deletions

File tree

ietf/templates/mailinglists/list_approval_base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{% block content %}
2121
<table bgcolor="#88AED2" cellspacing="1" border="0" width="594">
2222
<tr><td>
23-
<table bgcolor="f3f8fd" cellpadding="3" cellspacing="0" border="0">
23+
<table bgcolor="f3f8fd" cellpadding="3" cellspacing="0" border="0" width="100%">
2424
<tr>
2525
<td><img src="/images/ietf_topleft.gif" border="0"><img src="/images/blue_title.
2626
gif" border="0"></td>

ietf/templates/mailinglists/list_toapprove.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<form action="." method="POST">
3030
<table bgcolor="#88AED2" cellspacing="1" border="0" width="594">
3131
<tr><td>
32-
<table bgcolor="f3f8fd" cellpadding="3" cellspacing="0" border="0">
32+
<table bgcolor="f3f8fd" cellpadding="3" cellspacing="0" border="0" width="100%">
3333
<tr>
3434
<td colspan="2"><img src="/images/ietf_topleft.gif" border="0"><img src="/images/blue_title.gif" border="0"></td>
3535
</tr>

ietf/templates/mailinglists/list_wizard_base.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
{% endblock %}
1010

1111
{% block head %}
12-
<link rel="stylesheet" type="text/css" href="http://www.ietf.org/css/base.css" />
12+
<link rel="stylesheet" type="text/css" href="/css/base.css" />
1313
{% endblock %}
1414

1515
{% block content %}
1616
<blockquote>
17-
<table bgcolor="#88AED2" cellspacing="1" border="0" width="594">
17+
<table bgcolor="#88AED2" cellspacing="1" border="0" width="598">
1818
<tr><td>
19-
<table bgcolor="#f3f8fd" cellpadding="3" cellspacing="0" border="0" width="100%">
19+
<table bgcolor="#f3f8fd" cellpadding="0" cellspacing="0" border="0" width="100%">
2020

2121
<tr>
2222
<td colspan="2"><img src="/images/ietf_topleft.gif" border="0"><img src="/images/blue_title.gif" border="0"></td>

static/css/base.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
body {
2+
margin:0;
3+
padding:0;
4+
font-family: Arial, sans-serif;
5+
font-size: 13px;
6+
color: #022D66;
7+
font-style: normal;
8+
}
9+
th {
10+
padding:6px 0px 10px 30px;
11+
line-height:1em;
12+
font-family: Arial, sans-serif;
13+
font-size: 1.0em;
14+
color: #333;
15+
16+
}
17+
td {text-decoration: none; color: #000000; font: 10pt arial;}
18+
td img { whitespace: nowrap; display:inline; }
19+
/* Links
20+
----------------------------------------------- */
21+
a:link, a:visited {
22+
border-bottom:1px dotted #69f;
23+
color:#36c;
24+
text-decoration:none;
25+
}
26+
a:visited {
27+
border-bottom-color:#969;
28+
color:#36c;
29+
}
30+
a:hover {
31+
border-bottom:1px solid #f00;
32+
color:#f00;
33+
}
34+
a.noline:link, a.noline:visited, a.noline:hover {border-style:none;}

0 commit comments

Comments
 (0)