1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
6 display: none
!important
;
10 background-color: rgba
(255, 240, 120, 0.9);
13 /* Container for the elements that make up the search bubble. */
19 top: -1000px; /* Minor hack: position off-screen by default. */
20 /* Create a z-context for search-bubble-innards, its after and before. */
24 /* Contains the text content of the bubble. */
25 .search-bubble-innards {
26 background: -webkit-linear-gradient
(rgba
(255, 248, 172, 0.9),
27 rgba
(255, 243, 128, 0.9));
34 /* Provides the border around the bubble (has to be behind ::after). */
35 .search-bubble-innards::before {
36 border: 1px solid rgb
(220, 198, 72);
47 /* Provides the arrow which points at the anchor element. */
48 .search-bubble-innards::after {
49 -webkit-transform: rotate
(45deg);
51 -webkit-linear-gradient
(-45deg, rgb
(251, 255, 181),
52 rgb
(255, 248, 172) 50%,
53 rgba
(255, 248, 172, 0));
54 border: 1px solid rgb
(220, 198, 72);
55 border-bottom-color: transparent
;
56 border-right-color: transparent
;
66 .search-bubble-wrapper {
70 /* #mainview is here to win specificity. :( */
71 #mainview #searchPage
.page
,
72 #mainview #searchBox
.page
{