- From: Sam Ruby via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 29 Apr 2010 20:25:32 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/status
In directory hutz:/tmp/cvs-serv25196
Modified Files:
issue-status.html
Log Message:
A little bit of style
Index: issue-status.html
===================================================================
RCS file: /sources/public/html5/status/issue-status.html,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -d -r1.164 -r1.165
--- issue-status.html 29 Apr 2010 08:06:25 -0000 1.164
+++ issue-status.html 29 Apr 2010 20:25:30 -0000 1.165
@@ -2,10 +2,8 @@
<title>Change Proposal Status</title>
<meta charset=utf-8>
<style>
-table, th, td {
-border: 1px solid black;
-border-collapse: collapse;
-}
+table {width: 98%; margin-left: 1%; padding: 0; border-spacing: 0;}
+tr, th, td { border: 1px solid black; border-style: outset;}
th, td { padding: 0.3em; vertical-align: top; }
h2 { text-align: center; }
th { cursor: pointer; padding-left: 1.5em; padding-right: 1.5em; }
@@ -14,6 +12,34 @@
th[aria-sort=ascending]:after { content: '\2B07'; }
th[aria-sort=descending]:after { content: '\2B06'; }
td[id] { white-space: pre; }
+th, tr:nth-child(3n) {background: #dee}
+a:visited, a:link, h2 {text-decoration: none; color: #0B5B9D}
+a:hover {background-color: #0B4B9D; border: 1px dotted #000; color: white;
+ margin: 0; padding: 1px 2px}
+
+table th:first-child {
+ border-radius: 1em 0 0 0;
+ -webkit-border-top-left-radius: 1em;
+ -moz-border-radius: 1em 0 0 0;
+}
+
+table th:last-child {
+ border-radius: 0 1em 0 0;
+ -webkit-border-top-right-radius: 1em;
+ -moz-border-radius: 0 1em 0 0;
+}
+
+table tr:last-child > td:first-child {
+ border-radius: 0 0 0 1em;
+ -webkit-border-bottom-left-radius: 1em;
+ -moz-border-radius: 0 0 0 1em;
+}
+
+table tr:last-child > td:last-child {
+ border-radius: 0 0 1em 0;
+ -webkit-border-bottom-right-radius: 1em;
+ -moz-border-radius: 0 0 1em 0;
+}
</style>
<h2>Change Proposal Status</h2>
Received on Thursday, 29 April 2010 20:25:34 UTC