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

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

Issue 1838333004: Add a notice about other forms of browsing history to the History WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@desktop-ui-after-rebase
Patch Set: Accessibility test Created 4 years, 9 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/history/history_mobile.css
diff --git a/chrome/browser/resources/history/history_mobile.css b/chrome/browser/resources/history/history_mobile.css
index 9f9ce36c786e5798032a6d27f633037f3b07b463..2e4bf38f4408f870f30d0184df231c25e3de16c2 100644
--- a/chrome/browser/resources/history/history_mobile.css
+++ b/chrome/browser/resources/history/history_mobile.css
@@ -13,6 +13,7 @@ html {
}
body {
+ background-color: rgba(0, 0, 0, .05);
color: rgb(76, 76, 76);
font-size: initial;
height: 100%;
@@ -32,6 +33,7 @@ body {
}
h1 {
+ color: rgb(34, 34, 34);
font-weight: bold;
margin-bottom: 12px;
}
@@ -87,9 +89,20 @@ html[dir='rtl'] #search-field {
background-position: right 16px center;
}
-#notification-bar.alone {
+#notification-bar {
+ color: rgb(138, 138, 138);
+ font-size: 14px;
+ line-height: 1.5;
+}
+
+#notification-bar span {
+ /* On desktop, notification spans are displayed as separate paragraphs.
+ On mobile, join them into a single paragraph. */
Dan Beam 2016/04/01 15:32:18 /* ... * ... */ ^
+ display: inline;
+}
+
+#top-container.overflow #notification-bar {
float: none;
- font-size: 75%;
margin: 0;
padding-bottom: 0;
padding-top: 0;
@@ -123,6 +136,10 @@ button.remove-entry:active {
opacity: 1.0;
}
+.entry {
+ background-color: white;
+}
+
.entry-box {
margin-bottom: 0;
margin-top: 0;

Powered by Google App Engine
This is Rietveld 408576698