Last active
November 28, 2018 23:56
-
-
Save kensnyder/69838079579fad51295798766f81d318 to your computer and use it in GitHub Desktop.
This file contains 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
.adg3 .ghx-column h2 { | |
text-transform: none; | |
font-size: 13px; | |
color: #2e2e2e | |
} | |
.adg3 .ghx-column-headers .ghx-qty { | |
background-color: #18cb3b; | |
color: white; | |
width: 20px; | |
height: 20px; | |
text-align: center; | |
line-height: 20px; | |
border-radius: 10px; | |
} | |
.adg3 .ghx-column-headers .ghx-column { | |
background-color: #e0e0e0; | |
} | |
.adg3 .ghx-narrow-card .ghx-issue .ghx-stat-fields > .ghx-row.ghx-stat-1 { | |
display: none; | |
} |
This file contains 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
(function() { | |
const css = ` | |
.adg3 .ghx-column h2 { | |
text-transform: none; | |
font-size: 13px; | |
color: #2e2e2e | |
} | |
.adg3 .ghx-column-headers .ghx-qty { | |
background-color: #18cb3b; | |
color: white; | |
width: 20px; | |
height: 20px; | |
text-align: center; | |
line-height: 20px; | |
border-radius: 10px; | |
transform: translateY(-2px); | |
} | |
.adg3 .ghx-column-headers .ghx-column { | |
background-color: #e0e0e0; | |
} | |
.adg3 .ghx-narrow-card .ghx-issue .ghx-stat-fields > .ghx-row.ghx-stat-1 { | |
display: none; | |
}`; | |
const style = document.createElement('style'); | |
style.textContent = css; | |
document.querySelector('head').appendChild(style); | |
})(); | |
// transpile at https://babeljs.io/en/repl | |
// convert to bookmarklet at http://bookmarklets.org/maker/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment