Skip to content

Instantly share code, notes, and snippets.

@aquilax
Last active December 19, 2015 06:59
Show Gist options
  • Save aquilax/5915760 to your computer and use it in GitHub Desktop.
Save aquilax/5915760 to your computer and use it in GitHub Desktop.
"Condensed" CSS for Ino Reader
#tree_pane, #reader_pane {
overflow: hidden;
}
#tree_pane:hover, #reader_pane:hover {
overflow: auto;
}
#tree_pane::-webkit-scrollbar, #reader_pane::-webkit-scrollbar {
width: 6px;
}
#tree_pane::-webkit-scrollbar-track, #reader_pane::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
-webkit-border-radius: 5px;
border-radius: 5px;
}
#tree_pane::-webkit-scrollbar-thumb, #reader_pane::-webkit-scrollbar-thumb {
-webkit-border-radius: 5px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 0.3);
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: top left;
}
#subscriptions_buttons {
padding: 1px;
margin-top: -3px;
}
button {
padding: 1px 3px;
}
#tree_pane>div>div img {
height: 16px;
}
.ar {
margin: 0;
}
.article_title {
margin: 0;
font-size: 1.3em;
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment