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

Side by Side Diff: chrome/browser/resources/options/manage_profile_overlay.css

Issue 8680003: Clean-up: Change chrome/browser's CSS time units from s to ms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reverting change to 1.8s -> 1800ms in print_preview.css Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 5
6 #manage-profile-overlay { 6 #manage-profile-overlay {
7 width: 500px; 7 width: 500px;
8 } 8 }
9 9
10 .profile-icon-grid-item { 10 .profile-icon-grid-item {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #manage-profile-name { 46 #manage-profile-name {
47 -webkit-box-flex: 1; 47 -webkit-box-flex: 1;
48 display: block; 48 display: block;
49 } 49 }
50 50
51 #manage-profile-name:invalid { 51 #manage-profile-name:invalid {
52 background-color: pink; 52 background-color: pink;
53 } 53 }
54 54
55 #manage-profile-error-bubble { 55 #manage-profile-error-bubble {
56 -webkit-transition: max-height 0.2s, padding 0.2s; 56 -webkit-transition: max-height 200ms, padding 200ms;
57 background-color: #eeb939; 57 background-color: #eeb939;
58 border-radius: 4px; 58 border-radius: 4px;
59 font-weight: bold; 59 font-weight: bold;
60 margin-left: auto; 60 margin-left: auto;
61 margin-right: auto; 61 margin-right: auto;
62 max-height: 50px; 62 max-height: 50px;
63 overflow: hidden; 63 overflow: hidden;
64 padding: 1px 10px; 64 padding: 1px 10px;
65 text-align: center; 65 text-align: center;
66 width: 80%; 66 width: 80%;
67 } 67 }
68 68
69 #manage-profile-error-bubble[hidden] { 69 #manage-profile-error-bubble[hidden] {
70 display: block !important; 70 display: block !important;
71 max-height: 0; 71 max-height: 0;
72 padding: 0 10px; 72 padding: 0 10px;
73 } 73 }
74 74
75 #manage-profile-icon-grid { 75 #manage-profile-icon-grid {
76 background-color: rgba(255, 255, 255, 0.75); 76 background-color: rgba(255, 255, 255, 0.75);
77 border: 1px solid rgba(0, 0, 0, 0.3); 77 border: 1px solid rgba(0, 0, 0, 0.3);
78 padding: 2px; 78 padding: 2px;
79 } 79 }
80 80
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/language_options.css ('k') | chrome/browser/resources/options/options_page.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698