diff options
author | 藍挺瑋 <lantw44@gmail.com> | 2012-12-19 20:39:02 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2012-12-19 20:39:02 +0800 |
commit | 296099b8b1c057f778e1cbe89d55e3f03ed4790a (patch) | |
tree | c727a1ab93ad611a46cdfbc34d355754b5c1cdf7 | |
parent | d5875a9795e1821d4b8f0f287f38c74e69cb161b (diff) | |
download | inccalendar-296099b8b1c057f778e1cbe89d55e3f03ed4790a.tar.gz inccalendar-296099b8b1c057f778e1cbe89d55e3f03ed4790a.tar.zst inccalendar-296099b8b1c057f778e1cbe89d55e3f03ed4790a.zip |
加入對 Firefox(Gecko)、Opera、Internet Explorer 的漸層色支援
-rw-r--r-- | css/list.css | 6 | ||||
-rw-r--r-- | css/month.css | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/css/list.css b/css/list.css index 99a1297..fa7137c 100644 --- a/css/list.css +++ b/css/list.css @@ -1,5 +1,9 @@ body { - background:-webkit-gradient(linear, left top, left bottom, from(#E8E8E8 ), to(#F8F8F8 )); + background:-webkit-gradient(linear, left top, left bottom, from(#E8E8E8 ), to(#F8F8F8 )); + background:-moz-linear-gradient(top, #E8E8E8 0%, #F8F8F8 100%); + background:-ms-linear-gradient(top, #E8E8E8 0%, #F8F8F8 100%); + background:-o-linear-gradient(top, #E8E8E8 0%, #F8F8F8 100%); + background:linear-gradient(top, #E8E8E8 0%, #F8F8F8 100%); } thead tr > td { font-size:2em; diff --git a/css/month.css b/css/month.css index 8761c0b..7f4640b 100644 --- a/css/month.css +++ b/css/month.css @@ -1,5 +1,9 @@ body { - background:-webkit-gradient(linear, left top, left bottom, from(#FFFFCC), to(#FFFF66)); + background: -webkit-gradient(linear, left top, left bottom, from(#FFFFCC), to(#FFFF66)); + background: -moz-linear-gradient(top, #FFFFCC 0%, #FFFF66 100%); + background: -ms-linear-gradient(top, #FFFFCC 0%, #FFFF66 100%); + background: -o-linear-gradient(top, #FFFFCC 0%, #FFFF66 100%); + background: linear-gradient(top, #FFFFCC 0%, #FFFF66 100%); } div#timeselect{ margin-top: 20px; @@ -11,7 +15,7 @@ div#timeselect{ div#timeselect input{ vertical-align: text-top; } -div#timeedit_button :{ +div#timeedit_button { color:#EE0000; } table#cal{ |