blob: b21ff7ad0e1b0f17ea3b1e8ec3f36c84f006bd93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/* 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);
}
.search-bubble {
-webkit-box-shadow: 0 2px 2px #888;
background-color: rgba(255, 240, 120, 0.8);
border-radius: 6px;
box-shadow: 0 2px 2px #888;
left: 0;
margin: 12px 0 0;
padding: 4px 10px;
pointer-events: none;
position: absolute;
text-align: center;
top: -1000px; /* minor hack: position off-screen by default */
width: 100px;
}
.search-bubble:after {
border-color: rgba(255, 240, 120, 0.9) transparent;
border-style: solid;
border-width: 0 10px 10px;
content: '';
left: 50px;
position: absolute;
top: -10px;
}
.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;
}
|