diff --git a/scss/main.scss b/scss/main.scss index 5514bb17..348bf8e4 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -24,6 +24,7 @@ @import "modules/menu/tabcomplete"; @import "modules/menu/flex"; @import "modules/menu/filters"; + @import "modules/menu/direct-messaging"; @import "modules/header/base"; @import "modules/header/search"; diff --git a/scss/modules/menu/_base.scss b/scss/modules/menu/_base.scss index ac57fc20..11dfa7d1 100644 --- a/scss/modules/menu/_base.scss +++ b/scss/modules/menu/_base.scss @@ -88,13 +88,13 @@ } input { - background: $color-shade-darkest; - border: 1px solid $color-shade-darkest; + background: $color-shade-dark; + border: 1px solid $color-shade-light; } textarea { - background: $color-shade-darkest; - border: 1px solid $color-shade-darkest; + background: $color-shade-dark; + border: 1px solid $color-shade-light; } #menu_footer { diff --git a/scss/modules/menu/_direct-messaging.scss b/scss/modules/menu/_direct-messaging.scss new file mode 100644 index 00000000..9c7fe037 --- /dev/null +++ b/scss/modules/menu/_direct-messaging.scss @@ -0,0 +1,18 @@ +#im-list, +#starred-list { + li.member.active .presence { + color: $white; + + &.away { + text-shadow: 1px 1px $color-shadow-light; + } + } +} + +#about_dms_link { + color: $base-link-color; + + &:hover { + color: $base-link-color-active; + } +}