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

Side by Side Diff: chrome/browser/resources/chromeos/login/header_bar.css

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 years 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 #login-header-bar { 5 #login-header-bar {
6 -webkit-padding-start: 15px; 6 -webkit-padding-start: 15px;
7 bottom: 0; 7 bottom: 0;
8 left: 0; 8 left: 0;
9 padding-bottom: 6px; 9 padding-bottom: 6px;
10 position: absolute; 10 position: absolute;
11 right: 0; 11 right: 0;
12 } 12 }
13 13
14 #login-header-bar { 14 #login-header-bar {
15 background-color: rgba(0, 0, 0, 0.6); 15 background-color: rgba(0, 0, 0, 0.6);
16 padding-top: 7px; 16 padding-top: 7px;
17 } 17 }
18 18
19 html[screen=lock] .login-header-bar-hidden, 19 html[screen=lock] .login-header-bar-hidden,
20 html[screen=oobe] .login-header-bar-hidden { 20 html[screen=oobe] .login-header-bar-hidden {
21 opacity: 0; 21 opacity: 0;
22 } 22 }
23 23
24 html[screen=lock] .login-header-bar-animate-fast, 24 html[screen=lock] .login-header-bar-animate-fast,
25 html[screen=oobe] .login-header-bar-animate-fast { 25 html[screen=oobe] .login-header-bar-animate-fast {
26 -webkit-transition: opacity 200ms ease-out; 26 transition: opacity 200ms ease-out;
27 } 27 }
28 28
29 html[screen=lock] .login-header-bar-animate-slow, 29 html[screen=lock] .login-header-bar-animate-slow,
30 html[screen=oobe] .login-header-bar-animate-slow { 30 html[screen=oobe] .login-header-bar-animate-slow {
31 -webkit-transition: opacity 2s ease-out; 31 transition: opacity 2s ease-out;
32 } 32 }
33 33
34 #login-header-bar button, 34 #login-header-bar button,
35 #login-header-bar button:active, 35 #login-header-bar button:active,
36 #login-header-bar button:focus, 36 #login-header-bar button:focus,
37 #login-header-bar button:hover { 37 #login-header-bar button:hover {
38 background: transparent none; 38 background: transparent none;
39 box-shadow: none; 39 box-shadow: none;
40 cursor: pointer; 40 cursor: pointer;
41 height: 34px; 41 height: 34px;
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 #login-header-bar #cancel-multiple-sign-in-button-text { 148 #login-header-bar #cancel-multiple-sign-in-button-text {
149 /* TODO(dzhioev): replace with appropriate image when possible. */ 149 /* TODO(dzhioev): replace with appropriate image when possible. */
150 background-image: url(chrome://theme/IDR_PANEL_CLOSE); 150 background-image: url(chrome://theme/IDR_PANEL_CLOSE);
151 } 151 }
152 152
153 .button-restricted { 153 .button-restricted {
154 border: 1px solid transparent; 154 border: 1px solid transparent;
155 color: white !important; 155 color: white !important;
156 opacity: 0.4 !important; 156 opacity: 0.4 !important;
157 } 157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698