/* `html.system-font` でログイン状態を識別する */
.system-font {
  /* タイムラインのフォントサイズを縮小 */
  .item-list > article {
    zoom: 0.8;
  }
}

/* OpenGraph カードの画像を縮小 */
html .status-card__image {
  width: 96px;
}

/* OpenGraph カードの padding を縮小 */
html .status-card__content {
  padding: 10px;
}


/* 未ログイン状態 */
html:not(.system-font) {
  /* 検索欄の背景色を除去 */
  .search__input {
    background: none;
  }

  /* プロフィールのプロパティ項目の背景色を除去 */
  ._comp_account_header__fieldItem {
    background: none;
    border-width: 2px;
  }
}

/* 「画像からテキストを追加」を隠す */
.input__toolbar > .link-button {
  visibility: hidden;
}


