@homebound/beam 2.171.0 → 2.171.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +768 -0
- package/dist/index.css.map +7 -0
- package/dist/index.mjs +76629 -0
- package/dist/index.mjs.map +7 -0
- package/package.json +1 -1
package/dist/index.css
ADDED
|
@@ -0,0 +1,768 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
/* node_modules/tributejs/dist/tribute.css */
|
|
4
|
+
.tribute-container {
|
|
5
|
+
position: absolute;
|
|
6
|
+
top: 0;
|
|
7
|
+
left: 0;
|
|
8
|
+
height: auto;
|
|
9
|
+
max-height: 300px;
|
|
10
|
+
max-width: 500px;
|
|
11
|
+
overflow: auto;
|
|
12
|
+
display: block;
|
|
13
|
+
z-index: 999999;
|
|
14
|
+
}
|
|
15
|
+
.tribute-container ul {
|
|
16
|
+
margin: 0;
|
|
17
|
+
margin-top: 2px;
|
|
18
|
+
padding: 0;
|
|
19
|
+
list-style: none;
|
|
20
|
+
background: #efefef;
|
|
21
|
+
}
|
|
22
|
+
.tribute-container li {
|
|
23
|
+
padding: 5px 5px;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
}
|
|
26
|
+
.tribute-container li.highlight {
|
|
27
|
+
background: #ddd;
|
|
28
|
+
}
|
|
29
|
+
.tribute-container li span {
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
}
|
|
32
|
+
.tribute-container li.no-match {
|
|
33
|
+
cursor: default;
|
|
34
|
+
}
|
|
35
|
+
.tribute-container .menu-highlighted {
|
|
36
|
+
font-weight: bold;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/* node_modules/trix/dist/trix.css */
|
|
40
|
+
trix-editor {
|
|
41
|
+
border: 1px solid #bbb;
|
|
42
|
+
border-radius: 3px;
|
|
43
|
+
margin: 0;
|
|
44
|
+
padding: 0.4em 0.6em;
|
|
45
|
+
min-height: 5em;
|
|
46
|
+
outline: none;
|
|
47
|
+
}
|
|
48
|
+
trix-toolbar * {
|
|
49
|
+
box-sizing: border-box;
|
|
50
|
+
}
|
|
51
|
+
trix-toolbar .trix-button-row {
|
|
52
|
+
display: flex;
|
|
53
|
+
flex-wrap: nowrap;
|
|
54
|
+
justify-content: space-between;
|
|
55
|
+
overflow-x: auto;
|
|
56
|
+
}
|
|
57
|
+
trix-toolbar .trix-button-group {
|
|
58
|
+
display: flex;
|
|
59
|
+
margin-bottom: 10px;
|
|
60
|
+
border: 1px solid #bbb;
|
|
61
|
+
border-top-color: #ccc;
|
|
62
|
+
border-bottom-color: #888;
|
|
63
|
+
border-radius: 3px;
|
|
64
|
+
}
|
|
65
|
+
trix-toolbar .trix-button-group:not(:first-child) {
|
|
66
|
+
margin-left: 1.5vw;
|
|
67
|
+
}
|
|
68
|
+
@media (max-device-width: 768px) {
|
|
69
|
+
trix-toolbar .trix-button-group:not(:first-child) {
|
|
70
|
+
margin-left: 0;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
trix-toolbar .trix-button-group-spacer {
|
|
74
|
+
flex-grow: 1;
|
|
75
|
+
}
|
|
76
|
+
@media (max-device-width: 768px) {
|
|
77
|
+
trix-toolbar .trix-button-group-spacer {
|
|
78
|
+
display: none;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
trix-toolbar .trix-button {
|
|
82
|
+
position: relative;
|
|
83
|
+
float: left;
|
|
84
|
+
color: rgba(0, 0, 0, 0.6);
|
|
85
|
+
font-size: 0.75em;
|
|
86
|
+
font-weight: 600;
|
|
87
|
+
white-space: nowrap;
|
|
88
|
+
padding: 0 0.5em;
|
|
89
|
+
margin: 0;
|
|
90
|
+
outline: none;
|
|
91
|
+
border: none;
|
|
92
|
+
border-bottom: 1px solid #ddd;
|
|
93
|
+
border-radius: 0;
|
|
94
|
+
background: transparent;
|
|
95
|
+
}
|
|
96
|
+
trix-toolbar .trix-button:not(:first-child) {
|
|
97
|
+
border-left: 1px solid #ccc;
|
|
98
|
+
}
|
|
99
|
+
trix-toolbar .trix-button.trix-active {
|
|
100
|
+
background: #cbeefa;
|
|
101
|
+
color: black;
|
|
102
|
+
}
|
|
103
|
+
trix-toolbar .trix-button:not(:disabled) {
|
|
104
|
+
cursor: pointer;
|
|
105
|
+
}
|
|
106
|
+
trix-toolbar .trix-button:disabled {
|
|
107
|
+
color: rgba(0, 0, 0, 0.125);
|
|
108
|
+
}
|
|
109
|
+
@media (max-device-width: 768px) {
|
|
110
|
+
trix-toolbar .trix-button {
|
|
111
|
+
letter-spacing: -0.01em;
|
|
112
|
+
padding: 0 0.3em;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
trix-toolbar .trix-button--icon {
|
|
116
|
+
font-size: inherit;
|
|
117
|
+
width: 2.6em;
|
|
118
|
+
height: 1.6em;
|
|
119
|
+
max-width: calc(0.8em + 4vw);
|
|
120
|
+
text-indent: -9999px;
|
|
121
|
+
}
|
|
122
|
+
@media (max-device-width: 768px) {
|
|
123
|
+
trix-toolbar .trix-button--icon {
|
|
124
|
+
height: 2em;
|
|
125
|
+
max-width: calc(0.8em + 3.5vw);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
trix-toolbar .trix-button--icon::before {
|
|
129
|
+
display: inline-block;
|
|
130
|
+
position: absolute;
|
|
131
|
+
top: 0;
|
|
132
|
+
right: 0;
|
|
133
|
+
bottom: 0;
|
|
134
|
+
left: 0;
|
|
135
|
+
opacity: 0.6;
|
|
136
|
+
content: "";
|
|
137
|
+
background-position: center;
|
|
138
|
+
background-repeat: no-repeat;
|
|
139
|
+
background-size: contain;
|
|
140
|
+
}
|
|
141
|
+
@media (max-device-width: 768px) {
|
|
142
|
+
trix-toolbar .trix-button--icon::before {
|
|
143
|
+
right: 6%;
|
|
144
|
+
left: 6%;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
trix-toolbar .trix-button--icon.trix-active::before {
|
|
148
|
+
opacity: 1;
|
|
149
|
+
}
|
|
150
|
+
trix-toolbar .trix-button--icon:disabled::before {
|
|
151
|
+
opacity: 0.125;
|
|
152
|
+
}
|
|
153
|
+
trix-toolbar .trix-button--icon-attach::before {
|
|
154
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M16.5%206v11.5a4%204%200%201%201-8%200V5a2.5%202.5%200%200%201%205%200v10.5a1%201%200%201%201-2%200V6H10v9.5a2.5%202.5%200%200%200%205%200V5a4%204%200%201%200-8%200v12.5a5.5%205.5%200%200%200%2011%200V6h-1.5z%22%2F%3E%3C%2Fsvg%3E);
|
|
155
|
+
top: 8%;
|
|
156
|
+
bottom: 4%;
|
|
157
|
+
}
|
|
158
|
+
trix-toolbar .trix-button--icon-bold::before {
|
|
159
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M15.6%2011.8c1-.7%201.6-1.8%201.6-2.8a4%204%200%200%200-4-4H7v14h7c2.1%200%203.7-1.7%203.7-3.8%200-1.5-.8-2.8-2.1-3.4zM10%207.5h3a1.5%201.5%200%201%201%200%203h-3v-3zm3.5%209H10v-3h3.5a1.5%201.5%200%201%201%200%203z%22%2F%3E%3C%2Fsvg%3E);
|
|
160
|
+
}
|
|
161
|
+
trix-toolbar .trix-button--icon-italic::before {
|
|
162
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M10%205v3h2.2l-3.4%208H6v3h8v-3h-2.2l3.4-8H18V5h-8z%22%2F%3E%3C%2Fsvg%3E);
|
|
163
|
+
}
|
|
164
|
+
trix-toolbar .trix-button--icon-link::before {
|
|
165
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M9.88%2013.7a4.3%204.3%200%200%201%200-6.07l3.37-3.37a4.26%204.26%200%200%201%206.07%200%204.3%204.3%200%200%201%200%206.06l-1.96%201.72a.91.91%200%201%201-1.3-1.3l1.97-1.71a2.46%202.46%200%200%200-3.48-3.48l-3.38%203.37a2.46%202.46%200%200%200%200%203.48.91.91%200%201%201-1.3%201.3z%22%2F%3E%3Cpath%20d%3D%22M4.25%2019.46a4.3%204.3%200%200%201%200-6.07l1.93-1.9a.91.91%200%201%201%201.3%201.3l-1.93%201.9a2.46%202.46%200%200%200%203.48%203.48l3.37-3.38c.96-.96.96-2.52%200-3.48a.91.91%200%201%201%201.3-1.3%204.3%204.3%200%200%201%200%206.07l-3.38%203.38a4.26%204.26%200%200%201-6.07%200z%22%2F%3E%3C%2Fsvg%3E);
|
|
166
|
+
}
|
|
167
|
+
trix-toolbar .trix-button--icon-strike::before {
|
|
168
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.73%2014l.28.14c.26.15.45.3.57.44.12.14.18.3.18.5%200%20.3-.15.56-.44.75-.3.2-.76.3-1.39.3A13.52%2013.52%200%200%201%207%2014.95v3.37a10.64%2010.64%200%200%200%204.84.88c1.26%200%202.35-.19%203.28-.56.93-.37%201.64-.9%202.14-1.57s.74-1.45.74-2.32c0-.26-.02-.51-.06-.75h-5.21zm-5.5-4c-.08-.34-.12-.7-.12-1.1%200-1.29.52-2.3%201.58-3.02%201.05-.72%202.5-1.08%204.34-1.08%201.62%200%203.28.34%204.97%201l-1.3%202.93c-1.47-.6-2.73-.9-3.8-.9-.55%200-.96.08-1.2.26-.26.17-.38.38-.38.64%200%20.27.16.52.48.74.17.12.53.3%201.05.53H7.23zM3%2013h18v-2H3v2z%22%2F%3E%3C%2Fsvg%3E);
|
|
169
|
+
}
|
|
170
|
+
trix-toolbar .trix-button--icon-quote::before {
|
|
171
|
+
background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M6%2017h3l2-4V7H5v6h3zm8%200h3l2-4V7h-6v6h3z%22%2F%3E%3C%2Fsvg%3E);
|
|
172
|
+
}
|
|
173
|
+
trix-toolbar .trix-button--icon-heading-1::before {
|
|
174
|
+
background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12%209v3H9v7H6v-7H3V9h9zM8%204h14v3h-6v12h-3V7H8V4z%22%2F%3E%3C%2Fsvg%3E);
|
|
175
|
+
}
|
|
176
|
+
trix-toolbar .trix-button--icon-code::before {
|
|
177
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.2%2012L15%2015.2l1.4%201.4L21%2012l-4.6-4.6L15%208.8l3.2%203.2zM5.8%2012L9%208.8%207.6%207.4%203%2012l4.6%204.6L9%2015.2%205.8%2012z%22%2F%3E%3C%2Fsvg%3E);
|
|
178
|
+
}
|
|
179
|
+
trix-toolbar .trix-button--icon-bullet-list::before {
|
|
180
|
+
background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%204a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm4%203h14v-2H8v2zm0-6h14v-2H8v2zm0-8v2h14V5H8z%22%2F%3E%3C%2Fsvg%3E);
|
|
181
|
+
}
|
|
182
|
+
trix-toolbar .trix-button--icon-number-list::before {
|
|
183
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M2%2017h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1%203h1.8L2%2013.1v.9h3v-1H3.2L5%2010.9V10H2v1zm5-6v2h14V5H7zm0%2014h14v-2H7v2zm0-6h14v-2H7v2z%22%2F%3E%3C%2Fsvg%3E);
|
|
184
|
+
}
|
|
185
|
+
trix-toolbar .trix-button--icon-undo::before {
|
|
186
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.5%208c-2.6%200-5%201-6.9%202.6L2%207v9h9l-3.6-3.6A8%208%200%200%201%2020%2016l2.4-.8a10.5%2010.5%200%200%200-10-7.2z%22%2F%3E%3C%2Fsvg%3E);
|
|
187
|
+
}
|
|
188
|
+
trix-toolbar .trix-button--icon-redo::before {
|
|
189
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.4%2010.6a10.5%2010.5%200%200%200-16.9%204.6L4%2016a8%208%200%200%201%2012.7-3.6L13%2016h9V7l-3.6%203.6z%22%2F%3E%3C%2Fsvg%3E);
|
|
190
|
+
}
|
|
191
|
+
trix-toolbar .trix-button--icon-decrease-nesting-level::before {
|
|
192
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-8.3-.3l2.8%202.9L6%2014.2%204%2012l2-2-1.4-1.5L1%2012l.7.7zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E);
|
|
193
|
+
}
|
|
194
|
+
trix-toolbar .trix-button--icon-increase-nesting-level::before {
|
|
195
|
+
background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-6.9-1L1%2014.2l1.4%201.4L6%2012l-.7-.7-2.8-2.8L1%209.9%203.1%2012zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E);
|
|
196
|
+
}
|
|
197
|
+
trix-toolbar .trix-dialogs {
|
|
198
|
+
position: relative;
|
|
199
|
+
}
|
|
200
|
+
trix-toolbar .trix-dialog {
|
|
201
|
+
position: absolute;
|
|
202
|
+
top: 0;
|
|
203
|
+
left: 0;
|
|
204
|
+
right: 0;
|
|
205
|
+
font-size: 0.75em;
|
|
206
|
+
padding: 15px 10px;
|
|
207
|
+
background: #fff;
|
|
208
|
+
box-shadow: 0 0.3em 1em #ccc;
|
|
209
|
+
border-top: 2px solid #888;
|
|
210
|
+
border-radius: 5px;
|
|
211
|
+
z-index: 5;
|
|
212
|
+
}
|
|
213
|
+
trix-toolbar .trix-input--dialog {
|
|
214
|
+
font-size: inherit;
|
|
215
|
+
font-weight: normal;
|
|
216
|
+
padding: 0.5em 0.8em;
|
|
217
|
+
margin: 0 10px 0 0;
|
|
218
|
+
border-radius: 3px;
|
|
219
|
+
border: 1px solid #bbb;
|
|
220
|
+
background-color: #fff;
|
|
221
|
+
box-shadow: none;
|
|
222
|
+
outline: none;
|
|
223
|
+
-webkit-appearance: none;
|
|
224
|
+
-moz-appearance: none;
|
|
225
|
+
}
|
|
226
|
+
trix-toolbar .trix-input--dialog.validate:invalid {
|
|
227
|
+
box-shadow: #F00 0px 0px 1.5px 1px;
|
|
228
|
+
}
|
|
229
|
+
trix-toolbar .trix-button--dialog {
|
|
230
|
+
font-size: inherit;
|
|
231
|
+
padding: 0.5em;
|
|
232
|
+
border-bottom: none;
|
|
233
|
+
}
|
|
234
|
+
trix-toolbar .trix-dialog--link {
|
|
235
|
+
max-width: 600px;
|
|
236
|
+
}
|
|
237
|
+
trix-toolbar .trix-dialog__link-fields {
|
|
238
|
+
display: flex;
|
|
239
|
+
align-items: baseline;
|
|
240
|
+
}
|
|
241
|
+
trix-toolbar .trix-dialog__link-fields .trix-input {
|
|
242
|
+
flex: 1;
|
|
243
|
+
}
|
|
244
|
+
trix-toolbar .trix-dialog__link-fields .trix-button-group {
|
|
245
|
+
flex: 0 0 content;
|
|
246
|
+
margin: 0;
|
|
247
|
+
}
|
|
248
|
+
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
|
|
249
|
+
-webkit-user-select: none;
|
|
250
|
+
-moz-user-select: none;
|
|
251
|
+
-ms-user-select: none;
|
|
252
|
+
user-select: none;
|
|
253
|
+
}
|
|
254
|
+
trix-editor [data-trix-mutable]::-moz-selection,
|
|
255
|
+
trix-editor [data-trix-cursor-target]::-moz-selection,
|
|
256
|
+
trix-editor [data-trix-mutable] ::-moz-selection {
|
|
257
|
+
background: none;
|
|
258
|
+
}
|
|
259
|
+
trix-editor [data-trix-mutable]::selection,
|
|
260
|
+
trix-editor [data-trix-cursor-target]::selection,
|
|
261
|
+
trix-editor [data-trix-mutable] ::selection {
|
|
262
|
+
background: none;
|
|
263
|
+
}
|
|
264
|
+
trix-editor [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
|
|
265
|
+
background: highlight;
|
|
266
|
+
}
|
|
267
|
+
trix-editor [data-trix-mutable].attachment__caption-editor:focus::selection {
|
|
268
|
+
background: highlight;
|
|
269
|
+
}
|
|
270
|
+
trix-editor [data-trix-mutable].attachment.attachment--file {
|
|
271
|
+
box-shadow: 0 0 0 2px highlight;
|
|
272
|
+
border-color: transparent;
|
|
273
|
+
}
|
|
274
|
+
trix-editor [data-trix-mutable].attachment img {
|
|
275
|
+
box-shadow: 0 0 0 2px highlight;
|
|
276
|
+
}
|
|
277
|
+
trix-editor .attachment {
|
|
278
|
+
position: relative;
|
|
279
|
+
}
|
|
280
|
+
trix-editor .attachment:hover {
|
|
281
|
+
cursor: default;
|
|
282
|
+
}
|
|
283
|
+
trix-editor .attachment--preview .attachment__caption:hover {
|
|
284
|
+
cursor: text;
|
|
285
|
+
}
|
|
286
|
+
trix-editor .attachment__progress {
|
|
287
|
+
position: absolute;
|
|
288
|
+
z-index: 1;
|
|
289
|
+
height: 20px;
|
|
290
|
+
top: calc(50% - 10px);
|
|
291
|
+
left: 5%;
|
|
292
|
+
width: 90%;
|
|
293
|
+
opacity: 0.9;
|
|
294
|
+
transition: opacity 200ms ease-in;
|
|
295
|
+
}
|
|
296
|
+
trix-editor .attachment__progress[value="100"] {
|
|
297
|
+
opacity: 0;
|
|
298
|
+
}
|
|
299
|
+
trix-editor .attachment__caption-editor {
|
|
300
|
+
display: inline-block;
|
|
301
|
+
width: 100%;
|
|
302
|
+
margin: 0;
|
|
303
|
+
padding: 0;
|
|
304
|
+
font-size: inherit;
|
|
305
|
+
font-family: inherit;
|
|
306
|
+
line-height: inherit;
|
|
307
|
+
color: inherit;
|
|
308
|
+
text-align: center;
|
|
309
|
+
vertical-align: top;
|
|
310
|
+
border: none;
|
|
311
|
+
outline: none;
|
|
312
|
+
-webkit-appearance: none;
|
|
313
|
+
-moz-appearance: none;
|
|
314
|
+
}
|
|
315
|
+
trix-editor .attachment__toolbar {
|
|
316
|
+
position: absolute;
|
|
317
|
+
z-index: 1;
|
|
318
|
+
top: -0.9em;
|
|
319
|
+
left: 0;
|
|
320
|
+
width: 100%;
|
|
321
|
+
text-align: center;
|
|
322
|
+
}
|
|
323
|
+
trix-editor .trix-button-group {
|
|
324
|
+
display: inline-flex;
|
|
325
|
+
}
|
|
326
|
+
trix-editor .trix-button {
|
|
327
|
+
position: relative;
|
|
328
|
+
float: left;
|
|
329
|
+
color: #666;
|
|
330
|
+
white-space: nowrap;
|
|
331
|
+
font-size: 80%;
|
|
332
|
+
padding: 0 0.8em;
|
|
333
|
+
margin: 0;
|
|
334
|
+
outline: none;
|
|
335
|
+
border: none;
|
|
336
|
+
border-radius: 0;
|
|
337
|
+
background: transparent;
|
|
338
|
+
}
|
|
339
|
+
trix-editor .trix-button:not(:first-child) {
|
|
340
|
+
border-left: 1px solid #ccc;
|
|
341
|
+
}
|
|
342
|
+
trix-editor .trix-button.trix-active {
|
|
343
|
+
background: #cbeefa;
|
|
344
|
+
}
|
|
345
|
+
trix-editor .trix-button:not(:disabled) {
|
|
346
|
+
cursor: pointer;
|
|
347
|
+
}
|
|
348
|
+
trix-editor .trix-button--remove {
|
|
349
|
+
text-indent: -9999px;
|
|
350
|
+
display: inline-block;
|
|
351
|
+
padding: 0;
|
|
352
|
+
outline: none;
|
|
353
|
+
width: 1.8em;
|
|
354
|
+
height: 1.8em;
|
|
355
|
+
line-height: 1.8em;
|
|
356
|
+
border-radius: 50%;
|
|
357
|
+
background-color: #fff;
|
|
358
|
+
border: 2px solid highlight;
|
|
359
|
+
box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
|
|
360
|
+
}
|
|
361
|
+
trix-editor .trix-button--remove::before {
|
|
362
|
+
display: inline-block;
|
|
363
|
+
position: absolute;
|
|
364
|
+
top: 0;
|
|
365
|
+
right: 0;
|
|
366
|
+
bottom: 0;
|
|
367
|
+
left: 0;
|
|
368
|
+
opacity: 0.7;
|
|
369
|
+
content: "";
|
|
370
|
+
background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.4L17.6%205%2012%2010.6%206.4%205%205%206.4l5.6%205.6L5%2017.6%206.4%2019l5.6-5.6%205.6%205.6%201.4-1.4-5.6-5.6z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
|
|
371
|
+
background-position: center;
|
|
372
|
+
background-repeat: no-repeat;
|
|
373
|
+
background-size: 90%;
|
|
374
|
+
}
|
|
375
|
+
trix-editor .trix-button--remove:hover {
|
|
376
|
+
border-color: #333;
|
|
377
|
+
}
|
|
378
|
+
trix-editor .trix-button--remove:hover::before {
|
|
379
|
+
opacity: 1;
|
|
380
|
+
}
|
|
381
|
+
trix-editor .attachment__metadata-container {
|
|
382
|
+
position: relative;
|
|
383
|
+
}
|
|
384
|
+
trix-editor .attachment__metadata {
|
|
385
|
+
position: absolute;
|
|
386
|
+
left: 50%;
|
|
387
|
+
top: 2em;
|
|
388
|
+
transform: translate(-50%, 0);
|
|
389
|
+
max-width: 90%;
|
|
390
|
+
padding: 0.1em 0.6em;
|
|
391
|
+
font-size: 0.8em;
|
|
392
|
+
color: #fff;
|
|
393
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
394
|
+
border-radius: 3px;
|
|
395
|
+
}
|
|
396
|
+
trix-editor .attachment__metadata .attachment__name {
|
|
397
|
+
display: inline-block;
|
|
398
|
+
max-width: 100%;
|
|
399
|
+
vertical-align: bottom;
|
|
400
|
+
overflow: hidden;
|
|
401
|
+
text-overflow: ellipsis;
|
|
402
|
+
white-space: nowrap;
|
|
403
|
+
}
|
|
404
|
+
trix-editor .attachment__metadata .attachment__size {
|
|
405
|
+
margin-left: 0.2em;
|
|
406
|
+
white-space: nowrap;
|
|
407
|
+
}
|
|
408
|
+
@charset "UTF-8";
|
|
409
|
+
.trix-content {
|
|
410
|
+
line-height: 1.5;
|
|
411
|
+
}
|
|
412
|
+
.trix-content * {
|
|
413
|
+
box-sizing: border-box;
|
|
414
|
+
margin: 0;
|
|
415
|
+
padding: 0;
|
|
416
|
+
}
|
|
417
|
+
.trix-content h1 {
|
|
418
|
+
font-size: 1.2em;
|
|
419
|
+
line-height: 1.2;
|
|
420
|
+
}
|
|
421
|
+
.trix-content blockquote {
|
|
422
|
+
border: 0 solid #ccc;
|
|
423
|
+
border-left-width: 0.3em;
|
|
424
|
+
margin-left: 0.3em;
|
|
425
|
+
padding-left: 0.6em;
|
|
426
|
+
}
|
|
427
|
+
.trix-content [dir=rtl] blockquote,
|
|
428
|
+
.trix-content blockquote[dir=rtl] {
|
|
429
|
+
border-width: 0;
|
|
430
|
+
border-right-width: 0.3em;
|
|
431
|
+
margin-right: 0.3em;
|
|
432
|
+
padding-right: 0.6em;
|
|
433
|
+
}
|
|
434
|
+
.trix-content li {
|
|
435
|
+
margin-left: 1em;
|
|
436
|
+
}
|
|
437
|
+
.trix-content [dir=rtl] li {
|
|
438
|
+
margin-right: 1em;
|
|
439
|
+
}
|
|
440
|
+
.trix-content pre {
|
|
441
|
+
display: inline-block;
|
|
442
|
+
width: 100%;
|
|
443
|
+
vertical-align: top;
|
|
444
|
+
font-family: monospace;
|
|
445
|
+
font-size: 0.9em;
|
|
446
|
+
padding: 0.5em;
|
|
447
|
+
white-space: pre;
|
|
448
|
+
background-color: #eee;
|
|
449
|
+
overflow-x: auto;
|
|
450
|
+
}
|
|
451
|
+
.trix-content img {
|
|
452
|
+
max-width: 100%;
|
|
453
|
+
height: auto;
|
|
454
|
+
}
|
|
455
|
+
.trix-content .attachment {
|
|
456
|
+
display: inline-block;
|
|
457
|
+
position: relative;
|
|
458
|
+
max-width: 100%;
|
|
459
|
+
}
|
|
460
|
+
.trix-content .attachment a {
|
|
461
|
+
color: inherit;
|
|
462
|
+
text-decoration: none;
|
|
463
|
+
}
|
|
464
|
+
.trix-content .attachment a:hover,
|
|
465
|
+
.trix-content .attachment a:visited:hover {
|
|
466
|
+
color: inherit;
|
|
467
|
+
}
|
|
468
|
+
.trix-content .attachment__caption {
|
|
469
|
+
text-align: center;
|
|
470
|
+
}
|
|
471
|
+
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
|
|
472
|
+
content: " \b7 ";
|
|
473
|
+
}
|
|
474
|
+
.trix-content .attachment--preview {
|
|
475
|
+
width: 100%;
|
|
476
|
+
text-align: center;
|
|
477
|
+
}
|
|
478
|
+
.trix-content .attachment--preview .attachment__caption {
|
|
479
|
+
color: #666;
|
|
480
|
+
font-size: 0.9em;
|
|
481
|
+
line-height: 1.2;
|
|
482
|
+
}
|
|
483
|
+
.trix-content .attachment--file {
|
|
484
|
+
color: #333;
|
|
485
|
+
line-height: 1;
|
|
486
|
+
margin: 0 2px 2px 2px;
|
|
487
|
+
padding: 0.4em 1em;
|
|
488
|
+
border: 1px solid #bbb;
|
|
489
|
+
border-radius: 5px;
|
|
490
|
+
}
|
|
491
|
+
.trix-content .attachment-gallery {
|
|
492
|
+
display: flex;
|
|
493
|
+
flex-wrap: wrap;
|
|
494
|
+
position: relative;
|
|
495
|
+
}
|
|
496
|
+
.trix-content .attachment-gallery .attachment {
|
|
497
|
+
flex: 1 0 33%;
|
|
498
|
+
padding: 0 0.5em;
|
|
499
|
+
max-width: 33%;
|
|
500
|
+
}
|
|
501
|
+
.trix-content .attachment-gallery.attachment-gallery--2 .attachment,
|
|
502
|
+
.trix-content .attachment-gallery.attachment-gallery--4 .attachment {
|
|
503
|
+
flex-basis: 50%;
|
|
504
|
+
max-width: 50%;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
/* src/components/internal/DatePicker/DatePicker.css */
|
|
508
|
+
:root {
|
|
509
|
+
--rdp-cell-size: 32px;
|
|
510
|
+
--rdp-accent-color: rgba(3,105,161,1);
|
|
511
|
+
--rdp-background-color: #e7edff;
|
|
512
|
+
--rdp-accent-color-dark: #3003e1;
|
|
513
|
+
--rdp-background-color-dark: #180270;
|
|
514
|
+
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
515
|
+
--rdp-outline-selected: 2px solid rgba(3,105,161,1);
|
|
516
|
+
}
|
|
517
|
+
.rdp-cell:focus-visible {
|
|
518
|
+
outline: 0;
|
|
519
|
+
}
|
|
520
|
+
.rdp {
|
|
521
|
+
margin: 16px;
|
|
522
|
+
}
|
|
523
|
+
.rdp-vhidden {
|
|
524
|
+
box-sizing: border-box;
|
|
525
|
+
padding: 0;
|
|
526
|
+
margin: 0;
|
|
527
|
+
background: transparent;
|
|
528
|
+
border: 0;
|
|
529
|
+
-moz-appearance: none;
|
|
530
|
+
-webkit-appearance: none;
|
|
531
|
+
appearance: none;
|
|
532
|
+
position: absolute !important;
|
|
533
|
+
top: 0;
|
|
534
|
+
width: 1px !important;
|
|
535
|
+
height: 1px !important;
|
|
536
|
+
padding: 0 !important;
|
|
537
|
+
overflow: hidden !important;
|
|
538
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
539
|
+
border: 0 !important;
|
|
540
|
+
}
|
|
541
|
+
.rdp-button_reset {
|
|
542
|
+
appearance: none;
|
|
543
|
+
position: relative;
|
|
544
|
+
margin: 0;
|
|
545
|
+
padding: 0;
|
|
546
|
+
cursor: default;
|
|
547
|
+
color: inherit;
|
|
548
|
+
outline: none;
|
|
549
|
+
background: none;
|
|
550
|
+
font: inherit;
|
|
551
|
+
-moz-appearance: none;
|
|
552
|
+
-webkit-appearance: none;
|
|
553
|
+
}
|
|
554
|
+
.rdp-button {
|
|
555
|
+
border: 2px solid transparent;
|
|
556
|
+
}
|
|
557
|
+
.rdp-button[aria-disabled=true] {
|
|
558
|
+
opacity: 0.25;
|
|
559
|
+
pointer-events: none;
|
|
560
|
+
}
|
|
561
|
+
.rdp-button:not([aria-disabled="true"]) {
|
|
562
|
+
cursor: pointer;
|
|
563
|
+
}
|
|
564
|
+
.rdp-button:focus,
|
|
565
|
+
.rdp-button:active {
|
|
566
|
+
color: inherit;
|
|
567
|
+
border: var(--rdp-outline);
|
|
568
|
+
background-color: var(--rdp-background-color);
|
|
569
|
+
}
|
|
570
|
+
.rdp-button:hover:not([aria-disabled="true"]) {
|
|
571
|
+
background-color: var(--rdp-background-color);
|
|
572
|
+
}
|
|
573
|
+
.rdp-months {
|
|
574
|
+
display: flex;
|
|
575
|
+
}
|
|
576
|
+
.rdp-month {
|
|
577
|
+
margin: 0 1em;
|
|
578
|
+
}
|
|
579
|
+
.rdp-month:first-child {
|
|
580
|
+
margin-left: 0;
|
|
581
|
+
}
|
|
582
|
+
.rdp-month:last-child {
|
|
583
|
+
margin-right: 0;
|
|
584
|
+
}
|
|
585
|
+
.rdp-table {
|
|
586
|
+
margin: 0;
|
|
587
|
+
max-width: calc(var(--rdp-cell-size) * 7);
|
|
588
|
+
border-collapse: collapse;
|
|
589
|
+
}
|
|
590
|
+
.rdp-with_weeknumber .rdp-table {
|
|
591
|
+
max-width: calc(var(--rdp-cell-size) * 8);
|
|
592
|
+
border-collapse: collapse;
|
|
593
|
+
}
|
|
594
|
+
.rdp-caption {
|
|
595
|
+
display: flex;
|
|
596
|
+
align-items: center;
|
|
597
|
+
justify-content: space-between;
|
|
598
|
+
padding: 0;
|
|
599
|
+
text-align: left;
|
|
600
|
+
}
|
|
601
|
+
.rdp-multiple_months .rdp-caption {
|
|
602
|
+
position: relative;
|
|
603
|
+
display: block;
|
|
604
|
+
text-align: center;
|
|
605
|
+
}
|
|
606
|
+
.rdp-caption_dropdowns {
|
|
607
|
+
position: relative;
|
|
608
|
+
display: inline-flex;
|
|
609
|
+
}
|
|
610
|
+
.rdp-caption_label {
|
|
611
|
+
position: relative;
|
|
612
|
+
z-index: 1;
|
|
613
|
+
display: inline-flex;
|
|
614
|
+
align-items: center;
|
|
615
|
+
margin: 0;
|
|
616
|
+
padding: 0 0.25em;
|
|
617
|
+
white-space: nowrap;
|
|
618
|
+
color: currentColor;
|
|
619
|
+
border: 0;
|
|
620
|
+
border: 2px solid transparent;
|
|
621
|
+
font-family: inherit;
|
|
622
|
+
font-size: 140%;
|
|
623
|
+
font-weight: bold;
|
|
624
|
+
}
|
|
625
|
+
.rdp-nav {
|
|
626
|
+
white-space: nowrap;
|
|
627
|
+
}
|
|
628
|
+
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
629
|
+
position: absolute;
|
|
630
|
+
top: 50%;
|
|
631
|
+
left: 0;
|
|
632
|
+
transform: translateY(-50%);
|
|
633
|
+
}
|
|
634
|
+
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
635
|
+
position: absolute;
|
|
636
|
+
top: 50%;
|
|
637
|
+
right: 0;
|
|
638
|
+
transform: translateY(-50%);
|
|
639
|
+
}
|
|
640
|
+
.rdp-nav_button {
|
|
641
|
+
display: inline-flex;
|
|
642
|
+
align-items: center;
|
|
643
|
+
justify-content: center;
|
|
644
|
+
width: var(--rdp-cell-size);
|
|
645
|
+
height: var(--rdp-cell-size);
|
|
646
|
+
padding: 0.25em;
|
|
647
|
+
border-radius: 100%;
|
|
648
|
+
}
|
|
649
|
+
.rdp-dropdown_year,
|
|
650
|
+
.rdp-dropdown_month {
|
|
651
|
+
position: relative;
|
|
652
|
+
display: inline-flex;
|
|
653
|
+
align-items: center;
|
|
654
|
+
}
|
|
655
|
+
.rdp-dropdown {
|
|
656
|
+
appearance: none;
|
|
657
|
+
position: absolute;
|
|
658
|
+
z-index: 2;
|
|
659
|
+
top: 0;
|
|
660
|
+
bottom: 0;
|
|
661
|
+
left: 0;
|
|
662
|
+
width: 100%;
|
|
663
|
+
margin: 0;
|
|
664
|
+
padding: 0;
|
|
665
|
+
cursor: inherit;
|
|
666
|
+
opacity: 0;
|
|
667
|
+
border: none;
|
|
668
|
+
background-color: transparent;
|
|
669
|
+
font-family: inherit;
|
|
670
|
+
font-size: inherit;
|
|
671
|
+
line-height: inherit;
|
|
672
|
+
}
|
|
673
|
+
.rdp-dropdown[disabled] {
|
|
674
|
+
opacity: unset;
|
|
675
|
+
color: unset;
|
|
676
|
+
}
|
|
677
|
+
.rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,
|
|
678
|
+
.rdp-dropdown:active:not([disabled]) + .rdp-caption_label {
|
|
679
|
+
border: var(--rdp-outline);
|
|
680
|
+
border-radius: 6px;
|
|
681
|
+
background-color: var(--rdp-background-color);
|
|
682
|
+
}
|
|
683
|
+
.rdp-dropdown_icon {
|
|
684
|
+
margin: 0 0 0 5px;
|
|
685
|
+
}
|
|
686
|
+
.rdp-head {
|
|
687
|
+
border: 0;
|
|
688
|
+
}
|
|
689
|
+
.rdp-head_row,
|
|
690
|
+
.rdp-row {
|
|
691
|
+
height: 100%;
|
|
692
|
+
}
|
|
693
|
+
.rdp-head_cell {
|
|
694
|
+
vertical-align: middle;
|
|
695
|
+
text-transform: uppercase;
|
|
696
|
+
font-size: 0.75em;
|
|
697
|
+
font-weight: 700;
|
|
698
|
+
text-align: center;
|
|
699
|
+
height: 100%;
|
|
700
|
+
height: var(--rdp-cell-size);
|
|
701
|
+
padding: 0;
|
|
702
|
+
}
|
|
703
|
+
.rdp-tbody {
|
|
704
|
+
border: 0;
|
|
705
|
+
}
|
|
706
|
+
.rdp-tfoot {
|
|
707
|
+
margin: 0.5em;
|
|
708
|
+
}
|
|
709
|
+
.rdp-cell {
|
|
710
|
+
width: var(--rdp-cell-size);
|
|
711
|
+
height: 100%;
|
|
712
|
+
height: var(--rdp-cell-size);
|
|
713
|
+
padding: 0;
|
|
714
|
+
text-align: center;
|
|
715
|
+
}
|
|
716
|
+
.rdp-weeknumber {
|
|
717
|
+
font-size: 0.75em;
|
|
718
|
+
}
|
|
719
|
+
.rdp-weeknumber,
|
|
720
|
+
.rdp-day {
|
|
721
|
+
display: flex;
|
|
722
|
+
overflow: hidden;
|
|
723
|
+
align-items: center;
|
|
724
|
+
justify-content: center;
|
|
725
|
+
box-sizing: border-box;
|
|
726
|
+
width: var(--rdp-cell-size);
|
|
727
|
+
max-width: var(--rdp-cell-size);
|
|
728
|
+
height: var(--rdp-cell-size);
|
|
729
|
+
margin: 0;
|
|
730
|
+
border: 2px solid transparent;
|
|
731
|
+
border-radius: 100%;
|
|
732
|
+
}
|
|
733
|
+
.rdp-day_today:not(.rdp-day_outside) {
|
|
734
|
+
font-weight: bold;
|
|
735
|
+
}
|
|
736
|
+
.rdp-day_selected:not([aria-disabled="true"]),
|
|
737
|
+
.rdp-day_selected:focus:not([aria-disabled="true"]),
|
|
738
|
+
.rdp-day_selected:active:not([aria-disabled="true"]),
|
|
739
|
+
.rdp-day_selected:hover:not([aria-disabled="true"]) {
|
|
740
|
+
color: white;
|
|
741
|
+
background-color: var(--rdp-accent-color);
|
|
742
|
+
}
|
|
743
|
+
.rdp-day_selected:focus:not([aria-disabled="true"]) {
|
|
744
|
+
border: var(--rdp-outline-selected);
|
|
745
|
+
}
|
|
746
|
+
.rdp:not([dir="rtl"]) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
747
|
+
border-top-right-radius: 0;
|
|
748
|
+
border-bottom-right-radius: 0;
|
|
749
|
+
}
|
|
750
|
+
.rdp:not([dir="rtl"]) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
751
|
+
border-top-left-radius: 0;
|
|
752
|
+
border-bottom-left-radius: 0;
|
|
753
|
+
}
|
|
754
|
+
.rdp[dir=rtl] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
755
|
+
border-top-left-radius: 0;
|
|
756
|
+
border-bottom-left-radius: 0;
|
|
757
|
+
}
|
|
758
|
+
.rdp[dir=rtl] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
759
|
+
border-top-right-radius: 0;
|
|
760
|
+
border-bottom-right-radius: 0;
|
|
761
|
+
}
|
|
762
|
+
.rdp-day_range_end.rdp-day_range_start {
|
|
763
|
+
border-radius: 100%;
|
|
764
|
+
}
|
|
765
|
+
.rdp-day_range_middle {
|
|
766
|
+
border-radius: 0;
|
|
767
|
+
}
|
|
768
|
+
/*# sourceMappingURL=index.css.map */
|