blob: 5da8ea4b63e71be6169c8ac78a932691bcb68428 (
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
.popover {
position: fixed;
z-index: 100;
--gap-size: 10px;
--left-offset: -55px;
}
.popover.orientation-right {
display: flex;
flex-direction: row;
}
.popover.orientation-right .gap {
width: var(--gap-size);
}
.popover:not(.orientation-right) .gap {
height: var(--gap-size);
margin-left: var(--left-offset);
}
.popover:not(.orientation-right) .preview-popup {
margin-left: var(--left-offset);
}
.popover .add-to-expression-bar {
margin-left: var(--left-offset);
}
|