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

Unified Diff: chrome/browser/resources/history.css

Issue 8807001: History: Fix regression - unable to remove entries from search results. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use -webkit-clamp-line instead. Created 9 years 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 | chrome/browser/resources/history.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/history.css
diff --git a/chrome/browser/resources/history.css b/chrome/browser/resources/history.css
index cf80899989e99eb5e5007debfb55176c7d8e18b2..3fd0c370cef5ece950c5a270cbcdb353c76319f3 100644
--- a/chrome/browser/resources/history.css
+++ b/chrome/browser/resources/history.css
@@ -92,11 +92,17 @@ html[dir=rtl] .entry-box {
}
.snippet {
- -webkit-margin-start: 90px; /* Align it with .domain. */
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 2;
+ -webkit-margin-start: 110px;
clear: both;
+ color: rgb(34, 34, 34);
+ display: -webkit-box;
font-size: 12px;
line-height: 1.6em;
margin-bottom: 12px;
+ overflow: hidden;
+ text-overflow: ellipsis;
}
.entry .domain {
@@ -134,9 +140,16 @@ html[dir='rtl'] .entry .title {
.entry .time {
color: #9a9a9a;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
width: 90px;
}
+.search-results .time {
+ width: 110px;
+}
+
.entry input[type=checkbox] {
-webkit-margin-end: 6px;
-webkit-margin-start: 4px;
« no previous file with comments | « no previous file | chrome/browser/resources/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698