LoginSignup
1
0

More than 5 years have passed since last update.

TweetDeckをStylishでワイドな1カラム表示にする

Last updated at Posted at 2016-11-19

デスクトップの隅にTweetDeckのTLだけを流しておきたいが、そのままウィンドウ幅を狭めるだけだとユーザーのホーム画面を開いたときにはみ出てしまったりするので、Stylishを使ってカラムの拡張とホーム画面の縮小をする。
TweetDeck側であらかじめ Settings > General > COLUMNS は Wide にしておく。

/* メイン */
.is-wide-columns .column {
    width: 500px;
}


/* ポップアップウィンドウ */
.mdl {
    width: 500px;
}
.mdl.s-wide {
    width: 500px;
}
.mdl-column-med {
    width: 137px;
}
.mdl-column-rhs {
    width: 330px
}


/* ヘッダー */
.sprite-drag-vertical {
    height: 6px;
}
.column-header,
.column-header-title {
    height: 25px;
    line-height: 25px;
}
.column-type-icon {
    font-size: 15px;
    width: 15px;
}
.column-title {
    font-size: 12px;
}
.column-title .attribution {
    font-size: 12px;
    padding: 0 0 0 4px;
}
.column-header-links {
    padding: 0 5px 0;
}
.column-header-link .icon-sliders {
    font-size: 19px
}

適用先は
次で始まるURL:https://tweetdeck.twitter.com/
にする。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0