From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id 42180eb8 for ; Sun, 10 Nov 2019 08:32:45 -0500 (EST) Date: Sun, 10 Nov 2019 08:32:45 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: cvsweb: Mattieu Baptiste wrote on ports@ on 2012-06-15 11:54:34: "I X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: <8d076e53a195e381@mandoc.bsd.lv> Log Message: ----------- Mattieu Baptiste wrote on ports@ on 2012-06-15 11:54:34: "I included the "cvsweb-nice-colors" patch to look like the official OpenBSD cvsweb, which I find nicer." https://marc.info/?l=openbsd-ports&m=133976163531264 Also found here: https://oss.segetech.com/integra/cvsweb-nice-colors.patch Modified Files: -------------- cvsweb/css: cvsweb.css Revision Data ------------- Index: cvsweb.css =================================================================== RCS file: /home/cvs/mandoc/cvsweb/css/cvsweb.css,v retrieving revision 4.1 retrieving revision 4.2 diff -Lcss/cvsweb.css -Lcss/cvsweb.css -u -p -r4.1 -r4.2 --- css/cvsweb.css +++ css/cvsweb.css @@ -1,6 +1,6 @@ /* CSS for FreeBSD-CVSweb */ /* $Id$ */ -/* $knu: css/cvsweb.css,v 2005/12/03 18:39:45 scop */ +/* $knu: css/cvsweb.css,v 1.16 2005/12/03 18:39:45 scop */ body { color: #000; @@ -48,26 +48,27 @@ input[type="submit"] { /* Directory table */ table.dir { - border-right: 1px solid #ccc; + border-right: 0px solid #ccc; } /* Cells */ table.dir * td { - border-left: 1px solid #ccc; - border-bottom: 1px solid #ccc; + border-left: 1px solid #fff; padding-left: 5px; padding-right: 5px; } /* Column headers */ table.dir * th { - background-color: #ffc; - border: thin outset; + background-color: #ccc; + border-left: 1px solid #fff; + border-bottom: 1px solid #fff; padding-left: 5px; padding-right: 5px; } /* Sorted column header */ table.dir * th.sorted { - background-color: #fc6; - border: thin inset; + background-color: #8f8; + border-left: 1px solid #fff; + border-bottom: 1px solid #fff; } /* Even rows */ table.dir * tr.even { @@ -75,7 +76,7 @@ table.dir * tr.even { } /* Odd rows */ table.dir * tr.odd { - background-color: #fff; + background-color: #cce; } /* File and dir name columns */ table.dir * td.file, table.dir * td.dir { @@ -90,6 +91,7 @@ table.dir * td.graph { } /* Age column */ table.dir * td.age { + color: #000; font-style: italic; white-space: nowrap; } -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv