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

Side by Side Diff: chrome/browser/resources/extensions/extensions.css

Issue 22859067: Revert r217952 to make behavior of horizontal scroll bar in page chrome://extensions keep consisten… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 html,
6 body {
7 height: 100%;
8 overflow: hidden;
9 }
10
11 @media print {
12 body {
13 height: auto;
14 }
15 }
16
17 html.loading * { 5 html.loading * {
18 -webkit-transition-duration: 0 !important; 6 -webkit-transition-duration: 0 !important;
19 } 7 }
20 8
21 html:not(.focus-outline-visible) 9 html:not(.focus-outline-visible)
22 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { 10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) {
23 /* Cancel border-color for :focus specified in widgets.css. */ 11 /* Cancel border-color for :focus specified in widgets.css. */
24 border-color: rgba(0, 0, 0, 0.25); 12 border-color: rgba(0, 0, 0, 0.25);
25 } 13 }
26 14
15 .no-scroll {
16 overflow-y: hidden;
17 }
18
27 /* Developer mode */ 19 /* Developer mode */
28 20
29 #dev-controls { 21 #dev-controls {
30 -webkit-margin-end: 20px; 22 -webkit-margin-end: 20px;
31 -webkit-transition: padding 100ms, height 100ms, opacity 100ms; 23 -webkit-transition: padding 100ms, height 100ms, opacity 100ms;
32 border-bottom: 1px solid #eee; 24 border-bottom: 1px solid #eee;
33 height: 0; 25 height: 0;
34 opacity: 0; 26 opacity: 0;
35 overflow: hidden; 27 overflow: hidden;
36 } 28 }
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 } 87 }
96 88
97 #extension-settings #page-header { 89 #extension-settings #page-header {
98 /* These values match the .page values. */ 90 /* These values match the .page values. */
99 -webkit-margin-end: 24px; 91 -webkit-margin-end: 24px;
100 min-width: 576px; 92 min-width: 576px;
101 } 93 }
102 94
103 /* Contents */ 95 /* Contents */
104 96
105 #page-container {
106 height: 100%;
107 overflow-y: auto;
108 }
109
110 #extension-settings { 97 #extension-settings {
111 max-width: 738px; 98 max-width: 738px;
112 } 99 }
113 100
114 #no-extensions-message { 101 #no-extensions-message {
115 font-weight: bold; 102 font-weight: bold;
116 } 103 }
117 104
118 #suggest-gallery { 105 #suggest-gallery {
119 -webkit-padding-start: 10px; 106 -webkit-padding-start: 10px;
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 /* Sideload Wipeout */ 337 /* Sideload Wipeout */
351 338
352 .sideload-wipeout-learn-more { 339 .sideload-wipeout-learn-more {
353 text-decoration: none; 340 text-decoration: none;
354 } 341 }
355 342
356 .sideload-wipeout-banner .page-banner-text { 343 .sideload-wipeout-banner .page-banner-text {
357 -webkit-padding-start: 8px; 344 -webkit-padding-start: 8px;
358 background-image: none; 345 background-image: none;
359 } 346 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698