Skip to content
Snippets Groups Projects
Commit 52642e12e7b3 authored by Gijs Kruitbosch's avatar Gijs Kruitbosch
Browse files

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.
parent 7833b13b001f
No related merge requests found
......@@ -88,5 +88,4 @@
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 */
......@@ -92,4 +91,5 @@
-webkit-border-radius: 5px; /* this is just for Safari */
border-radius: 5px;
}
form.search:hover div#hint { display: block; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment