Skip to content

Instantly share code, notes, and snippets.

@MoonTahoe
Created November 9, 2017 19:04
Show Gist options
  • Save MoonTahoe/1cc2ef640363d698f45dfd0e434ecdcd to your computer and use it in GitHub Desktop.
Save MoonTahoe/1cc2ef640363d698f45dfd0e434ecdcd to your computer and use it in GitHub Desktop.
td:last-child {
padding: 5px;
width: 100px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
td div {
width: 20px;
height: 20px;
border: solid 1px;
border-radius: 50%;
cursor: pointer;
}
td div.open {
border-color: green;
}
td div.open.selected {
background-color: green;
}
td div.hold {
border-color: goldenrod;
}
td div.hold.selected {
background-color: goldenrod;
}
td div.closed {
border-color: red;
}
td div.closed.selected {
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment