| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 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-bar { | 7 .search-bar { |
| 8 flex: 0 0 23px; | 8 flex: 0 0 23px; |
| 9 background-color: #eee; | 9 background-color: #eee; |
| 10 border-top: 1px solid #ccc; | 10 border-top: 1px solid #ccc; |
| 11 display: flex; | 11 display: flex; |
| 12 overflow: hidden; | 12 overflow: hidden; |
| 13 z-index: 0; |
| 13 } | 14 } |
| 14 | 15 |
| 15 .search-bar.replaceable { | 16 .search-bar.replaceable { |
| 16 flex: 0 0 44px; | 17 flex: 0 0 44px; |
| 17 } | 18 } |
| 18 | 19 |
| 19 .search-toolbar { | 20 .search-toolbar { |
| 20 margin-top: -2px; | 21 margin-top: -2px; |
| 21 } | 22 } |
| 22 | 23 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168,
168), rgb(116, 116, 116)); | 126 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168,
168), rgb(116, 116, 116)); |
| 126 } | 127 } |
| 127 | 128 |
| 128 .search-results-matches { | 129 .search-results-matches { |
| 129 display: inline-block; | 130 display: inline-block; |
| 130 text-align: right; | 131 text-align: right; |
| 131 font-size: 11px; | 132 font-size: 11px; |
| 132 padding: 0 4px; | 133 padding: 0 4px; |
| 133 color: rgb(165, 165, 165); | 134 color: rgb(165, 165, 165); |
| 134 } | 135 } |
| OLD | NEW |