Hides some jira clutter on kanban and backlog, visible on mouseover
Clean Jira by nog1potje
Details
Authornog1potje
LicenseNo License
Categoryjira
Created
Updated
Size690 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Clean Jira
@namespace atlassian.net/jira
@version 0.0.1
@description Hides some jira clutter on kanban and backlog, visible on mouseover
@author Me
==/UserStyle== */
@-moz-document domain("atlassian.net") {
.ghx-issue > section + section {
visibility: hidden;
}
.ghx-issue:hover > section + section{
visibility: visible;
}
.ghx-backlog-card .ghx-end.ghx-row {
visibility: hidden;
}
.ghx-backlog-card:hover .ghx-end.ghx-row {
visibility: visible;
}
#ghx-share > div{
visibility: hidden;
}
#ghx-share:hover > div{
visibility: visible;
}
}