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

Side by Side 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: Respond to comments. 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 unified diff | Download patch
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 body { 4 body {
5 background-attachment: fixed !important; 5 background-attachment: fixed !important;
6 background-color: white; 6 background-color: white;
7 cursor: default; 7 cursor: default;
8 margin: 0; 8 margin: 0;
9 overflow-x: hidden; 9 overflow-x: hidden;
10 } 10 }
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 visibility: inherit; 116 visibility: inherit;
117 } 117 }
118 118
119 #most-visited { 119 #most-visited {
120 -webkit-user-select: none; 120 -webkit-user-select: none;
121 margin-top: 51px; 121 margin-top: 51px;
122 text-align: -webkit-center; 122 text-align: -webkit-center;
123 } 123 }
124 124
125 .custom-theme .mv-title, 125 .custom-theme .mv-title,
126 .custom-theme #mv-msg { 126 .custom-theme #mv-msg,
127 .custom-theme #recently-closed {
127 color: #fff; 128 color: #fff;
128 text-shadow: black 0 1px 3px; 129 text-shadow: black 0 1px 3px;
129 } 130 }
130 131
131 .custom-theme #mv-notice-links span { 132 .custom-theme #mv-notice-links span {
132 color: #fff; 133 color: #fff;
133 text-shadow: rgb(17, 85, 204) 0 1px 3px; 134 text-shadow: rgb(17, 85, 204) 0 1px 3px;
134 } 135 }
135 136
136 #mv-tiles { 137 #mv-tiles {
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 } 283 }
283 284
284 /* Links in the notification. */ 285 /* Links in the notification. */
285 #mv-notice-links span { 286 #mv-notice-links span {
286 -webkit-margin-start: 6px; 287 -webkit-margin-start: 6px;
287 color: rgb(17, 85, 204); 288 color: rgb(17, 85, 204);
288 cursor: pointer; 289 cursor: pointer;
289 padding: 0 4px; 290 padding: 0 4px;
290 } 291 }
291 292
292 #mv-notice-links span:hover { 293 #mv-notice-links span:hover,
294 #recently-closed:hover {
293 text-decoration: underline; 295 text-decoration: underline;
294 } 296 }
295 297
296 #mv-notice-links .mv-x { 298 #mv-notice-links .mv-x {
297 -webkit-margin-start: 8px; 299 -webkit-margin-start: 8px;
298 vertical-align: top; 300 vertical-align: top;
299 } 301 }
300 302
301 #mv-notice.mv-notice-delayed-hide { 303 #mv-notice.mv-notice-delayed-hide {
302 -webkit-transition-delay: 10s; 304 -webkit-transition-delay: 10s;
303 -webkit-transition-property: opacity; 305 -webkit-transition-property: opacity;
304 opacity: 0; 306 opacity: 0;
305 } 307 }
306 308
307 #mv-notice.mv-notice-hide { 309 #mv-notice.mv-notice-hide {
308 visibility: hidden; 310 visibility: hidden;
309 } 311 }
310 312
313 #footer {
314 -webkit-user-select: none;
315 bottom: 8px;
316 position: absolute;
317 right: 13px;
318 }
319
311 #attribution { 320 #attribution {
312 -webkit-user-select: none;
313 bottom: 0;
314 color: #fff; 321 color: #fff;
315 cursor: default; 322 cursor: default;
323 display: inline-block;
316 font-size: 75%; 324 font-size: 75%;
317 position: absolute; 325 margin-left: 10px;
318 right: 13px;
319 text-align: left; 326 text-align: left;
320 z-index: -1; 327 z-index: -1;
321 } 328 }
322 329
323 #attribution img { 330 #attribution.attribution-hide {
324 display: block; 331 display: none;
332 }
333
334 #recently-closed {
335 color: rgb(17, 85, 204);
336 cursor: pointer;
325 } 337 }
326 338
327 .suggestions-box { 339 .suggestions-box {
328 border-bottom: 1px #d9d9d9 solid; 340 border-bottom: 1px #d9d9d9 solid;
329 padding-bottom: 6px; 341 padding-bottom: 6px;
330 padding-top: 6px; 342 padding-top: 6px;
331 } 343 }
332 344
333 .suggestion { 345 .suggestion {
334 background: -webkit-image-set( 346 background: -webkit-image-set(
(...skipping 25 matching lines...) Expand all
360 -webkit-user-select: none; 372 -webkit-user-select: none;
361 border: none; 373 border: none;
362 height: 22px; 374 height: 22px;
363 overflow: hidden; 375 overflow: hidden;
364 position: absolute; 376 position: absolute;
365 } 377 }
366 378
367 .pending-suggestions-container { 379 .pending-suggestions-container {
368 display: none; 380 display: none;
369 } 381 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/local_ntp/local_ntp.html » ('j') | chrome/browser/search/local_ntp_source.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698