diff options
author | raylu <raylu@mixpanel.com> | 2011-07-04 02:57:56 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-04 02:58:28 -0700 |
commit | fa4cbd84991251413cbf74ae6b3b097c0a449910 (patch) | |
tree | 3a732894499ae66c3f5ff0084f8b711eb151e089 /webroot | |
parent | 47581aa5b4f85522a1ec171eae76da6105b3b954 (diff) | |
download | otakuhub-fa4cbd84991251413cbf74ae6b3b097c0a449910.tar.xz |
why is the text selection hot pink?
Diffstat (limited to 'webroot')
-rw-r--r-- | webroot/css/style.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/webroot/css/style.css b/webroot/css/style.css index 64fe2c6..d3c13f5 100644 --- a/webroot/css/style.css +++ b/webroot/css/style.css @@ -150,10 +150,9 @@ label, input[type=button], input[type=submit], button { cursor: pointer; } /* These selection declarations have to be separate. - No text-shadow: twitter.com/miketaylr/status/12228805301 - Also: hot pink. */ -::-moz-selection { background: #FF5E99; color:#fff; text-shadow: none; } -::selection { background:#FF5E99; color:#fff; text-shadow: none; } + No text-shadow: twitter.com/miketaylr/status/12228805301 */ +::-moz-selection { background: #69c; color:#fff; text-shadow: none; } +::selection { background: #69c; color:#fff; text-shadow: none; } /* j.mp/webkit-tap-highlight-color */ a:link { -webkit-tap-highlight-color: #FF5E99; } |