From 9a91b4cf1e1bc240c3427ff243f2c087c53b9562 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Mon, 6 Aug 2012 14:27:00 +0800 Subject: [PATCH] add selected bg style --- neoease/css/neoease.css | 13 ++++++++++++- neoease/css/neoease.min.css | 2 ++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/neoease/css/neoease.css b/neoease/css/neoease.css index 13facc5..2b204eb 100644 --- a/neoease/css/neoease.css +++ b/neoease/css/neoease.css @@ -2,7 +2,7 @@ * skin neoease style * * @author Liyuan Li - * @version 1.0.1.6, May 14, 2012 + * @version 1.0.1.7, Aug 6, 2012 */ /* start base */ html, body, div, ul, li, h1, h2, h3, h4, h5, h6 { @@ -10,6 +10,17 @@ html, body, div, ul, li, h1, h2, h3, h4, h5, h6 { padding: 0; } +::selection { + background-color: #ccc; + color: #fff; +} + + +::-moz-selection{ + background-color: #ccc; + color: #fff; +} + body { font-family: "Lucida Grande",'Verdana,\5fae\8f6f\96c5\9ed1'; font-size: 12px; diff --git a/neoease/css/neoease.min.css b/neoease/css/neoease.min.css index 4a40a81..76cf1a4 100644 --- a/neoease/css/neoease.min.css +++ b/neoease/css/neoease.min.css @@ -1,4 +1,6 @@ html,body,div,ul,li,h1,h2,h3,h4,h5,h6{margin:0;padding:0;} +::selection{background-color:#ccc;color:#fff;} +::-moz-selection{background-color:#ccc;color:#fff;} body{font-family:"Lucida Grande",'Verdana,\5fae\8f6f\96c5\9ed1';font-size:12px;background-color:#F9F9F9;color:#333;} a:link{outline:none;color:#21759B;text-decoration:none;} a:visited{color:#555777;}