# HG changeset patch # User Gijs Kruitbosch # Date 1444245560 -3600 # Node ID 52642e12e7b3cf1e82f0f8dea4c092e9b7bdb2e4 # Parent 7833b13b001f35a99bf63ac36d3b272e74b65384 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. diff -r 7833b13b001f -r 52642e12e7b3 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; }