mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-23 00:40:23 +01:00
20 lines
353 B
Plaintext
20 lines
353 B
Plaintext
/*
|
|
Post queue page CSS
|
|
- Originally in ACP
|
|
- Now available in front-end for global mods as well
|
|
*/
|
|
.posts-list {
|
|
.topic-title {
|
|
word-break: break-word;
|
|
}
|
|
.post-content {
|
|
word-break: break-word;
|
|
}
|
|
.post-content-editable {
|
|
textarea {
|
|
width: 100%;
|
|
height: 300px;
|
|
}
|
|
}
|
|
}
|