Last active
December 14, 2015 00:29
-
-
Save seyDoggy/4999536 to your computer and use it in GitHub Desktop.
"If you have any stacks that use responsive styling for images, you probably know that when you apply your width:100% to images, the default arrow image inside edit mode gets huge. I finally took the time to find a fix/hack so I thought that I would share it. Add the following CSS to your stack and you should be golden!" -- Joe Workman
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
/* Responsive Edit Mode Hack courtesy of Joe Workman <joeworkman.net> */ | |
%[if edit]% | |
#%id% img[src*="YHStacksKit.framework/Resources/down_arrow.png"]{ width:auto !important; } | |
%[endif]% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment