MediaWiki talk:Common.css: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
Cbrown1023 (talk | contribs)
remove "done", so it's easier to tell what's needed
Cbrown1023 (talk | contribs)
Line 3: Line 3:
Please add the following (without <pre> tag) to the end of Common.css:
Please add the following (without <pre> tag) to the end of Common.css:


<source lang="css">
<pre>
.persian {
.persian {
direction: rtl;
direction: rtl;
Line 29: Line 29:
margin-right:16px;
margin-right:16px;
}
}
</pre>
</source>


Cheers, [[User:Huji|Huji]] 11:22, 25 April 2008 (UTC)
Cheers, [[User:Huji|Huji]] 11:22, 25 April 2008 (UTC)

Revision as of 17:25, 10 June 2008

New sections to be added for Persian pages to look fine

Please add the following (without <pre> tag) to the end of Common.css:

.persian {
direction: rtl;
font-family: Tahoma;
}
 
#bodyContent .persian a, #bodyContent .persian a.external {
background:none;
padding-right:0;
}
 
.persian #toctitle {
direction:ltr;
}
 
.persian .toclevel-1 {
text-align:right;
}
 
.persian .editsection {
float:left;
}
 
.persian UL {
margin-right:16px;
}

Cheers, Huji 11:22, 25 April 2008 (UTC)[reply]

Please update

Please update the required parts to look like this:

.persian {
direction: rtl;
font-family: Tahoma;
}
 
#bodyContent .persian a, #bodyContent .persian a.external {
background:none;
padding-right:0;
}

.persian #toctitle {
direction:ltr;
}

.persian .toclevel-1, .persian .toclevel-2, .persian .toclevel-3, .persian .toclevel-4 {
text-align:right;
}

.persian .toclevel-2 {
margin-right:10px;
}

.persian .toclevel-3 {
margin-right:20px;
}

.persian .toclevel-4 {
margin-right:30px;
}

.persian .editsection {
float:left;
}

.persian UL {
margin-right:16px;
display:table;
}

.persian OL {
margin-right:16px;
display:table;
}

Huji 16:35, 10 June 2008 (UTC)[reply]