OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 /* Begin top bar */ | 5 /* Begin top bar */ |
6 | 6 |
7 #bookmarks_title_wrapper { | 7 #bookmarks_title_wrapper { |
8 border-bottom: 1px solid #d0d0d0; | 8 border-bottom: 1px solid #d0d0d0; |
9 display: -webkit-box; | 9 display: -webkit-box; |
10 font-size: 17px; | 10 font-size: 17px; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 position: relative; | 108 position: relative; |
109 text-align: center; | 109 text-align: center; |
110 width: 64px; /* icon container size */ | 110 width: 64px; /* icon container size */ |
111 } | 111 } |
112 | 112 |
113 .favicon-box.folder { | 113 .favicon-box.folder { |
114 background-image: url(images/bookmark_folder_mdpi.png); | 114 background-image: url(images/bookmark_folder_mdpi.png); |
115 } | 115 } |
116 | 116 |
117 .favicon-cell .title { | 117 .favicon-cell .title { |
| 118 -webkit-box-orient: vertical; |
| 119 -webkit-line-clamp: 2; |
| 120 display: -webkit-box; |
118 height: 30px; | 121 height: 30px; |
119 line-height: 18px; | 122 line-height: 18px; |
120 overflow: hidden; | 123 overflow: hidden; |
121 padding-bottom: 8px; | 124 padding-bottom: 8px; |
122 padding-top: 10px; | 125 padding-top: 10px; |
| 126 text-overflow: ellipsis; |
| 127 word-wrap: break-word; |
123 } | 128 } |
124 | 129 |
125 .favicon-icon { | 130 .favicon-icon { |
126 background-position: center; | 131 background-position: center; |
127 background-repeat: no-repeat; | 132 background-repeat: no-repeat; |
128 height: 100%; | 133 height: 100%; |
129 width: 100%; | 134 width: 100%; |
130 } | 135 } |
131 | 136 |
132 .favicon-icon.document { | 137 .favicon-icon.document { |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 .bookmark-border { | 278 .bookmark-border { |
274 background-image: url(images/bookmark_border_xhdpi.png); | 279 background-image: url(images/bookmark_border_xhdpi.png); |
275 } | 280 } |
276 .favicon-box.folder { | 281 .favicon-box.folder { |
277 background-image: url(images/bookmark_folder_xhdpi.png); | 282 background-image: url(images/bookmark_folder_xhdpi.png); |
278 } | 283 } |
279 .bookmark-separator { | 284 .bookmark-separator { |
280 background-image: url(images/breadcrumb_xhdpi.png); | 285 background-image: url(images/breadcrumb_xhdpi.png); |
281 } | 286 } |
282 } | 287 } |
OLD | NEW |