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

Side by Side Diff: chrome/browser/resources/video_player/css/video_player.css

Issue 196383030: [VideoPlayer] dedicated video player app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add the script file to the whitelist. Created 6 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 | Annotate | Revision Log
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 -webkit-user-select: none; 6 -webkit-user-select: none;
7 background: black; 7 background: black;
8 font-family: Noto Sans UI,Droid Sans Fallback,sans-serif; 8 font-family: Noto Sans UI,Droid Sans Fallback,sans-serif;
9 font-size: 84%; 9 font-size: 84%;
10 margin: 0; 10 margin: 0;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 top: 0; 80 top: 0;
81 width: 100%; 81 width: 100%;
82 } 82 }
83 83
84 #error { 84 #error {
85 -webkit-box-align: center; 85 -webkit-box-align: center;
86 -webkit-box-orient: horizontal; 86 -webkit-box-orient: horizontal;
87 -webkit-box-pack: center; 87 -webkit-box-pack: center;
88 background-color: rgba(24, 24, 24, 1); 88 background-color: rgba(24, 24, 24, 1);
89 background-image: -webkit-image-set( 89 background-image: -webkit-image-set(
90 url('../images/media/error.png') 1x, 90 url('../images/100/error.png') 1x,
91 url('../images/media/2x/error.png') 2x); 91 url('../images/200/error.png') 2x);
92 background-position: 25px center; 92 background-position: 25px center;
93 background-repeat: no-repeat; 93 background-repeat: no-repeat;
94 color: white; 94 color: white;
95 display: -webkit-box; 95 display: -webkit-box;
96 height: 54px; 96 height: 54px;
97 padding-left: 70px; 97 padding-left: 70px;
98 padding-right: 35px; 98 padding-right: 35px;
99 } 99 }
100 100
101 #error:not([visible]) { 101 #error:not([visible]) {
102 display: none; 102 display: none;
103 } 103 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/video_player/OWNERS ('k') | chrome/browser/resources/video_player/images/100/error.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698