Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 .extension-error-list a { | |
| 6 cursor: pointer; | |
| 7 } | |
| 8 | |
| 9 .extension-error-list-contents { | |
| 10 -webkit-padding-start: 20px; | |
| 11 list-style-type: none; | |
| 12 } | |
| 13 | |
| 14 .extension-error-list-show-more { | |
| 15 text-align: center; | |
| 16 width: 100%; | |
| 17 } | |
| 18 | |
| 19 .extension-error-simple-wrapper { | |
| 20 width: 100%; | |
| 21 } | |
| 22 | |
| 23 .extension-error-icon { | |
| 24 -webkit-margin-end: 3px; | |
| 25 -webkit-margin-start: 3px; | |
| 26 height: 15px; | |
| 27 vertical-align: middle; | |
| 28 width: 15px; | |
| 29 } | |
| 30 | |
| 31 .extension-error-log .extension-error-message { | |
| 32 color: #333; | |
| 33 } | |
| 34 .extension-error-log .extension-error-icon { | |
| 35 content: url('extension_error_log.png'); | |
| 36 } | |
| 37 | |
| 38 .extension-error-warn .extension-error-message { | |
|
Dan Beam
2013/08/29 00:24:30
hmmm, error-warn and error-error are awkward. ext
Devlin
2013/08/29 21:02:04
Yeah, I thought error-error was odd, too. But I t
| |
| 39 color: rgba(250, 145, 0, 255); | |
| 40 } | |
| 41 .extension-error-warn .extension-error-icon { | |
| 42 content: url('extension_error_warn.png'); | |
| 43 } | |
| 44 | |
| 45 .extension-error-error .extension-error-message { | |
| 46 color: rgba(200, 50, 50, 255); | |
| 47 } | |
| 48 .extension-error-error .extension-error-icon { | |
| 49 content: url('extension_error_error.png'); | |
| 50 } | |
| OLD | NEW |