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

Side by Side Diff: chrome/renderer/resources/plugin_placeholders.css

Issue 12634025: Inconsistent use of [x] close panel icon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_173251
Patch Set: Renamed button_close_2* to close_2* Created 7 years, 9 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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 body { 5 body {
6 font-family: sans-serif; 6 font-family: sans-serif;
7 margin: 0; 7 margin: 0;
8 overflow: hidden; 8 overflow: hidden;
9 text-align: center; 9 text-align: center;
10 -webkit-user-select: none; 10 -webkit-user-select: none;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <if expr="not pp_ifdef('android')"> 53 <if expr="not pp_ifdef('android')">
54 visibility: hidden; 54 visibility: hidden;
55 </if> 55 </if>
56 cursor: pointer; 56 cursor: pointer;
57 position: absolute; 57 position: absolute;
58 right: 3px; 58 right: 3px;
59 top: 3px; 59 top: 3px;
60 height: 14px; 60 height: 14px;
61 width: 14px; 61 width: 14px;
62 background-image: -webkit-image-set( 62 background-image: -webkit-image-set(
63 url('../../../ui/resources/default_100_percent/close_bar.png') 1x, 63 url('../../../ui/resources/default_100_percent/close_2.png')
64 url('../../../ui/resources/default_200_percent/close_bar.png') 2x); 64 1x,
flackr 2013/03/25 00:38:57 nit: These all seem like they should fit on one li
varkha 2013/03/25 13:55:58 Done.
65 url('../../../ui/resources/default_200_percent/close_2.png')
66 2x);
65 background-position: right top; 67 background-position: right top;
66 background-repeat: no-repeat; 68 background-repeat: no-repeat;
67 } 69 }
68 70
69 #close:hover { 71 #close:hover {
70 background-image: -webkit-image-set( 72 background-image: -webkit-image-set(
71 url('../../../ui/resources/default_100_percent/close_bar_hover.png') 1x, 73 url('../../../ui/resources/default_100_percent/close_2_hover.png')
72 url('../../../ui/resources/default_200_percent/close_bar_hover.png') 2x); 74 1x,
75 url('../../../ui/resources/default_200_percent/close_2_hover.png')
76 2x);
73 } 77 }
74 78
75 #close:active { 79 #close:active {
76 background-image: -webkit-image-set( 80 background-image: -webkit-image-set(
77 url('../../../ui/resources/default_100_percent/close_bar_pressed.png') 1x, 81 url('../../../ui/resources/default_100_percent/close_2_pressed.png')
78 url('../../../ui/resources/default_200_percent/close_bar_pressed.png') 82 1x,
79 2x); 83 url('../../../ui/resources/default_200_percent/close_2_pressed.png')
84 2x);
80 } 85 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/website_settings/website_settings_popup_view.cc ('k') | ui/resources/default_100_percent/close_2.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698