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

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

Issue 7038051: NTP4: Add ability to drag links to the apps pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: this.ownerDocument Created 9 years, 7 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/apps_page.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 .app { 6 .app {
7 position: absolute; 7 position: absolute;
8 text-align: center; 8 text-align: center;
9 } 9 }
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 /* We need to ensure there is no animation applied to its position 44 /* We need to ensure there is no animation applied to its position
45 (or the drag touch may stop being over top of it */ 45 (or the drag touch may stop being over top of it */
46 -webkit-transition: none !important; 46 -webkit-transition: none !important;
47 47
48 /* Ensure the element has a large z-index so that we can get events 48 /* Ensure the element has a large z-index so that we can get events
49 for it as it moves over other elements. This is animated as the 49 for it as it moves over other elements. This is animated as the
50 element flys back, so we want a large value that will stay large until 50 element flys back, so we want a large value that will stay large until
51 its almost home. */ 51 its almost home. */
52 z-index: 100; 52 z-index: 100;
53 } 53 }
54
55 /* Link (bookmark) tiles. */
56 .link {
57 display: -webkit-box;
58 position: absolute;
59 -webkit-box-orient: vertical;
60 }
61
62 .link > * {
63 -webkit-box-flex: 1;
64 }
65
66 .link span {
67 display: block;
68 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/ntp4/apps_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698