add spec dependency
[ikiwiki] / doc / bugs / Patch:_Fix_error_in_style.css.mdwn
1 [[!tag patch css]]
2 [[!template id=gitbranch branch=sunny256/css-fix author="[[sunny256]]"]]
3
4 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` :
5
6     From e3b5eab2971109d18332fe44fd396322bb148cfc Mon Sep 17 00:00:00 2001
7     From: =?UTF-8?q?=C3=98yvind=20A.=20Holm?= <sunny@sunbase.org>
8     Date: Tue, 22 Feb 2011 18:14:21 +0100
9     Subject: [PATCH] style.css: Replace obsolete -moz-outline-style property with outline-style
10
11     The "-moz-outline-style" property generates an error at the W3C CSS
12     validator, saying the property doesn't exist. According to
13     <https://developer.mozilla.org/en/CSS/-moz-outline-style>, this property
14     is obsolete and the use of "outline-style" is preferred.
15     ---
16      doc/style.css |    2 +-
17      1 files changed, 1 insertions(+), 1 deletions(-)
18
19     diff --git a/doc/style.css b/doc/style.css
20     index 922b82a..fa413cf 100644
21     --- a/doc/style.css
22     +++ b/doc/style.css
23     @@ -485,7 +485,7 @@ a.openid_large_btn:focus {
24       outline: none;
25      }
26      a.openid_large_btn:focus {
27     -   -moz-outline-style: none;
28     +   outline-style: none;
29      }
30      .openid_selected {
31       border: 4px solid #DDD;
32     -- 
33     1.7.4.1.55.gdca3d
34
35 --[[sunny256]] 2011-02-22 20:11+0100
36
37 > [[Applied|done]]. --[[Joey]]