Created
July 10, 2011 07:50
-
-
Save jamesmoss/1074366 to your computer and use it in GitHub Desktop.
Left side CSS inspector checkboxes in Chrome devtools
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
.styles-section:hover .properties .enabled-button { | |
visibility: visible !important; | |
} | |
.styles-section .properties li.disabled .enabled-button { | |
visibility: visible !important; | |
} | |
.styles-section .properties .enabled-button { | |
margin: 0 4px 0 0 !important; | |
display: block !important; | |
float: left !important; | |
visibility: hidden !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK, I luckily (and accidentally) found the blog post this is from:
http://jamesmoss.co.uk/blog/checkboxes-in-chrome-devtools-css-inspector/