Stumblechat chat compact

Makes the messages only use 1 line.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
/* ==UserStyle==
@name           Stumblechat chat compact
@namespace      https://greasyfork.org/en/users/1244737
@version        1
@description    Makes the messages only use 1 line.
@author         robomoist
@license        MIT
==/UserStyle== */

@-moz-document url-prefix("https://stumblechat.com/room/") {
    .message .nickname ~ .content {
        display: inline-block;
        top: -7px;
        position: relative;
        margin-left: 2px;
        margin-right: 1em;
    }
    .content + .content {
        display: inline-block!important;
        margin-right: 1em;
    }
    .message .nickname ~ .content span {
        line-height: 1.5em;
    }
}