Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Mozilla サポートの検索

サポート詐欺に注意してください。 私たちはあなたに通話やショートメッセージの送信、個人情報の共有を求めることはありません。疑わしい行為を見つけたら「迷惑行為を報告」からご報告ください。

詳しく学ぶ

indent of subject line in threads

  • 5 件の返信
  • 1 人がこの問題に困っています
  • 69 回表示
  • 最後の返信者: sevonne

more options

In reply messages, Thunderbird (macos 128.10) adds an indent to the subject line in the pane view. When the thread is very long the subject disappears because of the successive indents. Is there a way to remove these indents by default? Thanks in advance. Gérald

In reply messages, Thunderbird (macos 128.10) adds an indent to the subject line in the pane view. When the thread is very long the subject disappears because of the successive indents. Is there a way to remove these indents by default? Thanks in advance. Gérald
添付されたスクリーンショット

選ばれた解決策

If you are willing to use userChrome.css, put one of the following CSS in userChrome.css. The following CSS should work for Thunderbird 128.10.0esr on Windows:

(1) no indent:

/* no indent: */
.table-layout .subject-line {
    margin-inline-start: 0 !important;
}


(2) indent N times at most:

/* indent N times at most: */
.table-layout .subject-line {
    --max-times-of-indent: 3;
    margin-inline-start: calc(16px * min(var(--thread-level), var(--max-times-of-indent))) !important;
}


You can control the maximum times of indents by changing the value of --max-times-of-indent. In the above CSS, the value of --max-times-of-indent is 3, so the subject line will indent 3 times at most.

Please see the attached image, which shows the user interface after applying the above CSS.

この回答をすべて読む 👍 2

すべての返信 (5)

more options

I don't know of a way to remove the indents, but after trying a few options, this seems to be close to what you want: set View/Sort by to Subject and Grouped by Sort, and Ascending or Descending.

more options

Thanks for helping. Yes this does remove the indents, but conversations get split so the searched for information is actually lost in this mode.

more options

選ばれた解決策

If you are willing to use userChrome.css, put one of the following CSS in userChrome.css. The following CSS should work for Thunderbird 128.10.0esr on Windows:

(1) no indent:

/* no indent: */
.table-layout .subject-line {
    margin-inline-start: 0 !important;
}


(2) indent N times at most:

/* indent N times at most: */
.table-layout .subject-line {
    --max-times-of-indent: 3;
    margin-inline-start: calc(16px * min(var(--thread-level), var(--max-times-of-indent))) !important;
}


You can control the maximum times of indents by changing the value of --max-times-of-indent. In the above CSS, the value of --max-times-of-indent is 3, so the subject line will indent 3 times at most.

Please see the attached image, which shows the user interface after applying the above CSS.

more options

Perfect! Many thanks indeed. Gérald

more options

Hello! I have exactly the same request than Gerald, but this solution does not seem to work on my version of Thunderbird (128.8.1esr on Ubuntu 22.04). After writting this code in userChrome.css, nothing changes in the interface. I have restarted TB many times and made sure that toolkit.legacyUserProfileCustomizations.stylesheets is set to true. I am sure I am using the proper userChrome.css, as I can change other things in this file (for instance global font size) and see the changes. Is the linux version using another kind of syntax ? Am I missing something else to made the changes available in my environment?

質問する

投稿に返信するには あなたのアカウントにログイン する必要があります。まだアカウントをお持ちでなければ、新しい質問を開始 してください。