Skip to content

Instantly share code, notes, and snippets.

@nicomgd
Last active November 14, 2016 09:29
Show Gist options
  • Save nicomgd/8752912aaa0ecc7c2279 to your computer and use it in GitHub Desktop.
Save nicomgd/8752912aaa0ecc7c2279 to your computer and use it in GitHub Desktop.
/* https://gist.github.com/nicomgd/8752912aaa0ecc7c2279 */
/* copy&paste theses lines in a new Stylish style */
.status-5 > * {
color: #CCC !important;
/*display: none;*/
background-color: #fff;
}
table.list tr.issue.status-5 a { /* en attente */
color: #CCC;
}
table.issues tr.issue.status-4 * { /* fermé */
text-decoration: line-through;
}
table.issues tr.issue.tracker-1 * { /* Tracker Tâche */
color: #444 !important;
}
table.issues tr.issue.tracker-2 * { /* Tracker Retour Valid */
color: #CAAD0F !important;
}
table.issues tr.issue.tracker-4 * { /* Tracker Question */
color: #684AB7 !important;
}
table.issues tr.issue.tracker-5 * { /* Tracker Risque */
color: #CA6F0F !important;
}
.priority-low > * {
color: #777 !important;
/*display: none;*/
background-color: #fff;
}
table.list tr.issue.priority-low a {
color: #777;
}
/* NOTE(gildas) rendre plus visible les portions de 'code' */
code {
display: inline-block;
background: #eee;
border: 1px solid #ccc;
border-radius: 3px;
padding: 1px 3px;
}
/* NOTE(nico) pour cacher/atténuer les éléments sans notes dans l'historique des demandes */
div[class="journal has-details"] * {
font-size: 8px !important;
-webkit-margin-before: 2px;
-webkit-margin-after: 2px;
color: #777 !important;
display: none;
}
div[class="journal has-details"] > div > h4 {
padding: 2px !important;
}
div[class="journal has-details"] img {
display: none;
}
div[class="journal has-details"] li {
background: none !important;
}
/* NOTE(nico) du ménage dans la sidebar, pour enlever ce dont on ne sert pas, comme on ne peut pas mettre un filtre par défaut */
#sidebar > .agile-charts {
display: none
}
#sidebar > .agile-charts + ul > li {
display: none
}
@nicomgd
Copy link
Author

nicomgd commented Feb 1, 2016

Ajouté couleurs pour différents trackers + lisibilité blocs 'code'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment