From cc29f25b87d44daf5da2d3ef702ea29a333630b5 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sat, 15 Aug 2020 21:41:55 -0500 Subject: [UI] Non-destructive conversion of reply to non-reply, add clear button --- .../glitch/styles/monsterfork/components/composer.scss | 11 +++++++++++ .../flavours/glitch/styles/monsterfork/components/index.scss | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 app/javascript/flavours/glitch/styles/monsterfork/components/composer.scss (limited to 'app/javascript/flavours/glitch/styles/monsterfork/components') diff --git a/app/javascript/flavours/glitch/styles/monsterfork/components/composer.scss b/app/javascript/flavours/glitch/styles/monsterfork/components/composer.scss new file mode 100644 index 000000000..ba347b1cc --- /dev/null +++ b/app/javascript/flavours/glitch/styles/monsterfork/components/composer.scss @@ -0,0 +1,11 @@ +.composer--publisher { + .clear { + background: darken($ui-base-color, 8%); + color: $secondary-text-color; + margin: 0 2px; + padding: 0; + width: 36px; + text-align: center; + float: left; + } +} diff --git a/app/javascript/flavours/glitch/styles/monsterfork/components/index.scss b/app/javascript/flavours/glitch/styles/monsterfork/components/index.scss index c40ec2392..84da74f82 100644 --- a/app/javascript/flavours/glitch/styles/monsterfork/components/index.scss +++ b/app/javascript/flavours/glitch/styles/monsterfork/components/index.scss @@ -1,2 +1,3 @@ +@import 'composer'; @import 'status'; -@import 'formatting'; \ No newline at end of file +@import 'formatting'; -- cgit