summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-03-20 18:52:45 -0400
committerDessalines <tyhou13@gmx.com>2020-03-20 18:52:45 -0400
commitbde422ab301557c25f9b7502642bfca8e0af9550 (patch)
treea4dc726463deea737531d1dcb00cbd4224a5a931
parent0050ae74a44c88a9a2be3a1a864423b0da627639 (diff)
Changing to btn-outline-light
-rw-r--r--ui/src/components/inbox.tsx8
-rw-r--r--ui/src/components/user.tsx8
2 files changed, 8 insertions, 8 deletions
diff --git a/ui/src/components/inbox.tsx b/ui/src/components/inbox.tsx
index 63004c26..4fa1498a 100644
--- a/ui/src/components/inbox.tsx
+++ b/ui/src/components/inbox.tsx
@@ -178,7 +178,7 @@ export class Inbox extends Component<any, InboxState> {
return (
<div class="btn-group btn-group-toggle">
<label
- className={`btn btn-sm btn-secondary pointer
+ className={`btn btn-sm btn-secondary pointer btn-outline-light
${this.state.messageType == MessageType.All && 'active'}
`}
>
@@ -191,7 +191,7 @@ export class Inbox extends Component<any, InboxState> {
{i18n.t('all')}
</label>
<label
- className={`btn btn-sm btn-secondary pointer border-right border-light
+ className={`btn btn-sm btn-secondary pointer btn-outline-light
${this.state.messageType == MessageType.Replies && 'active'}
`}
>
@@ -204,7 +204,7 @@ export class Inbox extends Component<any, InboxState> {
{i18n.t('replies')}
</label>
<label
- className={`btn btn-sm btn-secondary pointer border-right border-light
+ className={`btn btn-sm btn-secondary pointer btn-outline-light
${this.state.messageType == MessageType.Mentions && 'active'}
`}
>
@@ -217,7 +217,7 @@ export class Inbox extends Component<any, InboxState> {
{i18n.t('mentions')}
</label>
<label
- className={`btn btn-sm btn-secondary pointer border-right border-light
+ className={`btn btn-sm btn-secondary pointer btn-outline-light
${this.state.messageType == MessageType.Messages && 'active'}
`}
>
diff --git a/ui/src/components/user.tsx b/ui/src/components/user.tsx
index 245df42f..bf67a5fd 100644
--- a/ui/src/components/user.tsx
+++ b/ui/src/components/user.tsx
@@ -246,7 +246,7 @@ export class User extends Component<any, UserState> {
return (
<div class="btn-group btn-group-toggle">
<label
- className={`btn btn-sm btn-secondary pointer border-right border-light
+ className={`btn btn-sm btn-secondary pointer btn-outline-light
${this.state.view == View.Overview && 'active'}
`}
>
@@ -259,7 +259,7 @@ export class User extends Component<any, UserState> {
{i18n.t('overview')}
</label>
<label
- className={`btn btn-sm btn-secondary pointer border-right border-light
+ className={`btn btn-sm btn-secondary pointer btn-outline-light
${this.state.view == View.Comments && 'active'}
`}
>
@@ -272,7 +272,7 @@ export class User extends Component<any, UserState> {
{i18n.t('comments')}
</label>
<label
- className={`btn btn-sm btn-secondary pointer border-right border-light
+ className={`btn btn-sm btn-secondary pointer btn-outline-light
${this.state.view == View.Posts && 'active'}
`}
>
@@ -285,7 +285,7 @@ export class User extends Component<any, UserState> {
{i18n.t('posts')}
</label>
<label
- className={`btn btn-sm btn-secondary pointer border-right border-light
+ className={`btn btn-sm btn-secondary pointer btn-outline-light
${this.state.view == View.Saved && 'active'}
`}
>