25 lines
398 B
CSS
25 lines
398 B
CSS
/**
|
|
* @file
|
|
* Right-to-left styling for the Forum module.
|
|
*/
|
|
|
|
#forum td.forum .icon {
|
|
float: right;
|
|
margin: 0 0 0 9px;
|
|
}
|
|
#forum div.indent {
|
|
margin-left: 0;
|
|
margin-right: 20px;
|
|
}
|
|
.forum-topic-navigation {
|
|
padding: 1em 3em 0 0;
|
|
}
|
|
.forum-topic-navigation .topic-previous {
|
|
text-align: left;
|
|
float: right;
|
|
}
|
|
.forum-topic-navigation .topic-next {
|
|
text-align: right;
|
|
float: left;
|
|
}
|