diff options
author | Erik Kristensen <ekristen@pfsense.org> | 2005-07-31 03:59:44 +0000 |
---|---|---|
committer | Erik Kristensen <ekristen@pfsense.org> | 2005-07-31 03:59:44 +0000 |
commit | 612832eca2dbdbae5bafc881f0020196472b45ef (patch) | |
tree | bc940975cf8c76a0b08ac8f08ece2539bd381460 | |
parent | d3ce564b9896e4e67af44cc23238abca0bbbe5d3 (diff) | |
download | pfsense-612832eca2dbdbae5bafc881f0020196472b45ef.zip pfsense-612832eca2dbdbae5bafc881f0020196472b45ef.tar.gz |
cosmetic changes to the alert system
-rwxr-xr-x | usr/local/www/fbegin.inc | 7 | ||||
-rw-r--r-- | usr/local/www/themes/metallic/all.css | 10 | ||||
-rw-r--r-- | usr/local/www/themes/pfsense-dropdown/all.css | 11 | ||||
-rw-r--r-- | usr/local/www/themes/pfsense/all.css | 10 |
4 files changed, 37 insertions, 1 deletions
diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc index 5601d83..a39dd9a 100755 --- a/usr/local/www/fbegin.inc +++ b/usr/local/www/fbegin.inc @@ -45,6 +45,7 @@ require_once("notices.inc"); $noticemsg = str_replace("'", "", $value['notice']); $noticemsg = str_replace('"', "", $noticemsg); $noticemsg = str_replace("\n", "", $noticemsg); + $notice_msgs = '<a href="?noticeaction=acknowledge¬iceid=all">Acknowledge All</a> .:. '; if ($value['url']) { $notice_msgs .= $date.' - <a href="'.$url.'?noticeaction=acknowledge¬iceid='.$key.'">['.$value['id'].']</a>'; } else { @@ -61,7 +62,11 @@ require_once("notices.inc"); </div> <? } else { - print $config['system']['hostname'] . "." . $config['system']['domain']; +?> + <div id="hostname"> + <? print $config['system']['hostname'] . "." . $config['system']['domain']; ?> + </div> +<? } ?> </span> diff --git a/usr/local/www/themes/metallic/all.css b/usr/local/www/themes/metallic/all.css index 7877132..607b54a 100644 --- a/usr/local/www/themes/metallic/all.css +++ b/usr/local/www/themes/metallic/all.css @@ -99,6 +99,16 @@ iframe { padding-left: 5px; margin: 0px; } +#header-right .container .right #hostname { + position: relative; + height: 39px; + width: 431px; + z-index: 1; + padding-left: 5px; + margin: 0px; + top: 25px; + left: 230px; +} diff --git a/usr/local/www/themes/pfsense-dropdown/all.css b/usr/local/www/themes/pfsense-dropdown/all.css index 575a6a7..7d5918b 100644 --- a/usr/local/www/themes/pfsense-dropdown/all.css +++ b/usr/local/www/themes/pfsense-dropdown/all.css @@ -77,6 +77,17 @@ form input { padding-left: 5px; margin: 0px; } +#header-right .container .right #hostname { + position: relative; + height: 39px; + width: 431px; + z-index: 1; + padding-left: 5px; + margin: 0px; + top: 25px; + left: 230px; +} + diff --git a/usr/local/www/themes/pfsense/all.css b/usr/local/www/themes/pfsense/all.css index c5507a2..5af4192 100644 --- a/usr/local/www/themes/pfsense/all.css +++ b/usr/local/www/themes/pfsense/all.css @@ -90,6 +90,16 @@ form input { padding-left: 5px; margin: 0px; } +#header-right .container .right #hostname { + position: relative; + height: 39px; + width: 431px; + z-index: 1; + padding-left: 5px; + margin: 0px; + top: 25px; + left: 230px; +} |