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

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

Issue 14685004: Add finch flag for rendering a recently closed link on the local ntp. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Fix test. Created 7 years, 6 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/local_ntp/local_ntp.css
diff --git a/chrome/browser/resources/local_ntp/local_ntp.css b/chrome/browser/resources/local_ntp/local_ntp.css
index 8b80ec299d9d5c25469071914be2d34b7d5af779..a16a3d25b6e9935bd39f76af322481da0a16ca6a 100644
--- a/chrome/browser/resources/local_ntp/local_ntp.css
+++ b/chrome/browser/resources/local_ntp/local_ntp.css
@@ -12,9 +12,7 @@ body {
}
#ntp-contents {
- position: absolute;
text-align: -webkit-center;
- width: 100%;
}
.non-google-page #ntp-contents {
@@ -122,7 +120,8 @@ body.fakebox-focused #cursor {
}
.custom-theme .mv-title,
-.custom-theme #mv-msg {
+.custom-theme #mv-msg,
+.custom-theme #recent-tabs {
color: #fff;
text-shadow: black 0 1px 3px;
}
@@ -313,7 +312,8 @@ body.rtl .mv-page .mv-x {
}
#mv-notice-links span:hover,
-#mv-notice-links span:focus {
+#mv-notice-links span:focus,
+#recent-tabs:hover {
text-decoration: underline;
}
@@ -333,18 +333,32 @@ body.rtl .mv-page .mv-x {
display: none;
}
-#attribution {
+#footer {
-webkit-user-select: none;
- bottom: 0;
+ bottom: 8px;
+ position: absolute;
+ right: 13px;
+ white-space: nowrap;
+}
+
+#attribution {
color: #fff;
cursor: default;
+ display: inline-block;
font-size: 13px;
- position: absolute;
- right: 13px;
+ margin-left: 10px;
text-align: left;
z-index: -1;
}
-#attribution img {
- display: block;
+#attribution.attribution-hide {
+ display: none;
}
+
+#recent-tabs {
+ color: rgb(17, 85, 204);
+ cursor: pointer;
+ font-family: Arial;
+ font-size: 14px;
+ vertical-align: top;
+}
« no previous file with comments | « no previous file | chrome/browser/resources/local_ntp/local_ntp.html » ('j') | chrome/browser/resources/local_ntp/local_ntp.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698