summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Morris <paulwmorris@gmail.com>2015-02-09 22:12:57 -0500
committerJames Lowe <pkx166h@gmail.com>2015-02-17 21:14:08 +0000
commita6f369ae2efe399ef9644a702d98187e93129a87 (patch)
tree886e06e8bdac42ca4ae47d15b2d6d7fb1ffa65e6
parent0fb68b6e1f4bbc90e173528a2f25a0672b04cd98 (diff)
Web: CSS: remove vendor prefixed border-radius
Issue 4287 No need for these anymore: -moz-border-radius -webkit-border-radius
-rw-r--r--Documentation/css/lilypond-manuals.css6
-rw-r--r--Documentation/css/lilypond-website.css20
2 files changed, 2 insertions, 24 deletions
diff --git a/Documentation/css/lilypond-manuals.css b/Documentation/css/lilypond-manuals.css
index 8950b847a7..04a6877d8d 100644
--- a/Documentation/css/lilypond-manuals.css
+++ b/Documentation/css/lilypond-manuals.css
@@ -513,8 +513,7 @@ div#search p, div#search form {
padding: 0;
border: 1px solid green;
/* Experimental rounded corners */
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
+ border-radius: 10px;
margin: 1em;
}
@@ -532,7 +531,6 @@ body.contributor .warning { border-color: #000000; }
padding: 0;
border: 1px solid green;
/* Experimental rounded corners */
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
+ border-radius: 10px;
margin: 0.5em 0.5em 2em 3em;
}
diff --git a/Documentation/css/lilypond-website.css b/Documentation/css/lilypond-website.css
index 032feebdd9..60c0f815a4 100644
--- a/Documentation/css/lilypond-website.css
+++ b/Documentation/css/lilypond-website.css
@@ -75,10 +75,6 @@ div#tocframe {
font-size: 100%;
line-height: 1;
padding: 0;
- -moz-border-radius-bottomleft: 7px;
- -moz-border-radius-bottomright: 7px;
- -webkit-border-bottom-left-radius: 7px;
- -webkit-border-bottom-right-radius: 7px;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
margin: 0;
@@ -96,8 +92,6 @@ div#tocframe {
}
#tocframe > ul:first-child > li:first-child a {
- -moz-border-radius-bottomleft: 7px;
- -webkit-border-bottom-left-radius: 7px;
border-bottom-left-radius: 7px;
}
@@ -107,8 +101,6 @@ div#tocframe {
}
#tocframe > ul:first-child > li:last-child {
- -moz-border-radius-bottomright: 7px;
- -webkit-border-bottom-right-radius: 7px;
border-bottom-right-radius: 7px;
}
@@ -137,8 +129,6 @@ div#tocframe {
padding: 0.1em 0.1em 0.1em 0.6em;
border: 0;
margin: 0;
- -moz-border-radius: 7px;
- -webkit-border-radius: 7px;
border-radius: 7px;
}
@@ -194,20 +184,12 @@ div#tocframe {
}
#tocframe .toc .toc li:first-child a {
- -moz-border-radius-topleft: 7px;
- -moz-border-radius-bottomleft: 7px;
- -webkit-border-top-left-radius: 7px;
- -webkit-border-bottom-left-radius: 7px;
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
border-left: 1px solid rgba(85, 130, 70, 0.25);
}
#tocframe .toc .toc li:last-child a {
- -moz-border-radius-topright: 7px;
- -moz-border-radius-bottomright: 7px;
- -webkit-border-top-right-radius: 7px;
- -webkit-border-bottom-right-radius: 7px;
border-top-right-radius: 7px;
border-bottom-right-radius: 7px;
}
@@ -888,8 +870,6 @@ div.color4 h3 {
padding: 0;
border: 1px solid green;
/* Experimental rounded corners */
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
border-radius: 10px;
margin: 1em;
}