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

Side by Side Diff: ui/login/bubble.css

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: js 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 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 * Css based bubble. 5 * Css based bubble.
6 */ 6 */
7 7
8 .bubble { 8 .bubble {
9 -webkit-transition: opacity 200ms ease-in-out; 9 transition: opacity 200ms ease-in-out;
Dan Beam 2016/11/29 06:17:12 alphabetize
Eric Willigers 2016/11/30 04:04:56 Done.
10 background: rgba(0, 0, 0, 0.8); 10 background: rgba(0, 0, 0, 0.8);
11 border-radius: 2px; 11 border-radius: 2px;
12 color: rgba(255, 255, 255, 0.87); 12 color: rgba(255, 255, 255, 0.87);
13 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 13 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
14 font-size: 12px; 14 font-size: 12px;
15 margin: 2px; 15 margin: 2px;
16 max-width: 250px; 16 max-width: 250px;
17 padding: 8px; 17 padding: 8px;
18 position: absolute; 18 position: absolute;
19 } 19 }
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 text-decoration: none; 153 text-decoration: none;
154 } 154 }
155 155
156 .error-message-bubble-padding { 156 .error-message-bubble-padding {
157 margin-bottom: 10px; 157 margin-bottom: 10px;
158 } 158 }
159 159
160 html[dir=rtl] .error-message-bubble { 160 html[dir=rtl] .error-message-bubble {
161 background-position: right top; 161 background-position: right top;
162 } 162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698