Last active
December 8, 2018 13:19
-
-
Save baptiste-roullin/4e7e1d8e86e62388a70b206411a87503 to your computer and use it in GitHub Desktop.
Snippets css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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