Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(495)

Side by Side Diff: remoting/webapp/main.css

Issue 17288017: Disable scroll-bars in shrink-to-fit mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 .dialog-screen { 592 .dialog-screen {
593 position: fixed; 593 position: fixed;
594 top: 0; 594 top: 0;
595 left: 0; 595 left: 0;
596 width: 100%; 596 width: 100%;
597 height: 100%; 597 height: 100%;
598 background-color: #fff; 598 background-color: #fff;
599 opacity: 0.75; 599 opacity: 0.75;
600 } 600 }
601 601
602 /* TODO(jamiewalch): crbug.com/252796: Remove this once crbug.com/240772
603 * is fixed. */
604 .no-scroll {
605 overflow: hidden;
606 }
607
602 /* TODO(jamiewalch): Reinstate this if we're able to get translations for 608 /* TODO(jamiewalch): Reinstate this if we're able to get translations for
603 * "Why is this safe?" that don't overflow in any language. 609 * "Why is this safe?" that don't overflow in any language.
604 #host-setup-dialog { 610 #host-setup-dialog {
605 width: 460px; 611 width: 460px;
606 } 612 }
607 */ 613 */
608 614
609 #host-plugin-container { 615 #host-plugin-container {
610 width: 0; 616 width: 0;
611 height: 0; 617 height: 0;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 box-sizing: border-box; 655 box-sizing: border-box;
650 } 656 }
651 657
652 /* 658 /*
653 * Setting hidden on elements that match some rule overriding 'display' doesn't 659 * Setting hidden on elements that match some rule overriding 'display' doesn't
654 * do what you would expect unless this is made explicit (and !important). 660 * do what you would expect unless this is made explicit (and !important).
655 */ 661 */
656 [hidden] { 662 [hidden] {
657 display: none !important; 663 display: none !important;
658 } 664 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698