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

Unified Diff: chrome/browser/resources/options2/search_page.css

Issue 10809005: Options: Rename chrome/browser/resources/options2 -> chrome/browser/resources/options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options2/search_page.css
diff --git a/chrome/browser/resources/options2/search_page.css b/chrome/browser/resources/options2/search_page.css
deleted file mode 100644
index 18b0fb1fd25174f3421861a3bb56a646e6b47f2f..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/options2/search_page.css
+++ /dev/null
@@ -1,74 +0,0 @@
-/* Copyright (c) 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. */
-
-.search-hidden {
- display: none !important;
-}
-
-.search-highlighted {
- background-color: rgba(255, 240, 120, 0.9);
-}
-
-/* Container for the elements that make up the search bubble. */
-.search-bubble {
- left: 0;
- margin-top: 5px;
- pointer-events: none;
- position: absolute;
- top: -1000px; /* Minor hack: position off-screen by default. */
- /* Create a z-context for search-bubble-innards, its after and before. */
- z-index: 1;
-}
-
-/* Contains the text content of the bubble. */
-.search-bubble-innards {
- background: -webkit-linear-gradient(rgba(255, 248, 172, 0.9),
- rgba(255, 243, 128, 0.9));
- border-radius: 2px;
- padding: 4px 10px;
- text-align: center;
- width: 100px;
-}
-
-/* Provides the border around the bubble (has to be behind :after). */
-.search-bubble-innards::before {
- border: 1px solid rgb(220, 198, 72);
- border-radius: 2px;
- bottom: -1px;
- content: '';
- left: -1px;
- position: absolute;
- right: -1px;
- top: -1px;
- z-index: -2;
-}
-
-/* Provides the arrow which points at the anchor element. */
-.search-bubble-innards::after {
- -webkit-transform: rotate(45deg);
- background:
- -webkit-linear-gradient(-45deg, rgb(251, 255, 181),
- rgb(255, 248, 172) 50%,
- rgba(255, 248, 172, 0));
- border: 1px solid rgb(220, 198, 72);
- border-bottom-color: transparent;
- border-right-color: transparent;
- content: '';
- height: 12px;
- left: 53px;
- position: absolute;
- top: -7px;
- width: 12px;
- z-index: -1;
-}
-
-.search-bubble-wrapper {
- position: relative;
-}
-
-#searchPage.page {
- /* The search page needs no padding as it's provided by showing the results
- * from each page. */
- padding: 0;
-}

Powered by Google App Engine
This is Rietveld 408576698