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

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

Issue 599103004: Provide a small amount of padding in extension errors for the highlight border (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Dan's Created 6 years, 2 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 | 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 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 .extension-error-list a { 5 .extension-error-list a {
6 cursor: pointer; 6 cursor: pointer;
7 } 7 }
8 8
9 .extension-error-list-contents { 9 .extension-error-list-contents {
10 -webkit-transition: max-height 500ms ease-in-out; 10 -webkit-transition: max-height 500ms ease-in-out;
(...skipping 27 matching lines...) Expand all
38 .extension-error-list-show-more { 38 .extension-error-list-show-more {
39 text-align: center; 39 text-align: center;
40 width: 100%; 40 width: 100%;
41 } 41 }
42 42
43 .extension-error-list-show-more button { 43 .extension-error-list-show-more button {
44 width: auto; 44 width: auto;
45 } 45 }
46 46
47 .extension-error-metadata { 47 .extension-error-metadata {
48 -webkit-padding-end: 1px;
48 display: flex; 49 display: flex;
49 flex-direction: row; 50 flex-direction: row;
50 width: 100%; 51 margin-bottom: 1px;
52 margin-top: 1px;
51 } 53 }
52 54
53 .extension-error-icon { 55 .extension-error-icon {
54 -webkit-margin-end: 3px; 56 -webkit-margin-end: 3px;
55 -webkit-margin-start: 3px; 57 -webkit-margin-start: 3px;
56 height: 15px; 58 height: 15px;
57 vertical-align: middle; 59 vertical-align: middle;
58 width: 15px; 60 width: 15px;
59 } 61 }
60 62
(...skipping 18 matching lines...) Expand all
79 .extension-error-severity-warning .extension-error-icon { 81 .extension-error-severity-warning .extension-error-icon {
80 content: url('extension_error_severity_warning.png'); 82 content: url('extension_error_severity_warning.png');
81 } 83 }
82 84
83 .extension-error-severity-fatal .extension-error-message { 85 .extension-error-severity-fatal .extension-error-message {
84 color: rgba(200, 50, 50, 255); 86 color: rgba(200, 50, 50, 255);
85 } 87 }
86 .extension-error-severity-fatal .extension-error-icon { 88 .extension-error-severity-fatal .extension-error-icon {
87 content: url('extension_error_severity_fatal.png'); 89 content: url('extension_error_severity_fatal.png');
88 } 90 }
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