OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .search-drawer-header { | 7 .search-drawer-header { |
8 flex: none; | 8 flex: none; |
9 display: flex; | 9 display: flex; |
10 border-bottom: 2px solid #e8e8e8; | 10 border-bottom: 2px solid #e8e8e8; |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 background-image: url(Images/toolbarButtonGlyphs_2x.png); | 98 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
99 } | 99 } |
100 } /* media */ | 100 } /* media */ |
101 | 101 |
102 .search-view .search-results { | 102 .search-view .search-results { |
103 overflow-y: auto; | 103 overflow-y: auto; |
104 display: flex; | 104 display: flex; |
105 flex: auto; | 105 flex: auto; |
106 } | 106 } |
107 | 107 |
| 108 .search-view .search-results > div { |
| 109 flex: auto; |
| 110 } |
| 111 |
108 .search-results .empty-view { | 112 .search-results .empty-view { |
109 pointer-events: none; | 113 pointer-events: none; |
110 } | 114 } |
111 | 115 |
112 .empty-view { | 116 .empty-view { |
113 font-size: 24px; | 117 font-size: 24px; |
114 color: rgb(75%, 75%, 75%); | 118 color: rgb(75%, 75%, 75%); |
115 font-weight: bold; | 119 font-weight: bold; |
116 padding: 10px; | 120 padding: 10px; |
117 display: flex; | 121 display: flex; |
118 align-items: center; | 122 align-items: center; |
119 justify-content: center; | 123 justify-content: center; |
120 } | 124 } |
OLD | NEW |