From 8be70eb9f3562c6b4eb9084e18a4dca062857ae2 Mon Sep 17 00:00:00 2001 From: Alex P Date: Mon, 12 Dec 2016 17:55:45 -0800 Subject: [PATCH] Works for textarea as well as input --- ui/src/style/enterprise_style/theme-dark.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ui/src/style/enterprise_style/theme-dark.scss b/ui/src/style/enterprise_style/theme-dark.scss index c92d15c0f..ac6dafb99 100644 --- a/ui/src/style/enterprise_style/theme-dark.scss +++ b/ui/src/style/enterprise_style/theme-dark.scss @@ -143,6 +143,21 @@ .form-group-submit { margin-top: 30px; } +textarea { + &::-webkit-input-placeholder { color: $g10-wolf; } + &::-moz-placeholder { color: $g10-wolf; } + &:-ms-input-placeholder { color: $g10-wolf; } + &:-moz-placeholder { color: $g10-wolf; } + + &::selection { + background-color: $c-laser; + color: $g20-white; + } + &::-moz-selection { + background-color: $c-laser; + color: $g20-white; + } +}