From 4e36e1791f368d6e612bc70bc5a5d6ffe1692338 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 9 Jan 2014 12:17:39 +0100 Subject: [PATCH] theme: Fix coding style of the rounded tables. --- .../themes/ipfire/include/css/style-rounded.css | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/html/html/themes/ipfire/include/css/style-rounded.css b/html/html/themes/ipfire/include/css/style-rounded.css index f60f4f6c38..886d61f0f5 100644 --- a/html/html/themes/ipfire/include/css/style-rounded.css +++ b/html/html/themes/ipfire/include/css/style-rounded.css @@ -27,12 +27,7 @@ /* Table */ /* when using class='bordered' after tabletag */ -table { - *border-collapse: collapse; /* IE7 and lower */ - border-spacing: 0; -} - -.tbl th:first-child{ +.tbl th:first-child { -moz-border-radius: 6px 0 0 0; -webkit-border-radius: 6px 0 0 0; border-radius: 6px 0 0 0; @@ -44,25 +39,25 @@ table { border-radius: 0 6px 0 0; } -.tbl th:only-child{ +.tbl th:only-child { -moz-border-radius: 6px 6px 0 0; -webkit-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; } -.tbl tr:first-child td:first-child{ +.tbl tr:first-child td:first-child { -moz-border-radius: 6px 0 0 0; -webkit-border-radius: 6px 0 0 0; border-radius: 6px 0 0 0; } -.tbl tr:first-child td:last-child{ +.tbl tr:first-child td:last-child { -moz-border-radius: 0 6px 0 0; -webkit-border-radius: 0 6px 0 0; border-radius: 0 6px 0 0; } -.tbl tr:first-child td:only-child{ +.tbl tr:first-child td:only-child { -moz-border-radius: 6px 6px 0 0; -webkit-border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0; -- 2.39.5