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

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

Issue 13905008: Merge local_omnibox_popup into local_ntp. Render the Google logo and fakebox if Google is the sear… (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Respond to Samarth's comments. Created 7 years, 8 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_omnibox_popup/local_omnibox_popup.css
diff --git a/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css b/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css
deleted file mode 100644
index 75ec3b6b291624c524dd8008a4f8fc0a408375a1..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css
+++ /dev/null
@@ -1,59 +0,0 @@
-/* Copyright 2012 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file. */
-
-body {
- background-color: white;
- cursor: default;
- margin: 0;
- overflow: hidden;
-}
-
-#suggestionsBox {
- border-bottom: 1px #d9d9d9 solid;
- padding-bottom: 6px;
- padding-top: 6px;
-}
-
-.suggestion {
- -webkit-border-radius: 2px;
- background: -webkit-image-set(
- url('images/page_icon.png') 1x,
- url('images/2x/page_icon.png') 2x) no-repeat;
- padding-bottom: 2px;
- padding-top: 3px;
- white-space: nowrap;
-}
-
-.search {
- background: -webkit-image-set(
- url('images/search_icon.png') 1x,
- url('images/2x/search_icon.png') 2x) no-repeat;
-}
-
-.suggestion:hover {
- background-color: #eee;
-}
-
-.selected,
-.selected:hover {
- background-color: rgba(181, 213, 255, 0.5);
-}
-
-.contents {
- -webkit-padding-start: 26px;
- -webkit-user-select: none;
- border: 0;
- height: 22px;
- overflow: hidden;
- width: 100%;
-}
-
-/* Styling for native suggestions, hidden by the shadow DOM. */
-.chrome_url {
- color: rgb(0, 153, 51);
-}
-
-.chrome_title {
- color: #666;
-}

Powered by Google App Engine
This is Rietveld 408576698