From fbda0c5c7facef230cccb8220d97199fefc789e3 Mon Sep 17 00:00:00 2001 From: Tim Gerundt Date: Fri, 7 Jan 2011 14:53:52 +0100 Subject: [PATCH] Web: Add separator to tab items --- htdocs/site/css/all.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/htdocs/site/css/all.css b/htdocs/site/css/all.css index b889168ee..39f445e75 100644 --- a/htdocs/site/css/all.css +++ b/htdocs/site/css/all.css @@ -43,8 +43,14 @@ a:active { color:#369; text-decoration:none; } #tabs ul li { display: inline; margin: 0; - padding: 0; - padding-right: .5em; + padding: 0 .5em; + border-right: 1px solid black; +} +#tabs ul li:first-child { + padding-left: 0; +} +#tabs ul li:last-child { + border: none; } #tabs a:link { color:#eee; text-decoration:none; } #tabs a:visited { color:#eee; text-decoration:none; }