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

Side by Side Diff: Source/core/css/pluginPlaceholder.css

Issue 516273002: Move plugin placeholder style to CSS, and allow it to bypass main world CSP. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add the actual .css file Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * The style sheet loaded for plugin placeholders.
haraken 2014/09/01 00:59:43 This comment should be written after the copyright
jbroman 2014/09/02 15:44:04 This comment is removed in the latest patchset. (
3 *
4 * Copyright 2014 The Chromium Authors. All rights reserved.
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9 #plugin-placeholder {
10 width: 100%;
11 height: 100%;
12 overflow: hidden;
13 display: flex;
14 align-items: center;
15 background: gray;
16 font: 12px -webkit-control;
17 }
18
19 #plugin-placeholder-content {
20 text-align: center;
21 margin: auto;
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698