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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 width: 315px; | 668 width: 315px; |
669 } | 669 } |
670 | 670 |
671 #session-client-plugin { | 671 #session-client-plugin { |
672 box-shadow: 0 0 8px 0 black; | 672 box-shadow: 0 0 8px 0 black; |
673 -webkit-user-select: none; | 673 -webkit-user-select: none; |
674 } | 674 } |
675 | 675 |
676 #session-client-plugin { | 676 #session-client-plugin { |
677 display: block; | 677 display: block; |
| 678 flex-shrink: 0; |
678 } | 679 } |
679 | 680 |
680 .session-client-inactive { | 681 .session-client-inactive { |
681 -webkit-filter: grayscale(70%); | 682 -webkit-filter: grayscale(70%); |
682 transition: -webkit-filter 0.218s; | 683 transition: -webkit-filter 0.218s; |
683 } | 684 } |
684 | 685 |
685 #set-pin-table td { | 686 #set-pin-table td { |
686 border-bottom: 6px solid transparent; | 687 border-bottom: 6px solid transparent; |
687 } | 688 } |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 /* | 766 /* |
766 * With MediaSource-based rendering the plugin is transparent and is placed on | 767 * With MediaSource-based rendering the plugin is transparent and is placed on |
767 * top of the <video> element so that it can still receive mouse events. | 768 * top of the <video> element so that it can still receive mouse events. |
768 * | 769 * |
769 * TODO(sergeyu): This is temporary solution. Ideally mouse and keyboard events | 770 * TODO(sergeyu): This is temporary solution. Ideally mouse and keyboard events |
770 * should be captured on JS level and passed to the plugin. | 771 * should be captured on JS level and passed to the plugin. |
771 */ | 772 */ |
772 #video-container.mediasource-rendering #client-plugin-container { | 773 #video-container.mediasource-rendering #client-plugin-container { |
773 opacity: 0; | 774 opacity: 0; |
774 } | 775 } |
OLD | NEW |