Skip to content

Commit

Permalink
Increase contrast of typing indicator in iOS theme
Browse files Browse the repository at this point in the history
  • Loading branch information
scottnonnenberg-signal committed Jan 15, 2019
1 parent 92c2a0f commit cba4766
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions stylesheets/_ios.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@
color: $color-light-60;
}

.module-typing-animation__dot {
background-color: $color-gray-60;
}

.module-typing-animation__dot--light {
background-color: $color-gray-60;
}

&.dark-theme {
// _modules

Expand Down
4 changes: 2 additions & 2 deletions ts/components/conversation/TypingBubble.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### In message bubble

```jsx
<util.ConversationContext theme={util.theme}>
<util.ConversationContext theme={util.theme} ios={util.ios}>
<li>
<TypingBubble conversationType="direct" i18n={util.i18n} />
</li>
Expand All @@ -14,7 +14,7 @@
### In message bubble, group conversation

```jsx
<util.ConversationContext theme={util.theme}>
<util.ConversationContext theme={util.theme} ios={util.ios}>
<li>
<TypingBubble color="red" conversationType="group" i18n={util.i18n} />
</li>
Expand Down

0 comments on commit cba4766

Please sign in to comment.