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

Side by Side Diff: chrome/browser/resources/ntp4/new_tab.css

Issue 7592001: ntp4: most visited dragging onto apps page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment Created 9 years, 4 months 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 html { 6 html {
7 font-family: segoe ui, arial, helvetica, sans-serif; 7 font-family: segoe ui, arial, helvetica, sans-serif;
8 font-size: 14px; 8 font-size: 14px;
9 /* It's necessary to put this here instead of in body in order to get the 9 /* It's necessary to put this here instead of in body in order to get the
10 background-size of 100% to work properly */ 10 background-size of 100% to work properly */
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 #trash { 152 #trash {
153 height: 100%; 153 height: 100%;
154 position: absolute; 154 position: absolute;
155 opacity: 0; 155 opacity: 0;
156 right: 0; 156 right: 0;
157 top: 50px; 157 top: 50px;
158 -webkit-transition: top 0.2s, opacity 0; 158 -webkit-transition: top 0.2s, opacity 0;
159 -webkit-transition-delay: 0, 0.2s; 159 -webkit-transition-delay: 0, 0.2s;
160 } 160 }
161 161
162 #footer.dragging-mode #trash { 162 #footer.showing-trash-mode #trash {
163 opacity: 1; 163 opacity: 1;
164 top: 0; 164 top: 0;
165 -webkit-transition-delay: 0, 0; 165 -webkit-transition-delay: 0, 0;
166 } 166 }
167 167
168 #trash > span { 168 #trash > span {
169 background-image: url('./trash.png'); 169 background-image: url('./trash.png');
170 background-position: 7px; 170 background-position: 7px;
171 background-repeat: no-repeat; 171 background-repeat: no-repeat;
172 border: 1px dashed #7f7f7f; 172 border: 1px dashed #7f7f7f;
(...skipping 21 matching lines...) Expand all
194 min-width: 26px; 194 min-width: 26px;
195 opacity: 0.3; 195 opacity: 0.3;
196 top: 0; 196 top: 0;
197 z-index: 5; 197 z-index: 5;
198 -webkit-transition: width 150ms, right 150ms, background-color 150ms; 198 -webkit-transition: width 150ms, right 150ms, background-color 150ms;
199 } 199 }
200 200
201 .page-switcher:hover { 201 .page-switcher:hover {
202 background-color: rgba(0, 0, 0, 0.2); 202 background-color: rgba(0, 0, 0, 0.2);
203 } 203 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/most_visited_page.js ('k') | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698