show selection color in textarea

Currently, you have no idea whether the text in "Export / Import" is
selected since the background is transparent.
This commit is contained in:
Fengyang Gao
2014-11-16 15:16:07 +08:00
parent 68da61e8cf
commit ba285032f5
+8
View File
@@ -24,6 +24,14 @@ body {
background-color: transparent; background-color: transparent;
} }
#description textarea::selection {
background-color: gray;
}
#description textarea::-moz-selection {
background-color: gray;
}
/* Framework stuff */ /* Framework stuff */
div.clear { div.clear {