summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-25 05:47:55 +0100
committerAndrew Dolgov <[email protected]>2006-02-25 05:47:55 +0100
commit69654950d66cac6b15bbf60d444bd432141288a2 (patch)
treeaf86478d0435aa9d5fe4bb9e5eaa885b62bee648
parent1de2b92c16b2dd2e319635dd248f0e212174594b (diff)
remove borders on radio button elements
-rw-r--r--functions.php3
-rw-r--r--tt-rss.css3
2 files changed, 5 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index a4aefff62..b6490fac9 100644
--- a/functions.php
+++ b/functions.php
@@ -682,7 +682,8 @@
$sel .= " value=\"0\"";
}
- print "<input type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
+ print "<input class=\"noborder\"
+ type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
}
}
diff --git a/tt-rss.css b/tt-rss.css
index 507171893..a158bd190 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -989,3 +989,6 @@ div.cdmContent a:hover {
color : black;
}
+.noborder {
+ border-width : 0px;
+}