July 13, 2017: KDE Applications 17.08 Dependency Freeze

2017-07-10 Thread Albert Astals Cid
So what the subject says, get your dependencies in ASAP. Cheers, Albert

Re: Need HTML/CSS help for Konqueror's about page

2017-07-10 Thread Jumpei Ogawa
Hi David, I quickly investigate the code on Firefox. I guess self-closing div () might be the cause. At least it looks working fine on Firefox. Here's diff: diff --git a/about.html b/about.html index 0d5b31a..a793779 100644 --- a/about.html +++ b/about.html @@ -20,9 +20,8 @@ - - -

Re: Need HTML/CSS help for Konqueror's about page

2017-07-10 Thread Grzegorz Szymaszek
Hello, It seems Chromium interprets the following (lines 23–24): like this: In HTML, a div must have both opening and closing tags, so you should change the original code to: to make it render correctly. You will face the same problem in lines 101 and 104. Other issues: 1. kde_inf

Re: Need HTML/CSS help for Konqueror's about page

2017-07-10 Thread David Faure
On lundi 10 juillet 2017 13:25:52 CEST Jumpei Ogawa wrote: > Hi David, > > I quickly investigate the code on Firefox. > I guess self-closing div () might be the cause. Thanks to both you and Grzegorz, it works now indeed. -- David Faure, fa...@kde.org, http://www.davidfaure.fr Working on KDE F

Re: Need HTML/CSS help for Konqueror's about page

2017-07-10 Thread Wolfgang Bauer
Am Montag, 10. Juli 2017, 11:11:39 schrieb David Faure: > I'm porting the Konqueror about page from KHTML to WebEngine, I suppose the reason is to fix the icons? The problem in that case is that khtml doesn't support SVG, a quick fix would be this: https://build.opensuse.org/package/view_file/ho

Re: Need HTML/CSS help for Konqueror's about page

2017-07-10 Thread Yunhe Guo
I think I can do it this evening. I am a front end web developer. 2017年7月10日 12:12,"David Faure" 写道: Hello there, I'm porting the Konqueror about page from KHTML to WebEngine, and it turns out that the same CSS/HTML doesn't render the same in both engines. In WebEngine (and Firefox, for that ma

Need HTML/CSS help for Konqueror's about page

2017-07-10 Thread David Faure
Hello there, I'm porting the Konqueror about page from KHTML to WebEngine, and it turns out that the same CSS/HTML doesn't render the same in both engines. In WebEngine (and Firefox, for that matter) it's all squished to the left of the page. Can someone with CSS/HTML knowledge send me a modif