Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 .sidebar-hidden-override { | 30 .sidebar-hidden-override { |
| 31 display: none !important; | 31 display: none !important; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .expandable-view-title { | 34 .expandable-view-title { |
| 35 display: flex; | 35 display: flex; |
| 36 align-items: center; | 36 align-items: center; |
| 37 background-color: #eee; | 37 background-color: #f3f3f3; |
|
lushnikov
2016/10/12 21:41:56
For the record: this is to align our greys; this c
| |
| 38 height: 22px; | 38 height: 22px; |
| 39 padding: 0 5px; | 39 padding: 0 5px; |
| 40 border-top: 1px solid #dadada; | 40 border-top: 1px solid #dadada; |
| 41 white-space: nowrap; | 41 white-space: nowrap; |
| 42 overflow: hidden; | 42 overflow: hidden; |
| 43 position: relative; | 43 position: relative; |
| 44 border-bottom: 1px solid transparent; | 44 border-bottom: 1px solid transparent; |
| 45 } | 45 } |
| 46 | 46 |
| 47 .expandable-view-title.expanded, | 47 .expandable-view-title.expanded, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 90 top: 0; | 90 top: 0; |
| 91 } | 91 } |
| 92 | 92 |
| 93 .sidebar-pane-container .toolbar { | 93 .sidebar-pane-container .toolbar { |
| 94 border-bottom: 1px solid #eee; | 94 border-bottom: 1px solid #eee; |
| 95 } | 95 } |
| 96 | 96 |
| 97 .sidebar-pane-container .toolbar > * { | 97 .sidebar-pane-container .toolbar > * { |
| 98 pointer-events: auto; | 98 pointer-events: auto; |
| 99 } | 99 } |
| OLD | NEW |