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

Side by Side Diff: Source/devtools/front_end/helpScreen.css

Issue 560293002: DevTools: Fix UI glitch with vertical scroll bar in settings dialog. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .help-window-outer { 1 .help-window-outer {
2 position: absolute !important; 2 position: absolute !important;
3 top: 0; 3 top: 0;
4 left: 0; 4 left: 0;
5 right: 0; 5 right: 0;
6 bottom: 0; 6 bottom: 0;
7 z-index: 2000; 7 z-index: 2000;
8 } 8 }
9 9
10 .help-window-main { 10 .help-window-main {
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 flex: 0 0 auto; 574 flex: 0 0 auto;
575 color: #333; 575 color: #333;
576 font-size: 14px; 576 font-size: 14px;
577 margin: 0; 577 margin: 0;
578 padding: 14px 17px 14px; 578 padding: 14px 17px 14px;
579 } 579 }
580 580
581 .settings-dialog .contents { 581 .settings-dialog .contents {
582 flex: 1 1 auto; 582 flex: 1 1 auto;
583 padding: 0 17px; 583 padding: 0 17px;
584 overflow: auto; 584 overflow-x: hidden;
585 overflow-y: auto;
585 } 586 }
586 587
587 .settings-dialog .block-header { 588 .settings-dialog .block-header {
588 color: black; 589 color: black;
589 font-size: 1.2em; 590 font-size: 1.2em;
590 margin-bottom: 0.8em; 591 margin-bottom: 0.8em;
591 } 592 }
592 593
593 .blackbox-dialog .columns-header { 594 .blackbox-dialog .columns-header {
594 color: black; 595 color: black;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 display: none; 634 display: none;
634 } 635 }
635 636
636 .settings-experiment-hidden label { 637 .settings-experiment-hidden label {
637 background-color: #ddd; 638 background-color: #ddd;
638 } 639 }
639 640
640 .settings-developer-mode .settings-experiment-hidden { 641 .settings-developer-mode .settings-experiment-hidden {
641 display: block; 642 display: block;
642 } 643 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698