OLD | NEW |
1 /*Used for applying style to a <span> so it looks like a highlight*/ | 1 /*Used for applying style to a <span> so it looks like a highlight*/ |
2 .fauxHighlight { | 2 .fauxHighlight { |
3 background-color: rgb(0, 255, 0); | 3 background-color: rgb(0, 255, 0); |
4 color: rgb(0, 255, 0); | 4 color: rgb(0, 255, 0); |
5 } | 5 } |
6 | 6 |
7 .fauxHighlightSquare { | 7 .fauxHighlightSquare { |
8 background-color: rgb(0, 255, 0); | 8 background-color: rgb(0, 255, 0); |
9 color: rgb(0, 255, 0); | 9 color: rgb(0, 255, 0); |
10 } | 10 } |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 background-color: rgb(0, 255, 0); | 49 background-color: rgb(0, 255, 0); |
50 z-index: 1; | 50 z-index: 1; |
51 position: absolute; | 51 position: absolute; |
52 } | 52 } |
53 | 53 |
54 .squaredHighlight { | 54 .squaredHighlight { |
55 -webkit-border-radius: 0px; | 55 -webkit-border-radius: 0px; |
56 } | 56 } |
57 | 57 |
58 .composited { | 58 .composited { |
59 -webkit-transform: translateZ(0); | 59 transform: translateZ(0); |
60 } | 60 } |
OLD | NEW |