| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 opacity: 1.0; | 65 opacity: 1.0; |
| 66 } | 66 } |
| 67 | 67 |
| 68 .toolbar-search button.search-action-button { | 68 .toolbar-search button.search-action-button { |
| 69 border: 1px solid rgb(163, 163, 163); | 69 border: 1px solid rgb(163, 163, 163); |
| 70 border-radius: 8px; | 70 border-radius: 8px; |
| 71 margin: 0; | 71 margin: 0; |
| 72 background-image: linear-gradient(rgb(241, 241, 241), rgb(220, 220, 220)); | 72 background-image: linear-gradient(rgb(241, 241, 241), rgb(220, 220, 220)); |
| 73 width: 100%; | 73 width: 100%; |
| 74 height: 20px; | 74 height: 20px; |
| 75 white-space: nowrap; |
| 75 } | 76 } |
| 76 | 77 |
| 77 .toolbar-search button.search-action-button:active { | 78 .toolbar-search button.search-action-button:active { |
| 78 background-image: linear-gradient(rgb(185, 185, 185), rgb(156, 156, 156)); | 79 background-image: linear-gradient(rgb(185, 185, 185), rgb(156, 156, 156)); |
| 79 } | 80 } |
| 80 | 81 |
| 81 .toolbar-search-control { | 82 .toolbar-search-control { |
| 82 display: -webkit-flex; | 83 display: -webkit-flex; |
| 83 position: relative; | 84 position: relative; |
| 84 background-color: white; | 85 background-color: white; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168,
168), rgb(116, 116, 116)); | 125 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168,
168), rgb(116, 116, 116)); |
| 125 } | 126 } |
| 126 | 127 |
| 127 .search-results-matches { | 128 .search-results-matches { |
| 128 display: inline-block; | 129 display: inline-block; |
| 129 text-align: right; | 130 text-align: right; |
| 130 font-size: 11px; | 131 font-size: 11px; |
| 131 padding: 0 4px; | 132 padding: 0 4px; |
| 132 color: rgb(165, 165, 165); | 133 color: rgb(165, 165, 165); |
| 133 } | 134 } |
| OLD | NEW |