Skip to content

Instantly share code, notes, and snippets.

@mortendk
Created October 15, 2012 10:14
Show Gist options
  • Save mortendk/3891815 to your computer and use it in GitHub Desktop.
Save mortendk/3891815 to your computer and use it in GitHub Desktop.
tooltip forms drupal
//tooltips for forms
form.tooltip{
small,
.description{
text-align:left;
width:200px;
color: white;
background: #666;
@include border-radius(2px);
margin-left:8px;
padding: 1px 6px;
z-index: 999;
position: absolute;
display: none;
}
small:before,
.description:before {
content: "\25C0";
color:#666;
position: absolute;
top:1px;
left:-6px;
}
//activate the tooltop
input:focus + small,
input:focus + .description,
textarea:focus + small,
textarea:focus + .description
{
display: inline;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment