Warning:
This wiki has been archived and is now read-only.

MediaWiki talk:Common.css

From Library Linked Data
Jump to: navigation, search

I'd like to add a CSS style for vertical text (to support very wide tables better). It would be this:

.rot-neg-90 {
 -moz-transform:rotate(-270deg); 
 -moz-transform-origin: bottom left;
 -webkit-transform: rotate(-270deg);
 -webkit-transform-origin: bottom left;
 -o-transform: rotate(-270deg);
 -o-transform-origin:  bottom left;
 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

This should provide good cross-browser support for that. However, I don't have write permission to this .css file, and editing my own .css file would only affect my user, so my style won't work for others viewing the table.

Can I be granted write access to this .css to add this, or can someone with access add this to the file? Thanks in advance. Asaf Bartov 20:59, 30 September 2010 (UTC)