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

Side by Side Diff: chrome/browser/resources/ntp_search/thumbnail_page.css

Issue 10829131: Refactoring NTP5: new implementation of TilePage and MostVisitedPage (which now inherits from Thumb… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Implemented changes suggested by Jeremy Created 8 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
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 .filler .thumbnail {
6 display: none !important;
7 }
8
9 .thumbnail {
10 display: block;
11 height: 100%;
12 position: relative;
13 width: 100%;
14 }
15
16 .thumbnail .thumbnail-wrapper {
17 display: block;
18 }
19
20 .thumbnail .thumbnail-image {
21 background-size: 100%;
22 display: block;
23 height: 100%;
24 position: absolute;
25 width: 100%;
26 }
27
28 .thumbnail .title {
29 color: #777;
30 display: none;
31 font: 11px Arial;
32 overflow: hidden;
33 position: absolute;
34 text-align: center;
35 text-overflow: ellipsis;
36 white-space: nowrap;
37 width: 100%;
38 }
39
40 .thumbnail:hover .title {
41 bottom: -18px;
42 display: block;
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698