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

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, 9 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 113
114 .extension-code-line-numbers { 114 .extension-code-line-numbers {
115 align-self: flex-start; 115 align-self: flex-start;
116 background-color: rgba(240, 240, 240, 1); 116 background-color: rgba(240, 240, 240, 1);
117 border-right: 1px solid #ccc; 117 border-right: 1px solid #ccc;
118 color: rgba(128, 128, 128, 1); 118 color: rgba(128, 128, 128, 1);
119 flex-shrink: 0; 119 flex-shrink: 0;
120 text-align: right; 120 text-align: right;
121 } 121 }
122 122
123 .extension-code-empty {
124 background-color: #eee;
125 display: inline-block;
126 line-height: 100px; /* vertically centers text and serves as min-height. */
Dan Beam 2015/03/31 00:33:50 nit: Vertically
Devlin 2015/03/31 16:17:51 Done.
127 text-align: center;
128 width: 100%;
129 }
130
123 .developer-extras > div, 131 .developer-extras > div,
124 .permanent-warnings > div { 132 .permanent-warnings > div {
125 margin: 5px 0; 133 margin: 5px 0;
126 } 134 }
127 135
128 #extension-settings #page-header { 136 #extension-settings #page-header {
129 /* These values match the .page values. */ 137 /* These values match the .page values. */
130 -webkit-margin-end: 24px; 138 -webkit-margin-end: 24px;
131 min-width: 576px; 139 min-width: 576px;
132 } 140 }
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 222
215 .action-links { 223 .action-links {
216 margin-bottom: 0.5em; 224 margin-bottom: 0.5em;
217 } 225 }
218 226
219 .action-links a { 227 .action-links a {
220 -webkit-margin-end: 1em; 228 -webkit-margin-end: 1em;
221 -webkit-margin-start: 0; 229 -webkit-margin-start: 0;
222 } 230 }
223 231
232 .action-links .errors-link {
233 align-items: center;
234 display: inline-flex;
235 vertical-align: bottom;
236 }
237
224 .extension-details { 238 .extension-details {
225 -webkit-box-flex: 1; 239 -webkit-box-flex: 1;
226 -webkit-padding-end: 7px; 240 -webkit-padding-end: 7px;
227 -webkit-padding-start: 55px; 241 -webkit-padding-start: 55px;
228 } 242 }
229 243
230 .extension-description, 244 .extension-description,
231 .extension-version, 245 .extension-version,
232 .extension-list-item-wrapper.inactive-extension .extension-details, 246 .extension-list-item-wrapper.inactive-extension .extension-details,
233 .location-text, 247 .location-text,
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 /* Sideload Wipeout */ 417 /* Sideload Wipeout */
404 418
405 .sideload-wipeout-learn-more { 419 .sideload-wipeout-learn-more {
406 text-decoration: none; 420 text-decoration: none;
407 } 421 }
408 422
409 .sideload-wipeout-banner .page-banner-text { 423 .sideload-wipeout-banner .page-banner-text {
410 -webkit-padding-start: 8px; 424 -webkit-padding-start: 8px;
411 background-image: none; 425 background-image: none;
412 } 426 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698