Skip to content

Instantly share code, notes, and snippets.

@qrg
Created March 5, 2016 15:46
Show Gist options
  • Select an option

  • Save qrg/9234844e184a2059d5f4 to your computer and use it in GitHub Desktop.

Select an option

Save qrg/9234844e184a2059d5f4 to your computer and use it in GitHub Desktop.
chrome quick tabs custm style
body {
width: 600px;
font-family: inherit;
}
div.title {
color: #444;
}
div.url {
color: #aaa;
}
.item,
.item div.title,
div.closed.item div.title,
.item div.url {
transition: color ease .1s, background-color ease .1s;
}
.item:hover,
.item:hover div.title,
div.closed.item:hover div.title,
.item:hover div.url {
background-color: #eee;
color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment