summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
+}