Last active
December 15, 2015 08:39
-
-
Save morganwilde/5232530 to your computer and use it in GitHub Desktop.
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
.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