comparison mercurial/templates/static/style-paper.css @ 26530:52642e12e7b3

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.
author Gijs Kruitbosch <gijskruitbosch@gmail.com>
date Wed, 07 Oct 2015 20:19:20 +0100
parents d53212d70893
children 93a3687a94d7
comparison
equal deleted inserted replaced
26529:7833b13b001f 26530:52642e12e7b3
86 width: 190px; 86 width: 190px;
87 padding: 5px; 87 padding: 5px;
88 background: #ffc; 88 background: #ffc;
89 font-size: 70%; 89 font-size: 70%;
90 border: 1px solid yellow; 90 border: 1px solid yellow;
91 -moz-border-radius: 5px; /* this works only in camino/firefox */
92 -webkit-border-radius: 5px; /* this is just for Safari */ 91 -webkit-border-radius: 5px; /* this is just for Safari */
92 border-radius: 5px;
93 } 93 }
94 94
95 form.search:hover div#hint { display: block; } 95 form.search:hover div#hint { display: block; }
96 96
97 a { text-decoration:none; } 97 a { text-decoration:none; }