forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModal.css
More file actions
41 lines (36 loc) · 713 Bytes
/
Modal.css
File metadata and controls
41 lines (36 loc) · 713 Bytes
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
.modal-wrapper {
position: fixed;
display: flex;
justify-content: center;
width: 100%;
height: 100%;
z-index: -1;
top: 0;
left: 0;
transition: z-index 200ms;
}
.modal-wrapper.enabled {
z-index: 9;
}
.modal {
top: 0;
z-index: 10;
width: 500px;
height: 230px;
background-color: var(--theme-codemirror-gutter-background);
transform: translateY(-250px);
transition: transform 150ms cubic-bezier(0.07, 0.95, 0, 1);
box-shadow: 2px 4px 6px var(--popup-shadow-color);
}
.theme-dark .symbol-modal {
box-shadow: 2px 4px 6px var(--popup-shadow-color);
}
.modal.enabled {
transform: translateY(30px);
}
@media (max-width: 520px) {
.modal {
width: 80%;
left: 10%;
}
}