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

Side by Side Diff: chrome/browser/resources/plugins.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 /* 1 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 margin: 10px; 8 margin: 10px;
9 min-width: 47em; 9 min-width: 47em;
10 } 10 }
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 } 105 }
106 106
107 body.hideTmiModeInitial .showInTmiMode { 107 body.hideTmiModeInitial .showInTmiMode {
108 height: 0 !important; 108 height: 0 !important;
109 opacity: 0; 109 opacity: 0;
110 } 110 }
111 111
112 body.hideTmiMode .showInTmiMode { 112 body.hideTmiMode .showInTmiMode {
113 height: 0 !important; 113 height: 0 !important;
114 opacity: 0; 114 opacity: 0;
115 -webkit-transition: all .1s ease-out; 115 -webkit-transition: all 100ms ease-out;
116 } 116 }
117 117
118 body.showTmiModeInitial .showInTmiMode { 118 body.showTmiModeInitial .showInTmiMode {
119 opacity: 1; 119 opacity: 1;
120 } 120 }
121 121
122 body.showTmiMode .showInTmiMode { 122 body.showTmiMode .showInTmiMode {
123 opacity: 1; 123 opacity: 1;
124 -webkit-transition: all .1s ease-in; 124 -webkit-transition: all 100ms ease-in;
125 } 125 }
126 126
127 .wbox-tmi-mode { 127 .wbox-tmi-mode {
128 -webkit-box-align: stretch; 128 -webkit-box-align: stretch;
129 -webkit-box-flex: 1; 129 -webkit-box-flex: 1;
130 } 130 }
131 131
132 .tmi-mode-image { 132 .tmi-mode-image {
133 margin-top: 2px; 133 margin-top: 2px;
134 padding-left: 5px; 134 padding-left: 5px;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 /* Match the indentation of .plugin-text. */ 245 /* Match the indentation of .plugin-text. */
246 .plugin-actions { 246 .plugin-actions {
247 -webkit-padding-start: 5px; 247 -webkit-padding-start: 5px;
248 margin-top: 0.2em; 248 margin-top: 0.2em;
249 margin-bottom: 0.2em; 249 margin-bottom: 0.2em;
250 } 250 }
251 251
252 button { 252 button {
253 font-size: 104%; 253 font-size: 104%;
254 } 254 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/options_page.css ('k') | chrome/browser/resources/print_preview/print_preview.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698