forked from y-scope/yscope-log-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
50 lines (40 loc) · 1.21 KB
/
index.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
49
50
.pop-up-messages-container-snackbar {
/* Disable pointer events on the transparent container to allow components underneath to be
accessed. */
pointer-events: none;
right: 14px !important;
bottom: var(--ylv-status-bar-height) !important;
padding: 0 !important;
background: transparent !important;
border: none !important;
box-shadow: none !important;
}
.pop-up-messages-container-stack {
scrollbar-width: none;
overflow-y: auto;
height: calc(100vh - var(--ylv-status-bar-height) - var(--ylv-menu-bar-height));
}
.pop-up-message-box-alert {
/* Restore pointer events on the pop-up messages. See above `pointer-events: none` in
`.pop-up-messages-container-snackbar`. */
pointer-events: initial;
padding-inline: 18px !important;
}
.pop-up-message-box-alert-layout {
display: flex;
flex-direction: column;
gap: 10px;
width: 300px;
}
.pop-up-message-box-title-container {
display: flex;
align-items: center;
}
.pop-up-message-box-title-text {
flex-grow: 1;
}
.pop-up-message-box-close-button {
/* stylelint-disable-next-line custom-property-pattern */
--IconButton-size: 18px !important;
border-radius: 18px !important;
}