From 35167c283f1be9143a694bd7157788ce023b442e Mon Sep 17 00:00:00 2001 From: shu Date: Mon, 27 May 2019 15:44:49 +0200 Subject: [PATCH] Mastodon: compose toot --- src/App.vue | 2 +- src/services/mastodon/Client.vue | 72 ++++++++++++++++++++++++++++++-- src/services/mastodon/Status.vue | 5 +++ src/services/mastodon/Types.ts | 14 ++++++- 4 files changed, 87 insertions(+), 6 deletions(-) diff --git a/src/App.vue b/src/App.vue index 310f4e8..bb58461 100644 --- a/src/App.vue +++ b/src/App.vue @@ -263,7 +263,7 @@ a, .osef text-decoration: none color: $noneColor -input, select, button +input, select, button, textarea background-color: $backColor color: $foreColor border: 1px solid $halfColor diff --git a/src/services/mastodon/Client.vue b/src/services/mastodon/Client.vue index 8a51ef8..12c1cd6 100644 --- a/src/services/mastodon/Client.vue +++ b/src/services/mastodon/Client.vue @@ -1,6 +1,6 @@