Skip to content

Instantly share code, notes, and snippets.

@syoichi
Created June 1, 2012 06:57
Show Gist options
  • Save syoichi/2849706 to your computer and use it in GitHub Desktop.
Save syoichi/2849706 to your computer and use it in GitHub Desktop.
read.crx 2 v0.67用のUser CSS
/* License: Public Domain
* 注意: 設定の「レイアウト」を「2ペイン」にする必要あり
*/
/* 板一覧メニューを左端でのマウスオーバーで表示するように */
#left_pane {
z-index: 2 !important;
}
#left_pane:not(:hover) {
width: 3px !important;
}
#right_pane {
left: 0 !important;
}
/**
* 右サイドタブ化(置き換えで)
* via http://jbbs.livedoor.jp/bbs/read.cgi/computer/42710/1290070123/190
*/
#tab_a {
display: -webkit-flex !important;
display: flex !important;
-webkit-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
#tab_a > .tab_tabbar {
margin-top: 27px !important;
display: block !important;
}
#tab_a > .tab_container {
-webkit-flex: 1 !important;
flex: 1 !important;
}
.tab_tabbar > li {
float: none !important;
}
/* 黒い枠線を消す */
#body {
background-color: transparent !important;
}
#tab_a {
margin: 0 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment