Skip to content

Commit

Permalink
Fixed css specificity bug that caused wrong CSS class to be rendered
Browse files Browse the repository at this point in the history
  • Loading branch information
drdrsh committed Sep 7, 2015
1 parent dfba20f commit ff77fe0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -106,18 +106,18 @@ td{
border:1px solid black;
}

td.d.s {
#grid td.d.s {
background-image:url('images/ds.png');
}

td.d.u {
#grid td.d.u {
background-image:url('images/du.png');
}

td.s.u {
#grid td.s.u {
background-image:url('images/su.png');
}

td.d.s.u {
#grid td.d.s.u {
background-image:url('images/dsu.png');
}

0 comments on commit ff77fe0

Please sign in to comment.