Hi,
I had a small problem with the rounded corners not being displayed for panels on my localhost, but they were OK on my live site. I eventually found that it was a very simple fix. The path on my localhost for this particular site contained a space in one of the directories. My solution was therefore to add quotes around the generated css in plugins/styles/corners/rounded_corners.inc. For example, the current version has:
background: url($url/shadow-t.png) repeat-x 0 top;
whereas it is safer and more generic to have:
background: url('$url/shadow-t.png') repeat-x 0 top;
to cater for the cases where the url contains a blank.
I will attach a patch for 6.x-3.x-dev to make this change in the six places in plugins/styles/corners/rounded_corners.inc
Great modules, CTools and Panels. So slick and powerful, very helpful for developers. Thank you.
Jonathan
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | _823216.panels.quote_round_url.d6.patch | 1.32 KB | jonathan1055 |
Comments
Comment #1
jonathan1055 commentedHere's a patch against dev dated 8th June.
Comment #2
merlinofchaos commentedSeems reasonable. Committed.
Comment #3
jonathan1055 commentedThanks.