Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: ui/webui/resources/css/apps/topbutton_bar.css

Issue 1296373003: Remove unused assets, update old assets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698