Skip to content

Instantly share code, notes, and snippets.

@morganwilde
Last active December 15, 2015 08:39
Show Gist options
  • Save morganwilde/5232530 to your computer and use it in GitHub Desktop.
Save morganwilde/5232530 to your computer and use it in GitHub Desktop.
.colHover {background-color: rgb(223, 223, 223);}
.cellHover {
box-shadow: 10px 0px 10px -10px rgba(0, 0, 0, 0.5) inset,
-10px 0px 10px -10px rgba(0, 0, 0, 0.5) inset;
}
.cellHover:first-child {box-shadow: -10px 0px 10px -10px rgba(0, 0, 0, 0.5) inset;}
.cellHover:last-child {box-shadow: 10px 0px 10px -10px rgba(0, 0, 0, 0.5) inset;}
th:hover {
cursor: pointer;
background-color: rgb(223, 223, 223);
border-bottom: 1px solid rgb(255, 255, 255);
box-shadow: 10px 0px 10px -10px rgba(0, 0, 0, 0.5) inset,
-10px 0px 10px -10px rgba(0, 0, 0, 0.5) inset;
}
th:first-child:hover {box-shadow: -10px 0px 10px -10px rgba(0, 0, 0, 0.5) inset;}
th:last-child:hover {box-shadow: 10px 0px 10px -10px rgba(0, 0, 0, 0.5) inset;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment