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

Side by Side Diff: chrome/browser/resources/local_ntp/local_ntp.css

Issue 20501002: Adds paste function to searchbox api and handles paste event on fakebox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 7 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/resources/local_ntp/local_ntp.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 font-family: arial, sans-serif; 8 font-family: arial, sans-serif;
9 font-size: small; 9 font-size: small;
10 margin: 0; 10 margin: 0;
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 } 101 }
102 102
103 @-webkit-keyframes blink { 103 @-webkit-keyframes blink {
104 0% { 104 0% {
105 opacity: 1; 105 opacity: 1;
106 } 106 }
107 61.55% { 107 61.55% {
108 opacity: 0; 108 opacity: 0;
109 } 109 }
110 } 110 }
111
112 body.fakebox-drag-focused #cursor {
113 visibility: inherit;
114 }
115
111 body.fakebox-focused #cursor { 116 body.fakebox-focused #cursor {
112 -webkit-animation: blink 1.3s step-end infinite; 117 -webkit-animation: blink 1.3s step-end infinite;
113 visibility: inherit; 118 visibility: inherit;
114 } 119 }
115 120
116 #most-visited { 121 #most-visited {
117 -webkit-user-select: none; 122 -webkit-user-select: none;
118 margin-top: 51px; 123 margin-top: 51px;
119 text-align: -webkit-center; 124 text-align: -webkit-center;
120 } 125 }
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 opacity: 0.9; 349 opacity: 0.9;
345 padding: 3px; 350 padding: 3px;
346 position: fixed; 351 position: fixed;
347 right: 8px; 352 right: 8px;
348 } 353 }
349 354
350 body.rtl #attribution,body.rtl #recent-tabs { 355 body.rtl #attribution,body.rtl #recent-tabs {
351 left: 8px; 356 left: 8px;
352 right: auto; 357 right: auto;
353 } 358 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/local_ntp/local_ntp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698