Interesting module!
So far I always made my ltr/rtl CSS myself, using a syntax like this:
#main .column ul.menu li {
background:url(../images/bullet.gif) no-repeat;
margin: 1px 0;
list-style-type: none;
}
.ltr #main .column ul.menu li {padding-left:22px; background-position:left 5px;}
.rtl #main .column ul.menu li {padding-right:22px; background-position:right 5px;}
The syntax helps me to never forget I need to update both .ltr and .rtl in parallel.
As you can imagine, it was a lot of work to get the stylesheets into this shape, and I don't want to go all the way back. Not for this project at least. And sometimes it could even be 3rd party code where the rtl stuff is already taken care off.
So, I think it would be useful to have an option where I can choose which projects (themes, modules) need to be taken care of by cssflip, and which don't.
Thanks!
Comments
Comment #1
donquixote commentedFor the project I am talking about, I need cssflip primarily for the admin theme (rubik), and probably also for some contrib and core css.
Comment #2
kharbat commentedby default cssflip searches for stylesheets that don't have corresponding -rtl.css files.. if there's an rtl file the stylesheet will be bypassed..