Created
October 17, 2012 12:33
-
-
Save romac/3905307 to your computer and use it in GitHub Desktop.
Prettier Chrome DevTools
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
/** | |
* Put this in: | |
* - Mac: ~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css | |
* - Ubuntu: ~/.config/chromium/Default/User StyleSheets/Custom.css | |
* - Windows: C:\Users\YourUsername\AppData\Local\Google\Chrome\UserData\Default\User StyleSheets\Custom.css | |
*/ | |
#-webkit-web-inspector.compact #toolbar { | |
background: -webkit-linear-gradient(#CCC, #AEAEAE) !important; | |
border-bottom: 1px solid #AAA !important; | |
} | |
#-webkit-web-inspector.compact #toolbar .toolbar-label { | |
text-shadow: 0px 1px 1px #EFEFEF !important; | |
} | |
#-webkit-web-inspector.compact #toolbar .toolbar-item.toggleable.toggled-on { | |
background: -webkit-linear-gradient(#DDD, #AEAEAE) !important; | |
} | |
#-webkit-web-inspector.compact .toolbar-item.close-left { | |
margin-top: 6px !important; | |
} |
How comes one cannot delete a Gist's comment ?
curl to the rescue? http://developer.github.com/v3/gists/comments/#delete-a-comment
Thanks for taking the time to beautify that toolbar. I assume the width of the border on top can't be decreased?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Before:
After: