OLD | NEW |
1 /* | 1 /* |
2 Use a class to apply touch-action so that we can easily manually check | 2 Use a class to apply touch-action so that we can easily manually check |
3 the tests for consistent behavior on IE10 as well. | 3 the tests for consistent behavior on IE10 as well. |
4 */ | 4 */ |
5 .ta-none { | 5 * /deep/ .ta-none { |
6 -ms-touch-action: none; | 6 -ms-touch-action: none; |
7 touch-action: none; | 7 touch-action: none; |
8 } | 8 } |
9 .ta-auto { | 9 .ta-auto { |
10 -ms-touch-action: auto; | 10 -ms-touch-action: auto; |
11 touch-action: auto; | 11 touch-action: auto; |
12 } | 12 } |
13 .ta-panx { | 13 .ta-panx { |
14 -ms-touch-action: pan-x; | 14 -ms-touch-action: pan-x; |
15 touch-action: pan-x; | 15 touch-action: pan-x; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 } | 74 } |
75 | 75 |
76 .marker { | 76 .marker { |
77 position: absolute; | 77 position: absolute; |
78 opacity: 0.5; | 78 opacity: 0.5; |
79 /* Note, if changing size, be sure to change kMarkerSize in JS too */ | 79 /* Note, if changing size, be sure to change kMarkerSize in JS too */ |
80 width: 6px; | 80 width: 6px; |
81 height: 6px; | 81 height: 6px; |
82 background-color: red; | 82 background-color: red; |
83 } | 83 } |
OLD | NEW |