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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 position: absolute; | 626 position: absolute; |
627 top: 0; | 627 top: 0; |
628 left: 0; | 628 left: 0; |
629 width: 100%; | 629 width: 100%; |
630 height: 100%; | 630 height: 100%; |
631 background-color: #fff; | 631 background-color: #fff; |
632 opacity: 0.75; | 632 opacity: 0.75; |
633 z-index: 1; | 633 z-index: 1; |
634 } | 634 } |
635 | 635 |
636 /* For apps v2, don't cover the 1px window border. */ | |
637 html.apps-v2 .dialog-screen { | |
638 width: calc(100% - 2px); | |
639 height: calc(100% - 2px); | |
640 top: 1px; | |
641 left: 1px; | |
642 } | |
643 | |
644 /* TODO(jamiewalch): crbug.com/252796: Remove these once crbug.com/240772 | 636 /* TODO(jamiewalch): crbug.com/252796: Remove these once crbug.com/240772 |
645 * is fixed. */ | 637 * is fixed. */ |
646 .no-horizontal-scroll { | 638 .no-horizontal-scroll { |
647 overflow-x: hidden !important; | 639 overflow-x: hidden !important; |
648 } | 640 } |
649 | 641 |
650 .no-vertical-scroll { | 642 .no-vertical-scroll { |
651 overflow-y: hidden !important; | 643 overflow-y: hidden !important; |
652 } | 644 } |
653 | 645 |
654 html.apps-v2.scrollable { | 646 html.apps-v2.scrollable { |
655 overflow: scroll; | 647 overflow: scroll; |
656 } | 648 } |
657 | 649 |
658 | |
659 /* TODO(jamiewalch): Reinstate this if we're able to get translations for | 650 /* TODO(jamiewalch): Reinstate this if we're able to get translations for |
660 * "Why is this safe?" that don't overflow in any language. | 651 * "Why is this safe?" that don't overflow in any language. |
661 #host-setup-dialog { | 652 #host-setup-dialog { |
662 width: 460px; | 653 width: 460px; |
663 } | 654 } |
664 */ | 655 */ |
665 | 656 |
666 #host-plugin-container { | 657 #host-plugin-container { |
667 width: 0; | 658 width: 0; |
668 height: 0; | 659 height: 0; |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 } | 787 } |
797 | 788 |
798 .mouse-cursor-overlay { | 789 .mouse-cursor-overlay { |
799 position: absolute; | 790 position: absolute; |
800 pointer-events: none; | 791 pointer-events: none; |
801 } | 792 } |
802 | 793 |
803 body.hangout-remote-desktop .home-screen { | 794 body.hangout-remote-desktop .home-screen { |
804 display: none; | 795 display: none; |
805 } | 796 } |
OLD | NEW |