OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, | 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, |
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, | 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, |
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, | 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, |
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, | 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, |
10 tfoot, thead, tr, th, td, button { | 10 tfoot, thead, tr, th, td, button { |
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
726 | 726 |
727 .debug-region-rect { | 727 .debug-region-rect { |
728 position: absolute; | 728 position: absolute; |
729 background-color: rgba(255, 0, 255, 0.5); | 729 background-color: rgba(255, 0, 255, 0.5); |
730 border-color: #000000; | 730 border-color: #000000; |
731 border-style: solid; | 731 border-style: solid; |
732 border-width: 2px; | 732 border-width: 2px; |
733 box-sizing: border-box; | 733 box-sizing: border-box; |
734 } | 734 } |
735 | 735 |
| 736 #client-container { |
| 737 /* The mouse-cursor-overlay is positioned relative to the client plugin, |
| 738 * which is contained within this element. */ |
| 739 position: relative; |
| 740 } |
| 741 |
736 .mouse-cursor-overlay { | 742 .mouse-cursor-overlay { |
737 position: absolute; | 743 position: absolute; |
738 pointer-events: none; | 744 pointer-events: none; |
739 } | 745 } |
OLD | NEW |