From ba285032f59b91fa9673b1fc393b969025ce9f81 Mon Sep 17 00:00:00 2001 From: Fengyang Gao Date: Sun, 16 Nov 2014 15:16:07 +0800 Subject: [PATCH] show selection color in textarea Currently, you have no idea whether the text in "Export / Import" is selected since the background is transparent. --- css/main.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/main.css b/css/main.css index 4883870..a9ed059 100644 --- a/css/main.css +++ b/css/main.css @@ -24,6 +24,14 @@ body { background-color: transparent; } +#description textarea::selection { + background-color: gray; +} + +#description textarea::-moz-selection { + background-color: gray; +} + /* Framework stuff */ div.clear {