| OLD | NEW | 
|---|
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 .topbutton-bar { | 5 .topbutton-bar { | 
| 6   -webkit-box-align: center; | 6   -webkit-box-align: center; | 
| 7   display: -webkit-box; | 7   display: -webkit-box; | 
| 8 } | 8 } | 
| 9 | 9 | 
| 10 .topbutton-bar button { | 10 .topbutton-bar button { | 
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 46   background-image: -webkit-image-set( | 46   background-image: -webkit-image-set( | 
| 47       url(chrome://resources/images/apps/topbar_button_minimize.png) 1x, | 47       url(chrome://resources/images/apps/topbar_button_minimize.png) 1x, | 
| 48       url(chrome://resources/images/2x/apps/topbar_button_minimize.png) 2x); | 48       url(chrome://resources/images/2x/apps/topbar_button_minimize.png) 2x); | 
| 49 } | 49 } | 
| 50 | 50 | 
| 51 .topbutton-bar .close-button { | 51 .topbutton-bar .close-button { | 
| 52   background-image: -webkit-image-set( | 52   background-image: -webkit-image-set( | 
| 53       url(chrome://resources/images/apps/topbar_button_close.png) 1x, | 53       url(chrome://resources/images/apps/topbar_button_close.png) 1x, | 
| 54       url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x); | 54       url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x); | 
| 55 } | 55 } | 
| 56 |  | 
| 57 .topbutton-bar .gear-button { |  | 
| 58   background-image: -webkit-image-set( |  | 
| 59       url(chrome://resources/images/apps/topbar_button_settings.png) 1x, |  | 
| 60       url(chrome://resources/images/2x/apps/topbar_button_settings.png) 2x); |  | 
| 61 } |  | 
| OLD | NEW | 
|---|