OLD | NEW |
1 .touch-interactive { | 1 .touch-interactive { |
2 background-color: blue; | 2 background-color: blue; |
3 } | 3 } |
4 | 4 |
5 .touch-interactive:hover { | 5 .touch-interactive:hover { |
6 background-color: red | 6 background-color: red |
7 } | 7 } |
8 | 8 |
9 .touch-interactive:active { | 9 .touch-interactive:active { |
10 background-color: green; | 10 background-color: green; |
11 } | 11 } |
12 | 12 |
13 .touch-interactive:hover:active { | 13 .touch-interactive:hover:active { |
14 background-color: yellow; | 14 background-color: yellow; |
15 } | 15 } |
16 | 16 |
OLD | NEW |