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; | |
|
Dan Beam
2013/08/21 23:41:03
^ why is this necessary?
Devlin
2013/08/22 18:29:06
It's for the "View source" links next to the error
Dan Beam
2013/08/29 00:24:30
I think href="#" or <button class="link-button"> a
| |
| 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 cursor: pointer; | |
| 16 text-align: center; | |
| 17 width: 100%; | |
| 18 } | |
| 19 | |
| 20 .extension-error-simple-wrapper { | |
| 21 display: -webkit-box; | |
|
Dan Beam
2013/08/21 23:41:03
why is this a box with nothing flexing?
Devlin
2013/08/22 18:29:06
-webkit-box, -webkit-flex, -webkit-inline-box, and
Dan Beam
2013/08/29 00:24:30
white-space: nowrap; if I understand what your pre
| |
| 22 width: 100%; | |
| 23 } | |
| 24 | |
| 25 .extension-error-simple-wrapper > :first-child { | |
| 26 width: 85%; | |
| 27 } | |
| 28 | |
| 29 .extension-error-icon-error, | |
| 30 .extension-error-icon-log, | |
| 31 .extension-error-icon-warn { | |
| 32 -webkit-margin-end: 3px; | |
| 33 -webkit-margin-start: 3px; | |
| 34 height: 15px; | |
| 35 vertical-align: middle; | |
| 36 width: 15px; | |
| 37 } | |
| 38 | |
| 39 .extension-error-message { | |
| 40 color: rgba(200, 50, 50, 255); | |
| 41 } | |
| OLD | NEW |