| 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 :host { |    7 :host { | 
|    8     flex: none; |    8     flex: none; | 
|    9     padding: 0 2px; |    9     padding: 0 2px; | 
|   10 } |   10 } | 
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  221  |  221  | 
|  222 /* Input */ |  222 /* Input */ | 
|  223  |  223  | 
|  224 .toolbar-input { |  224 .toolbar-input { | 
|  225     width: 120px; |  225     width: 120px; | 
|  226     height: 20px; |  226     height: 20px; | 
|  227     padding: 3px; |  227     padding: 3px; | 
|  228     margin: 1px 3px; |  228     margin: 1px 3px; | 
|  229     background-color: white; |  229     background-color: white; | 
|  230     border: solid 1px #d8d8d8; |  230     border: solid 1px #d8d8d8; | 
 |  231     border-radius: 2px; | 
|  231     min-width: 35px; |  232     min-width: 35px; | 
|  232 } |  233 } | 
|  233  |  234  | 
|  234 .toolbar-input.focused, |  235 .toolbar-input.focused, | 
|  235 .toolbar-input.hover { |  236 .toolbar-input.hover { | 
|  236     border: solid 1px rgb(202, 202, 202); |  237     border: solid 1px rgb(202, 202, 202); | 
|  237 } |  238 } | 
|  238  |  239  | 
|  239 .toolbar-input > input { |  240 .toolbar-input > input { | 
|  240     border: none; |  241     border: none; | 
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  295  |  296  | 
|  296 .toolbar-shadow.floating { |  297 .toolbar-shadow.floating { | 
|  297     flex-direction: column; |  298     flex-direction: column; | 
|  298     height: auto; |  299     height: auto; | 
|  299     background-color: white; |  300     background-color: white; | 
|  300     border: 1px solid #ccc; |  301     border: 1px solid #ccc; | 
|  301     margin-top: -1px; |  302     margin-top: -1px; | 
|  302     width: 28px; |  303     width: 28px; | 
|  303     left: -2px; |  304     left: -2px; | 
|  304 } |  305 } | 
| OLD | NEW |