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

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: Fixed compile on linux, mac and win 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') 1x,
64 url('../../../ui/resources/default_200_percent/close_bar.png') 2x); 64 url('../../../ui/resources/default_200_percent/close_2.png') 2x);
65 background-position: right top; 65 background-position: right top;
66 background-repeat: no-repeat; 66 background-repeat: no-repeat;
67 } 67 }
68 68
69 #close:hover { 69 #close:hover {
70 background-image: -webkit-image-set( 70 background-image: -webkit-image-set(
71 url('../../../ui/resources/default_100_percent/close_bar_hover.png') 1x, 71 url('../../../ui/resources/default_100_percent/close_2_hover.png') 1x,
72 url('../../../ui/resources/default_200_percent/close_bar_hover.png') 2x); 72 url('../../../ui/resources/default_200_percent/close_2_hover.png') 2x);
73 } 73 }
74 74
75 #close:active { 75 #close:active {
76 background-image: -webkit-image-set( 76 background-image: -webkit-image-set(
77 url('../../../ui/resources/default_100_percent/close_bar_pressed.png') 1x, 77 url('../../../ui/resources/default_100_percent/close_2_pressed.png') 1x,
78 url('../../../ui/resources/default_200_percent/close_bar_pressed.png') 78 url('../../../ui/resources/default_200_percent/close_2_pressed.png') 2x);
79 2x);
80 } 79 }
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