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

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

Issue 15728008: Add the 'content' column to see what text is used to detect a language (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modified the comment Created 7 years, 7 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
Index: chrome/browser/resources/translate_internals/translate_internals.css
diff --git a/chrome/browser/resources/translate_internals/translate_internals.css b/chrome/browser/resources/translate_internals/translate_internals.css
index 59d903bdaf59441e90a8624c1bb94509396fd5d8..82082fdc7127c0cedd6a74db8843855243e6a7d2 100644
--- a/chrome/browser/resources/translate_internals/translate_internals.css
+++ b/chrome/browser/resources/translate_internals/translate_internals.css
@@ -38,7 +38,6 @@ tabpanel > div > div {
.dump {
font-family: monospace;
- text-wrap: unrestricted;
white-space: pre-wrap;
}
@@ -62,11 +61,11 @@ tabpanel > div > div {
}
.detection-logs-time {
- width: 20%;
+ width: 15%;
}
.detection-logs-url {
- width: 40%;
+ width: 20%;
}
td.detection-logs-url {
@@ -88,3 +87,15 @@ td.detection-logs-url {
.detection-logs-language {
width: 10%;
}
+
+.detection-logs-content {
+ width: 25%;
+}
+
+td.detection-logs-content div {
+ font-family: monospace;
+ max-height: 250px;
+ overflow: auto;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}

Powered by Google App Engine
This is Rietveld 408576698