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

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

Issue 7794005: [ntp4] More UI refinements. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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
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 /* Bookmark Tiles ************************************************************/ 6 /* Bookmark Tiles ************************************************************/
7 7
8 .bookmark { 8 .bookmark {
9 display: -webkit-box; 9 display: -webkit-box;
10 position: absolute; 10 position: absolute;
(...skipping 23 matching lines...) Expand all
34 right: auto; 34 right: auto;
35 } 35 }
36 36
37 .bookmark:hover .close-button { 37 .bookmark:hover .close-button {
38 opacity: 1; 38 opacity: 1;
39 -webkit-transition-delay: 0.5s; 39 -webkit-transition-delay: 0.5s;
40 } 40 }
41 41
42 .bookmark .favicon { 42 .bookmark .favicon {
43 background: no-repeat 5% 90%; 43 background: no-repeat 5% 90%;
44 background-size: 16px;
44 } 45 }
45 46
46 .bookmark .color-stripe { 47 .bookmark .color-stripe {
47 border-bottom-left-radius: 3px 3px; 48 border-bottom-left-radius: 3px 3px;
48 border-bottom-right-radius: 3px 3px; 49 border-bottom-right-radius: 3px 3px;
49 bottom: 33px; 50 bottom: 31px;
50 height: 3px; 51 height: 3px;
51 opacity: 0.5;
52 position: absolute; 52 position: absolute;
53 width: 100%; 53 width: 100%;
54 z-index: 100; 54 z-index: 100;
55 } 55 }
56 56
57 .bookmark .title { 57 .bookmark .title {
58 cursor: pointer; 58 cursor: pointer;
59 display: block; 59 display: block;
60 height: 23px; 60 height: 23px;
61 line-height: 23px; 61 line-height: 23px;
62 overflow: hidden; 62 overflow: hidden;
63 padding-top: 10px; 63 padding-top: 8px;
64 text-align: center; 64 text-align: center;
65 text-decoration: none; 65 text-decoration: none;
66 text-overflow: ellipsis; 66 text-overflow: ellipsis;
67 white-space: nowrap; 67 white-space: nowrap;
68 } 68 }
69 69
70 .bookmark .button { 70 .bookmark .button {
71 cursor: pointer; 71 cursor: pointer;
72 background-color: rgba(0, 0, 0, 0.15); 72 background-color: rgba(0, 0, 0, 0.15);
73 border: 1px solid transparent; 73 border: 1px solid transparent;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 background: -webkit-canvas(bookmark-chevron) center center no-repeat; 154 background: -webkit-canvas(bookmark-chevron) center center no-repeat;
155 border: 0; 155 border: 0;
156 height: 44px; 156 height: 44px;
157 margin: 2px 0; 157 margin: 2px 0;
158 width: 10px; 158 width: 10px;
159 } 159 }
160 160
161 .bookmarks-manager-link-container { 161 .bookmarks-manager-link-container {
162 height: 40px; 162 height: 40px;
163 } 163 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698