-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyles.css
94 lines (79 loc) · 1.84 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.open-gate-view {
padding: 0 !important;
overflow: hidden !important;
}
.open-gate-view .open-gate-iframe,
.open-gate-view .open-gate-webview {
width: 100%;
height: 100%;
border: none;
background-color: #fff;
}
.gate-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.open-gate-mobile-warning {
background: #b38c1d;
padding: 5px 10px;
border-radius: 5px;
margin-bottom: 20px;
font-size: 14px;
color: #fff;
}
.open-gate-mobile-link {
color: #fff;
text-decoration: underline;
}
.open-gate--form-field--column .setting-item-control,
.open-gate--form-field--column .setting-item-control textarea,
.open-gate--form-field .setting-item-control input[type='text'] {
width: 100%;
}
.open-gate--form-field--column .setting-item-control textarea{
min-height: 80px;
}
.open-gate--form-field--column {
display: flex;
flex-direction: column;
gap: 10px;
align-items: flex-start;
}
.open-gate--advanced-options {
border-top: 1px solid var(--background-modifier-border);
padding: 0.75em 0;
display: none;
}
.open-gate--advanced-options--show {
display: block;
}
.open-gate--quick-list-item {
padding: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
gap: 10px;
cursor: pointer;
}
.open-gate--quick-list-item.active,
.open-gate--quick-list-item:hover {
background: var(--background-modifier-hover);
}
div[data-gate-id] .setting-item {
overflow: hidden;
}
div[data-gate-id] .setting-item-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.open-gate--setting--gate .setting-item-info {
width: 100%;
overflow: hidden;
}
.open-gate--setting--gate .setting-item-description{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}