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

Unified Diff: chrome/browser/resources/file_manager/foreground/css/video_player.css

Issue 210623003: [VideoPlayer] Remove the old video player from Files.app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/file_manager/foreground/css/video_player.css
diff --git a/chrome/browser/resources/file_manager/foreground/css/video_player.css b/chrome/browser/resources/file_manager/foreground/css/video_player.css
deleted file mode 100644
index decb63dfee8bc5e0e0e2c194ba22a7e6e30d6d4c..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/file_manager/foreground/css/video_player.css
+++ /dev/null
@@ -1,103 +0,0 @@
-/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file. */
-
-body {
- -webkit-user-select: none;
- background: black;
- font-family: Noto Sans UI,Droid Sans Fallback,sans-serif;
- font-size: 84%;
- margin: 0;
- overflow: hidden;
-}
-
-#video-player {
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
-}
-
-#video-container {
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
-}
-
-video {
- height: 100%;
- left: 0;
- pointer-events: none;
- position: absolute;
- top: 0;
- width: 100%;
-}
-
-#controls-wrapper {
- -webkit-box-align: center;
- -webkit-box-orient: horizontal;
- -webkit-box-pack: center;
- bottom: 0;
- display: -webkit-box;
- left: 0;
- position: absolute;
- right: 0;
-}
-
-#controls {
- -webkit-box-flex: 1;
- display: -webkit-box;
-}
-
-#video-player:not([tools]) .tool {
- opacity: 0;
-}
-
-#video-player:not([tools]) {
- cursor: none;
-}
-
-#video-player[disabled] .tool {
- display: none;
-}
-
-.tool {
- transition: opacity 180ms linear;
-}
-
-#error-wrapper {
- -webkit-box-align: center;
- -webkit-box-orient: horizontal;
- -webkit-box-pack: center;
- display: -webkit-box;
- height: 100%;
- left: 0;
- pointer-events: none;
- position: absolute;
- top: 0;
- width: 100%;
-}
-
-#error {
- -webkit-box-align: center;
- -webkit-box-orient: horizontal;
- -webkit-box-pack: center;
- background-color: rgba(24, 24, 24, 1);
- background-image: -webkit-image-set(
- url('../images/media/error.png') 1x,
- url('../images/media/2x/error.png') 2x);
- background-position: 25px center;
- background-repeat: no-repeat;
- color: white;
- display: -webkit-box;
- height: 54px;
- padding-left: 70px;
- padding-right: 35px;
-}
-
-#error:not([visible]) {
- display: none;
-}

Powered by Google App Engine
This is Rietveld 408576698