diff options
author | alecpl <alec@alec.pl> | 2010-03-23 14:55:13 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-03-23 14:55:13 +0000 |
commit | 9224c8a4cb4f78cc86a7339d472e35e741aff754 (patch) | |
tree | 73a781d38243b24858d1efe7260abe5866964c12 /skins/default/addressbook.css | |
parent | d50b857af4841078380b8abd9cfffbd642e1a001 (diff) |
- don't use quotes in background url specification
Diffstat (limited to 'skins/default/addressbook.css')
-rw-r--r-- | skins/default/addressbook.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/default/addressbook.css b/skins/default/addressbook.css index 6badf9058..ce82a1594 100644 --- a/skins/default/addressbook.css +++ b/skins/default/addressbook.css @@ -23,7 +23,7 @@ padding: 0; margin-right: 10px; overflow: hidden; - background: url('images/abook_toolbar.png') 0 0 no-repeat transparent; + background: url(images/abook_toolbar.png) 0 0 no-repeat transparent; opacity: 0.99; /* this is needed to make buttons appear correctly in Chrome */ } @@ -69,7 +69,7 @@ #abooktoolbar span.separator { width: 5px; - background-image: url('images/abook_toolbar.png'); + background-image: url(images/abook_toolbar.png); background-position: -162px 0; } |