forked from FineFuturity/FrameUIForFirefox
-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup-search.css
48 lines (40 loc) · 1.1 KB
/
popup-search.css
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
47
48
/* search */
@media (-moz-bool-pref: "uc.tweak.popup-search") {
#urlbar:is([breakout][breakout-extend]){
#urlbar-input {
font-size: 18px !important;
text-align: left !important;
padding-block: 12px !important;
padding-inline: 6px !important;
}
position: fixed !important;
/* padding-top: 12px !important; */
/* --urlbar-height: auto !important; */
margin-bottom: 25vh !important;
/* margin-top: 85vh !important; */
background-color: #toolbar-bgcolor !important;
left: 20vw !important;
right: 20vw !important;
width: 60vw !important;
/* padding-inline-start: 8px !important; */
/* padding-inline-end: 40vw !important; */
--urlbar-width: auto !important;
& .urlbarView-results {
margin-top: 0px !important;
padding-block-start: 0px !important;
}
/* background */
&:before{
content: "";
position: fixed;
pointer-events: none;
width: 100vw;
height: 100vh;
top: 0px;
left: 0px;
background-color: #000000;
opacity: 0.5;
backdrop-filter: blur(300px);
}
}
}