From c808b5b418bb942987a73d217ebfa4f06ce34249 Mon Sep 17 00:00:00 2001 From: Darren Date: Mon, 26 Sep 2011 21:16:27 +0100 Subject: [PATCH] Alertbox CSS --- css/ui.css | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/css/ui.css b/css/ui.css index c8570f2..59a5dbd 100644 --- a/css/ui.css +++ b/css/ui.css @@ -135,7 +135,21 @@ - +#alertbox { + background-image: linear-gradient(bottom, rgb(212,212,45) 43%, rgb(171,171,0) 72%); + background-image: -o-linear-gradient(bottom, rgb(212,212,45) 43%, rgb(171,171,0) 72%); + background-image: -moz-linear-gradient(bottom, rgb(212,212,45) 43%, rgb(171,171,0) 72%); + background-image: -webkit-linear-gradient(bottom, rgb(212,212,45) 43%, rgb(171,171,0) 72%); + background-image: -ms-linear-gradient(bottom, rgb(212,212,45) 43%, rgb(171,171,0) 72%); + + background-image: -webkit-gradient( + linear, + left bottom, + left top, + color-stop(0.43, rgb(212,212,45)), + color-stop(0.72, rgb(171,171,0)) + ); +} -- 2.25.1