Products.EasyAsPiIE 1.0.2
This enables you to do CSS 3 things for IE. It also elimnates the need to deal with transparent PNGs with IE6
Introduction
This product allows you to make sites faster since you don't need to worry about some of the hang ups from Internet Explorer.
This Product works in Plone 2.5, 3, 4+
1.) Just by installing this product you don't have to worry about transparent PNG's in IE 6.
2.) New features include being able to do CSS 3 (Uses css3pie http://css3pie.com/) type things in IE 6,7,8. Things like border-radius, box-shadow, text-shadow.
- A.) To use the CSS 3 features make a ie only css file and add your file into the css area of main_template. In Plone 4 you can just add the condition for the css registry file.
- <!--[if lt IE 9]><link href="IEFixes_foo.css" media="screen" type="text/css" rel="stylesheet"> <![endif]-->
B.) Add these 2 lines to your css class or id.
behavior: url(&dtml-portal_url;/PIE.htc); position: relative;
Make a list of classes that need to be changed in IE in your IEFixes_foo.css file. Example:
#portal-personaltools,
.portalHeader,
.fooclass {
behavior: url(&dtml-portal_url;/PIE.htc);
position: relative;
}
C.) Issues with CSSPie.. You can't do less then all four border-radius easily:
.portalHeader {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
should be:
.portalHeader {
border-radius: 10px 0px 0px 10px;
}
Also, if you are are doing gradients there is a hook:
#portal-header {
-pie-background: linear-gradient(#D3D4D5, #FEFEFE); /*PIE*/
}
Changelog
0.1 - Unreleased
- Initial release
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| Products.EasyAsPiIE-1.0.2.tar.gz (md5) | Source | 2011-05-26 | 48KB | 280 | |
| Products.EasyAsPiIE-1.0.2.zip (md5) | Source | 2011-05-26 | 61KB | 475 | |
- Author: WebLion
- Home Page: https://weblion.psu.edu/svn/weblion/weblion/Products.EasyAsPiIE
- Keywords: web zope plone theme
- License: GPL
- Categories
- Package Index Owner: robzonenet, cah190, pumazi, esteele
- DOAP record: Products.EasyAsPiIE-1.0.2.xml
