Mercurial > hg-stable
changeset 8505:dc50108ce188
spartan: simplify CSS colors (#xxxxxx -> #xxx)
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Mon, 18 May 2009 23:35:27 +0200 |
parents | e35d844f5afc |
children | 93a9f4a0e361 |
files | templates/static/style.css tests/test-hgweb-commands.out |
diffstat | 2 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/templates/static/style.css Mon May 18 23:27:51 2009 +0200 +++ b/templates/static/style.css Mon May 18 23:35:27 2009 +0200 @@ -2,16 +2,16 @@ .age { white-space:nowrap; } .date { white-space:nowrap; } .indexlinks { white-space:nowrap; } -.parity0 { background-color: #dddddd; } -.parity1 { background-color: #eeeeee; } -.lineno { width: 60px; color: #aaaaaa; font-size: smaller; +.parity0 { background-color: #ddd; } +.parity1 { background-color: #eee; } +.lineno { width: 60px; color: #aaa; font-size: smaller; text-align: right; padding-right:1em; } .plusline { color: green; } .minusline { color: red; } .atline { color: purple; } .annotate { font-size: smaller; text-align: right; padding-right: 1em; } .buttons a { - background-color: #666666; + background-color: #666; padding: 2pt; color: white; font-family: sans; @@ -25,7 +25,7 @@ } .metatag { - background-color: #888888; + background-color: #888; color: white; text-align: right; }
--- a/tests/test-hgweb-commands.out Mon May 18 23:27:51 2009 +0200 +++ b/tests/test-hgweb-commands.out Mon May 18 23:35:27 2009 +0200 @@ -884,16 +884,16 @@ .age { white-space:nowrap; } .date { white-space:nowrap; } .indexlinks { white-space:nowrap; } -.parity0 { background-color: #dddddd; } -.parity1 { background-color: #eeeeee; } -.lineno { width: 60px; color: #aaaaaa; font-size: smaller; +.parity0 { background-color: #ddd; } +.parity1 { background-color: #eee; } +.lineno { width: 60px; color: #aaa; font-size: smaller; text-align: right; padding-right:1em; } .plusline { color: green; } .minusline { color: red; } .atline { color: purple; } .annotate { font-size: smaller; text-align: right; padding-right: 1em; } .buttons a { - background-color: #666666; + background-color: #666; padding: 2pt; color: white; font-family: sans; @@ -907,7 +907,7 @@ } .metatag { - background-color: #888888; + background-color: #888; color: white; text-align: right; }