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

Unified Diff: chrome/browser/resources/ntp_android/bookmarks.css

Issue 12131002: Fix for long bookmark titles cut off on Bookmarks page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ntp_android/bookmarks.css
diff --git a/chrome/browser/resources/ntp_android/bookmarks.css b/chrome/browser/resources/ntp_android/bookmarks.css
index c5ec23c451380e448ad712dd6b89bd0604afe5ff..4cff02c7228d7bcc8823aa2a4ec94a0a5673be25 100644
--- a/chrome/browser/resources/ntp_android/bookmarks.css
+++ b/chrome/browser/resources/ntp_android/bookmarks.css
@@ -115,11 +115,16 @@
}
.favicon-cell .title {
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 2;
+ display: -webkit-box;
height: 30px;
line-height: 18px;
overflow: hidden;
padding-bottom: 8px;
padding-top: 10px;
+ text-overflow: ellipsis;
+ word-wrap: break-word;
}
.favicon-icon {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698