From cc6c71279284d8d2b69b8565c43d10befa11eba6 Mon Sep 17 00:00:00 2001 From: Jonathan la Cour Date: Sun, 11 Sep 2016 12:41:17 -0600 Subject: [PATCH] Add styles for channel preferences modal --- scss/main.scss | 1 + scss/modules/modals/_channel.scss | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 scss/modules/modals/_channel.scss diff --git a/scss/main.scss b/scss/main.scss index 10a45ba2..9061a114 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -54,6 +54,7 @@ @import "modules/emojis/reactions"; @import "modules/modals/base"; + @import "modules/modals/channel"; @import "modules/modals/channels"; @import "modules/modals/direct-messages"; @import "modules/modals/file"; diff --git a/scss/modules/modals/_channel.scss b/scss/modules/modals/_channel.scss new file mode 100644 index 00000000..f0c3e1c1 --- /dev/null +++ b/scss/modules/modals/_channel.scss @@ -0,0 +1,22 @@ +#fs_modal.channel_options_modal { + .channel_options_header { + border-bottom-color: $color-shade-dark; + } + + .convert_to_shared label { + color: $color-highlight; + } + + .channel_option_item { + border-top-color: $color-shade-dark; + + .channel_option_open { + color: $base-font-color; + } + + &:hover { + background: rgba($color-shade-darkest, 0.75); + border-color: $color-shade-dark; + } + } +}