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

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

Issue 8043004: Disable bookmark pane in ntp4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: some half arsed css Created 9 years, 3 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
« no previous file with comments | « no previous file | chrome/browser/resources/ntp4/new_tab.js » ('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 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 min-width: 90px; 217 min-width: 90px;
218 top: 0; 218 top: 0;
219 z-index: 5; 219 z-index: 5;
220 -webkit-transition: width 150ms, right 150ms, background-color 150ms; 220 -webkit-transition: width 150ms, right 150ms, background-color 150ms;
221 } 221 }
222 222
223 .page-switcher:hover, 223 .page-switcher:hover,
224 .page-switcher.drag-target { 224 .page-switcher.drag-target {
225 background-color: rgba(0, 0, 0, 0.2); 225 background-color: rgba(0, 0, 0, 0.2);
226 } 226 }
227
228 html[dir=ltr] #page-switcher-start,
csilv 2011/09/23 23:29:20 Are these supposed to be part of this CL...?
229 html[dir=rtl] #page-switcher-end {
230 border-top-right-radius: 10px;
231 }
232
233 html[dir=rtl] #page-switcher-start,
234 html[dir=ltr] #page-switcher-end {
235 border-top-left-radius: 10px;
236 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698