| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 #more-settings { | 5 #more-settings { |
| 6 background-color: #fafafa; | 6 background-color: #f6f6f6; |
| 7 border-bottom: 1px solid #e1e1e1; | 7 border-bottom: 1px solid #e1e1e1; |
| 8 border-top: 1px solid #e1e1e1; | 8 border-top: 1px solid #e1e1e1; |
| 9 margin-top: 4px; | 9 margin-top: 4px; |
| 10 min-height: 51px; | 10 min-height: 51px; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #more-settings .more-settings-icon { | 13 #more-settings .more-settings-icon { |
| 14 background-repeat: no-repeat; | 14 background-repeat: no-repeat; |
| 15 display: inline-block; | 15 display: inline-block; |
| 16 height: 11px; | 16 height: 11px; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 29 background-image: -webkit-image-set( | 29 background-image: -webkit-image-set( |
| 30 url('../images/1x/minus.png') 1x, | 30 url('../images/1x/minus.png') 1x, |
| 31 url('../images/2x/minus.png') 2x); | 31 url('../images/2x/minus.png') 2x); |
| 32 } | 32 } |
| 33 | 33 |
| 34 #more-settings .more-settings-icon-plus { | 34 #more-settings .more-settings-icon-plus { |
| 35 background-image: -webkit-image-set( | 35 background-image: -webkit-image-set( |
| 36 url('../images/1x/plus.png') 1x, | 36 url('../images/1x/plus.png') 1x, |
| 37 url('../images/2x/plus.png') 2x); | 37 url('../images/2x/plus.png') 2x); |
| 38 } | 38 } |
| OLD | NEW |