Chromium Code Reviews| 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; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 95 .toolbar-search-buttons { | 95 .toolbar-search-buttons { |
| 96 flex-basis: 165px; | 96 flex-basis: 165px; |
| 97 } | 97 } |
| 98 | 98 |
| 99 .toolbar-replace-control, | 99 .toolbar-replace-control, |
| 100 #search-input-field { | 100 #search-input-field { |
| 101 margin-top: 1px; | 101 margin-top: 1px; |
| 102 line-height: 17px; | 102 line-height: 17px; |
| 103 } | 103 } |
| 104 | 104 |
| 105 .toolbar-search-control, .toolbar-replace-control { | 105 .toolbar-search-control, input.toolbar-replace-control { |
|
pfeldman
2017/05/31 21:51:15
ditto
luoe
2017/06/01 01:10:43
SearchableView's input fields are exceptions that
| |
| 106 border: 1px solid rgb(163, 163, 163); | 106 border: 1px solid rgb(163, 163, 163); |
| 107 height: 20px; | 107 height: 20px; |
| 108 border-radius: 2px; | 108 border-radius: 2px; |
| 109 width: 100%; | 109 width: 100%; |
| 110 margin-top: 1px; | 110 margin-top: 1px; |
| 111 } | 111 } |
| 112 | 112 |
| 113 .toolbar-search-navigation.enabled:active { | 113 .toolbar-search-navigation.enabled:active { |
| 114 background-position: 4px 7px, 0 0; | 114 background-position: 4px 7px, 0 0; |
| 115 } | 115 } |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 136 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116)); | 136 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116)); |
| 137 } | 137 } |
| 138 | 138 |
| 139 .search-results-matches { | 139 .search-results-matches { |
| 140 display: inline-block; | 140 display: inline-block; |
| 141 text-align: right; | 141 text-align: right; |
| 142 padding: 0 4px; | 142 padding: 0 4px; |
| 143 color: rgb(165, 165, 165); | 143 color: rgb(165, 165, 165); |
| 144 align-self: center; | 144 align-self: center; |
| 145 } | 145 } |
| OLD | NEW |