-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
70 lines (59 loc) · 1.48 KB
/
styles.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.sentinel--action-container {
position: relative;
border-top: 1px solid var(--background-modifier-border);
padding: 1em 0;
}
.sentinel--action-container .setting-item {
border-top: none;
padding: 0.5em 0 1em 0;
}
.sentinel--action-container .setting-item:last-child {
margin-left: auto;
}
.sentinel--action-container .setting-item-control,
.sentinel--action-container .setting-item-control input {
width: 100%;
}
.sentinel--action-container .setting-item-name {
font-size: .85em;
margin-bottom: .25em;
}
.sentinel--action-container .suggestion-container {
position: absolute;
background: var(--background-primary);
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
z-index: 100;
max-height: 200px;
overflow-y: auto;
width: 100%;
left: 0;
top: calc(100% - 2em);
opacity: 0;
}
@media (min-width: 760px) {
.sentinel--action-container {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
justify-content: space-between;
}
.sentinel--action-container .setting-item {
flex-flow: column;
align-items: flex-start;
}
.sentinel--action-container .setting-item:nth-child(2) {
width: calc(30% - 0.5em);
}
.sentinel--action-container .setting-item:nth-child(3) {
width: calc(30% - 0.5em);
}
.sentinel--action-container .setting-item:nth-child(4),
.sentinel--action-container .setting-item:nth-child(5) {
width: calc(40% - 0.5em);
margin-right: 0.75em;
}
.sentinel--action-container .setting-item:nth-child(5) {
margin-right: 0;
}
}