Skip to content

ChatGPT Print Style Setting by Katsu2013

Details

AuthorKatsu2013

LicenseMIT

Categorychatgpt

Created

Updated

Size957 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

When printing results in ChatGPT, adjust the style so that the entire text is visible.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           ChatGPT Print Style Setting
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    When printing results in ChatGPT, adjust the style so that the entire text is visible.
@author         Katsu2013
==/UserStyle== */

@-moz-document domain("chatgpt.com") {  

  /* 印刷時設定 */
  @media print {
    /*    */
    .overflow-hidden {
      overflow: unset;
    }

    /*    */
    [class*="react-scroll-to-bottom"] {
      height: unset;
      overflow-y: unset;
    }

    /*    */
    .h-full {
      height: unset;
      overflow: unset;
    }

    /* サイドバー非表示 */
    .group\/sidebar {
      display: none;
    }

    /* 自分自身の質問内容 */
    .max-w-\[var\(--user-chat-width\,70\%\)\] {
      max-width: 90%;
      font-size: small;
    }

    /* 入力欄 */
    .md\:pt-0.w-full {
      display: none;
    }
  }
  
}

Reviews

No reviews yet.