hgweb: fix border-radius for standards-based browsers
authorGijs Kruitbosch <gijskruitbosch@gmail.com>
Wed, 07 Oct 2015 20:19:20 +0100
changeset 26530 52642e12e7b3
parent 26529 7833b13b001f
child 26531 15ce78517d4b
hgweb: fix border-radius for standards-based browsers While here, remove an old gecko-specific property, as gecko has supported the unprefixed version for many years.
mercurial/templates/static/style-paper.css
--- a/mercurial/templates/static/style-paper.css	Wed Oct 07 21:28:43 2015 -0700
+++ b/mercurial/templates/static/style-paper.css	Wed Oct 07 20:19:20 2015 +0100
@@ -88,8 +88,8 @@
   background: #ffc;
   font-size: 70%;
   border: 1px solid yellow;
-  -moz-border-radius: 5px; /* this works only in camino/firefox */
   -webkit-border-radius: 5px; /* this is just for Safari */
+  border-radius: 5px;
 }
 
 form.search:hover div#hint { display: block; }