mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-26 19:34:04 +01:00
Send long text as an attachment instead of inline
Remove Android length warning Handle incoming long message attachments Show long download pending status in message bubble Fix the width of the smallest spinner Remove Android length warning from HTML templates
This commit is contained in:
@@ -2,7 +2,10 @@
|
||||
|
||||
```jsx
|
||||
<util.ConversationContext theme={util.theme}>
|
||||
<Spinner />
|
||||
<Spinner size="normal" />
|
||||
<div style={{ backgroundColor: '#2090ea' }}>
|
||||
<Spinner size="normal" />
|
||||
</div>
|
||||
</util.ConversationContext>
|
||||
```
|
||||
|
||||
@@ -10,6 +13,20 @@
|
||||
|
||||
```jsx
|
||||
<util.ConversationContext theme={util.theme}>
|
||||
<Spinner small />
|
||||
<Spinner size="small" />
|
||||
<div style={{ backgroundColor: '#2090ea' }}>
|
||||
<Spinner size="small" />
|
||||
</div>
|
||||
</util.ConversationContext>
|
||||
```
|
||||
|
||||
#### Mini
|
||||
|
||||
```jsx
|
||||
<util.ConversationContext theme={util.theme}>
|
||||
<Spinner size="mini" />
|
||||
<div style={{ backgroundColor: '#2090ea' }}>
|
||||
<Spinner size="mini" />
|
||||
</div>
|
||||
</util.ConversationContext>
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user