Skip to content

Instantly share code, notes, and snippets.

@jamiehs
Created February 14, 2013 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiehs/4953841 to your computer and use it in GitHub Desktop.
Save jamiehs/4953841 to your computer and use it in GitHub Desktop.
Necessary CSS to override the title box background color of the SlideDeck 2 Tool Kit Lens
/* More specific selector starting with body */
body .lens-tool-kit.sd2-title-dark .sd-node-title-box,
body .lens-tool-kit.sd2-title-light .sd-node-title-box {
background: rgb(122,122,122); /* Fallback for IE's lack of rgba() */
background: rgba(122,122,122,0.2); /* Color you actually want (with opacity) */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment