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

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

Issue 1085993003: Plugin Power Saver: Make posters work right when image is 404 Not Found. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0263-plugin-power-saver-heuristic-tests
Patch Set: Created 5 years, 8 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 html {
6 height: 100%;
7 width: 100%;
8 }
9
5 body { 10 body {
6 font-family: sans-serif; 11 font-family: sans-serif;
7 margin: 0; 12 margin: 0;
8 overflow: hidden; 13 overflow: hidden;
9 text-align: center; 14 text-align: center;
10 -webkit-user-select: none; 15 -webkit-user-select: none;
16 height: 100%;
17 width: 100%;
11 } 18 }
12 19
13 h1 { 20 h1 {
14 font-size: 10pt; 21 font-size: 10pt;
15 font-weight: normal; 22 font-weight: normal;
16 padding: 0pt 10pt; 23 padding: 0pt 10pt;
17 <if expr="not is_android and not chromeos"> 24 <if expr="not is_android and not chromeos">
18 visibility: hidden; 25 visibility: hidden;
19 </if> 26 </if>
20 } 27 }
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 background-image: -webkit-image-set( 77 background-image: -webkit-image-set(
71 url(../../../ui/resources/default_100_percent/close_2_hover.png) 1x, 78 url(../../../ui/resources/default_100_percent/close_2_hover.png) 1x,
72 url(../../../ui/resources/default_200_percent/close_2_hover.png) 2x); 79 url(../../../ui/resources/default_200_percent/close_2_hover.png) 2x);
73 } 80 }
74 81
75 #close:active { 82 #close:active {
76 background-image: -webkit-image-set( 83 background-image: -webkit-image-set(
77 url(../../../ui/resources/default_100_percent/close_2_pressed.png) 1x, 84 url(../../../ui/resources/default_100_percent/close_2_pressed.png) 1x,
78 url(../../../ui/resources/default_200_percent/close_2_pressed.png) 2x); 85 url(../../../ui/resources/default_200_percent/close_2_pressed.png) 2x);
79 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698