Skip to content

Instantly share code, notes, and snippets.

@baptiste-roullin
Last active December 8, 2018 13:19
Show Gist options
  • Save baptiste-roullin/4e7e1d8e86e62388a70b206411a87503 to your computer and use it in GitHub Desktop.
Save baptiste-roullin/4e7e1d8e86e62388a70b206411a87503 to your computer and use it in GitHub Desktop.
Snippets css
/*
CSS injections used with the Stylus Firefox extension.
*/
/*
In Icescrum, the textareas where you describe stories are teeny-tiny. This fixes it.
*/
@-moz-document domain("") {
textarea.form-control:focus {
min-height: 400px !important;
}
.form-group-markItUp .markItUp .markItUpContainer textarea {
max-height:none;
}
/*
in Pocket, make more compact the list of articles.
*/
@-moz-document domain("getpocket.com")
{
.page_queue_list #queue .title
{
font-size: 13px;
padding-left: 2em;
}
.page_queue_list #queue .thumb,
.page_queue_list #queue .sub
{
display: none;
}
.page_queue_list #queue .item_content
{
height: auto;
min-height: 0;
border: none;
}
.page_queue_list #queue .buttons
{
top: 0.9em;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment