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

Side by Side Diff: chrome/browser/resources/ntp4/recently_closed.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 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
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.css ('k') | chrome/browser/resources/ntp4/tile_page.css » ('j') | 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) 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 #recently-closed-menu-button { 6 #recently-closed-menu-button {
7 background: none; 7 background: none;
8 border: 0; 8 border: 0;
9 color: #7F7F7F; 9 color: #7F7F7F;
10 cursor: pointer; 10 cursor: pointer;
11 display: block; 11 display: block;
12 font-size: 9pt; 12 font-size: 9pt;
13 font-weight: bold; 13 font-weight: bold;
14 /* The padding increases the clickable area. */ 14 /* The padding increases the clickable area. */
15 padding-bottom: 8px; 15 padding-bottom: 8px;
16 padding-top: 8px; 16 padding-top: 8px;
17 -webkit-appearance: none; 17 -webkit-appearance: none;
18 -webkit-transition: opacity 0.2s; 18 -webkit-transition: opacity 200ms;
19 -webkit-transition-delay: 0.1s; 19 -webkit-transition-delay: 100ms;
20 } 20 }
21 21
22 /* Reserve space for the menu button even when it's hidden. */ 22 /* Reserve space for the menu button even when it's hidden. */
23 #recently-closed-menu-button.invisible, 23 #recently-closed-menu-button.invisible,
24 #footer.showing-trash-mode #recently-closed-menu-button { 24 #footer.showing-trash-mode #recently-closed-menu-button {
25 visibility: hidden; 25 visibility: hidden;
26 } 26 }
27 27
28 #footer.showing-trash-mode #recently-closed-menu-button { 28 #footer.showing-trash-mode #recently-closed-menu-button {
29 opacity: 0; 29 opacity: 0;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 color: hsl(213, 90%, 24%) !important; 81 color: hsl(213, 90%, 24%) !important;
82 } 82 }
83 83
84 .disclosure-triangle { 84 .disclosure-triangle {
85 background-color: #7F7F7F; 85 background-color: #7F7F7F;
86 display: inline-block; 86 display: inline-block;
87 height: 9px; 87 height: 9px;
88 width: 9px; 88 width: 9px;
89 -webkit-mask-image: url('images/disclosure_triangle_mask.png'); 89 -webkit-mask-image: url('images/disclosure_triangle_mask.png');
90 } 90 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.css ('k') | chrome/browser/resources/ntp4/tile_page.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698