17 lines
204 B
CSS
17 lines
204 B
CSS
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Basic styling for comment module.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Indent threaded comments.
|
||
|
*/
|
||
|
.indented {
|
||
|
margin-left: 25px; /* LTR */
|
||
|
}
|
||
|
[dir="rtl"] .indented {
|
||
|
margin-left: 0;
|
||
|
margin-right: 25px;
|
||
|
}
|