Ticket #803 (closed Enhancement: fixed)
white.css cleanup and improvements
| Reported by: | Simek | Owned by: | davea |
|---|---|---|---|
| Priority: | Minor | Milestone: | Undetermined |
| Component: | Web - Project | Version: | |
| Keywords: | patch CSS | Cc: |
Description
Changelog for white.css:
- added support for KHTML and CSS 3 border radius
- fixed WebKit? border radius for postheader and postfooter (only Mozilla border radius attribute support short form)
- deleted not needed px unit for 0 value (it doesn't matter, it's always 0)
- some tags with same attributes and values are mergered
- some hex color valueas was replaced with shorter form
Attachments
Change History
comment:1 follow-up: ↓ 5 Changed 3 years ago by Nicolas
Like I've said before: someone give Simek a SVN branch! Posting dozens of patches like in #716 isn't really practical.
comment:2 follow-up: ↓ 3 Changed 3 years ago by Nicolas
- Keywords patch CSS added; has-patch css removed
"only Mozilla border radius attribute support short form" ohh so *that* is why Konqueror 3 doesn't show rounded borders?
comment:3 in reply to: ↑ 2 Changed 3 years ago by Simek
Replying to Nicolas:
"only Mozilla border radius attribute support short form" ohh so *that* is why Konqueror 3 doesn't show rounded borders?
Konqueror 3 use KHTML engine - I've added special attribute (-khtml-border-radius: X), now it should work property
With short form I mean that only Mozilla support CSS like:
-moz-border-radius: 9px 2px / 2px 7px 8px 4px
Other rendering engines need separated CSS code like:
-webkit/khtml-border-radius-topleft: 9px; -webkit/khtml-border-radius-bottomleft: 9px; etc...

