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

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

Issue 1016413004: [Extensions] Update Error Console UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
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.loading * { 5 html.loading * {
6 transition-duration: 0ms !important; 6 transition-duration: 0ms !important;
7 } 7 }
8 8
9 html:not(.focus-outline-visible) 9 html:not(.focus-outline-visible)
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { 10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 .extension-code-line-numbers { 79 .extension-code-line-numbers {
80 align-self: flex-start; 80 align-self: flex-start;
81 background-color: rgba(240, 240, 240, 1); 81 background-color: rgba(240, 240, 240, 1);
82 border-right: 1px solid #ccc; 82 border-right: 1px solid #ccc;
83 color: rgba(128, 128, 128, 1); 83 color: rgba(128, 128, 128, 1);
84 flex-shrink: 0; 84 flex-shrink: 0;
85 text-align: right; 85 text-align: right;
86 } 86 }
87 87
88 .extension-code-empty {
89 background-color: #eee;
90 display: inline-block;
91 line-height: 100px; /* Vertically centers text and serves as min-height. */
92 text-align: center;
93 width: 100%;
94 }
95
88 .extension-details > .developer-extras > div, 96 .extension-details > .developer-extras > div,
89 .extension-details > .permanent-warnings > div { 97 .extension-details > .permanent-warnings > div {
90 margin: 5px 0; 98 margin: 5px 0;
91 } 99 }
92 100
93 .dependent-extensions-message, 101 .dependent-extensions-message,
94 .suspicious-install-message { 102 .suspicious-install-message {
95 line-height: 150%; 103 line-height: 150%;
96 } 104 }
97 105
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 211
204 .action-links { 212 .action-links {
205 margin-bottom: 0.5em; 213 margin-bottom: 0.5em;
206 } 214 }
207 215
208 .action-links a { 216 .action-links a {
209 -webkit-margin-end: 1em; 217 -webkit-margin-end: 1em;
210 -webkit-margin-start: 0; 218 -webkit-margin-start: 0;
211 } 219 }
212 220
221 .action-links .errors-link {
222 align-items: center;
223 display: inline-flex;
224 vertical-align: bottom;
225 }
226
213 .extension-details { 227 .extension-details {
214 -webkit-box-flex: 1; 228 -webkit-box-flex: 1;
215 -webkit-padding-end: 7px; 229 -webkit-padding-end: 7px;
216 -webkit-padding-start: 60px; 230 -webkit-padding-start: 60px;
217 padding-top: 6px; 231 padding-top: 6px;
218 } 232 }
219 233
220 .extension-description, 234 .extension-description,
221 .extension-version, 235 .extension-version,
222 .extension-list-item-wrapper.inactive-extension .extension-details, 236 .extension-list-item-wrapper.inactive-extension .extension-details,
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 426
413 .sideload-wipeout-banner .page-banner-text { 427 .sideload-wipeout-banner .page-banner-text {
414 -webkit-padding-start: 8px; 428 -webkit-padding-start: 8px;
415 background-image: none; 429 background-image: none;
416 } 430 }
417 431
418 .focus-row-active { 432 .focus-row-active {
419 background-color: rgba(0, 0, 0, .05); 433 background-color: rgba(0, 0, 0, .05);
420 border-radius: 3px; 434 border-radius: 3px;
421 } 435 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698