aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Patch:_Fix_error_in_style.css.mdwn
diff options
context:
space:
mode:
authorsunny256 <sunny256@web>2011-02-22 19:17:38 +0000
committerJoey Hess <joey@kitenet.net>2011-02-22 19:17:38 +0000
commita3bcff502de4b63a056bd07859d3a90c6f53eee7 (patch)
tree61cd89cff3ebeac22838c6ca8d6be838a5685b3b /doc/bugs/Patch:_Fix_error_in_style.css.mdwn
parent6e330849d590a2ba0268c1308b3e13e8d67c4bab (diff)
downloadikiwiki-a3bcff502de4b63a056bd07859d3a90c6f53eee7.tar
ikiwiki-a3bcff502de4b63a056bd07859d3a90c6f53eee7.tar.gz
Add patch for CSS fix
Diffstat (limited to 'doc/bugs/Patch:_Fix_error_in_style.css.mdwn')
-rw-r--r--doc/bugs/Patch:_Fix_error_in_style.css.mdwn35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/bugs/Patch:_Fix_error_in_style.css.mdwn b/doc/bugs/Patch:_Fix_error_in_style.css.mdwn
new file mode 100644
index 000000000..8958d663c
--- /dev/null
+++ b/doc/bugs/Patch:_Fix_error_in_style.css.mdwn
@@ -0,0 +1,35 @@
+[[!tag patch css]]
+[[!template id=gitbranch branch=sunny256/css-fix author="[[sunny256]]"]]
+
+This trivial patch fixes an error in `styles.css` and is ready to be merged from the `css-fix` branch at `git://github.com/sunny256/ikiwiki.git` :
+
+ From e3b5eab2971109d18332fe44fd396322bb148cfc Mon Sep 17 00:00:00 2001
+ From: =?UTF-8?q?=C3=98yvind=20A.=20Holm?= <sunny@sunbase.org>
+ Date: Tue, 22 Feb 2011 18:14:21 +0100
+ Subject: [PATCH] style.css: Replace obsolete -moz-outline-style property with outline-style
+
+ The "-moz-outline-style" property generates an error at the W3C CSS
+ validator, saying the property doesn't exist. According to
+ <https://developer.mozilla.org/en/CSS/-moz-outline-style>, this property
+ is obsolete and the use of "outline-style" is preferred.
+ ---
+ doc/style.css | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+ diff --git a/doc/style.css b/doc/style.css
+ index 922b82a..fa413cf 100644
+ --- a/doc/style.css
+ +++ b/doc/style.css
+ @@ -485,7 +485,7 @@ a.openid_large_btn:focus {
+ outline: none;
+ }
+ a.openid_large_btn:focus {
+ - -moz-outline-style: none;
+ + outline-style: none;
+ }
+ .openid_selected {
+ border: 4px solid #DDD;
+ --
+ 1.7.4.1.55.gdca3d
+
+--[[sunny256]] 2011-02-22 20:11+0100