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

Side by Side Diff: ui/file_manager/video_player/css/video_player.css

Issue 620803002: Video Player: Not hide the video control bar on error (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,sans-serif; 8 font-family: Noto Sans UI,sans-serif;
9 font-size: 84%; 9 font-size: 84%;
10 margin: 0; 10 margin: 0;
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 } 132 }
133 133
134 #video-player:not([tools]):not([casting]) .tool { 134 #video-player:not([tools]):not([casting]) .tool {
135 opacity: 0; 135 opacity: 0;
136 } 136 }
137 137
138 #video-player:not([tools]):not([casting]) { 138 #video-player:not([tools]):not([casting]) {
139 cursor: none; 139 cursor: none;
140 } 140 }
141 141
142 /* Hides controls when disabled mode */
143 #video-player[disabled] > #controls-wrapper .tool {
144 display: none;
145 }
146
147 .tool { 142 .tool {
148 transition: opacity 180ms linear; 143 transition: opacity 180ms linear;
149 } 144 }
150 145
151 #error-wrapper { 146 #error-wrapper {
152 -webkit-box-align: center; 147 -webkit-box-align: center;
153 -webkit-box-orient: horizontal; 148 -webkit-box-orient: horizontal;
154 -webkit-box-pack: center; 149 -webkit-box-pack: center;
155 display: -webkit-box; 150 display: -webkit-box;
156 height: 100%; 151 height: 100%;
(...skipping 17 matching lines...) Expand all
174 color: white; 169 color: white;
175 display: -webkit-box; 170 display: -webkit-box;
176 height: 54px; 171 height: 54px;
177 padding-left: 70px; 172 padding-left: 70px;
178 padding-right: 35px; 173 padding-right: 35px;
179 } 174 }
180 175
181 #error:not([visible]) { 176 #error:not([visible]) {
182 display: none; 177 display: none;
183 } 178 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698