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

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: Rebase. 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 #recent-tabs {
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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 } 288 }
288 289
289 /* Links in the notification. */ 290 /* Links in the notification. */
290 #mv-notice-links span { 291 #mv-notice-links span {
291 -webkit-margin-start: 6px; 292 -webkit-margin-start: 6px;
292 color: rgb(17, 85, 204); 293 color: rgb(17, 85, 204);
293 cursor: pointer; 294 cursor: pointer;
294 padding: 0 4px; 295 padding: 0 4px;
295 } 296 }
296 297
297 #mv-notice-links span:hover { 298 #mv-notice-links span:hover,
299 #recent-tabs:hover {
298 text-decoration: underline; 300 text-decoration: underline;
299 } 301 }
300 302
301 #mv-notice-links .mv-x { 303 #mv-notice-links .mv-x {
302 -webkit-margin-start: 8px; 304 -webkit-margin-start: 8px;
303 vertical-align: top; 305 vertical-align: top;
304 } 306 }
305 307
306 #mv-notice.mv-notice-delayed-hide { 308 #mv-notice.mv-notice-delayed-hide {
307 -webkit-transition-delay: 10s; 309 -webkit-transition-delay: 10s;
308 -webkit-transition-property: opacity; 310 -webkit-transition-property: opacity;
309 opacity: 0; 311 opacity: 0;
310 } 312 }
311 313
312 #mv-notice.mv-notice-hide { 314 #mv-notice.mv-notice-hide {
313 display: none; 315 display: none;
314 } 316 }
315 317
318 #footer {
319 -webkit-user-select: none;
320 bottom: 8px;
321 position: absolute;
322 right: 13px;
323 white-space: nowrap;
324 }
325
316 #attribution { 326 #attribution {
317 -webkit-user-select: none;
318 bottom: 0;
319 color: #fff; 327 color: #fff;
320 cursor: default; 328 cursor: default;
329 display: inline-block;
321 font-size: 75%; 330 font-size: 75%;
322 position: absolute; 331 margin-left: 10px;
323 right: 13px;
324 text-align: left; 332 text-align: left;
325 z-index: -1; 333 z-index: -1;
326 } 334 }
327 335
328 #attribution img { 336 #attribution.attribution-hide {
329 display: block; 337 display: none;
338 }
339
340 #recent-tabs {
341 color: rgb(17, 85, 204);
342 cursor: pointer;
343 font-family: Arial;
344 font-size: 14px;
330 } 345 }
331 346
332 .suggestions-box { 347 .suggestions-box {
333 border-bottom: 1px #d9d9d9 solid; 348 border-bottom: 1px #d9d9d9 solid;
334 padding-bottom: 6px; 349 padding-bottom: 6px;
335 padding-top: 6px; 350 padding-top: 6px;
336 } 351 }
337 352
338 .suggestion { 353 .suggestion {
339 background: -webkit-image-set( 354 background: -webkit-image-set(
(...skipping 25 matching lines...) Expand all
365 -webkit-user-select: none; 380 -webkit-user-select: none;
366 border: none; 381 border: none;
367 height: 22px; 382 height: 22px;
368 overflow: hidden; 383 overflow: hidden;
369 position: absolute; 384 position: absolute;
370 } 385 }
371 386
372 #pending-suggestions-container { 387 #pending-suggestions-container {
373 display: none; 388 display: none;
374 } 389 }
OLDNEW
« 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