]> git.wh0rd.org - tt-rss.git/commitdiff
remove borders on radio button elements
authorAndrew Dolgov <fox@bah.spb.su>
Sat, 25 Feb 2006 04:47:55 +0000 (05:47 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sat, 25 Feb 2006 04:47:55 +0000 (05:47 +0100)
functions.php
tt-rss.css

index a4aefff62b08dee43f151f9d1328e1355da91810..b6490fac9c24dcd0057b0f2a0e5f1cd01049cb5e 100644 (file)
                                $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;";
 
                }
        }
index 507171893e59ac3b229ccad6384ba3fc1aebc0ff..a158bd190a615eb47400d43cf35a132c6156d77c 100644 (file)
@@ -989,3 +989,6 @@ div.cdmContent a:hover {
        color : black;
 }
 
+.noborder {
+       border-width : 0px;
+}