summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/usr/local/www/bootstrap/css/pfSense.css7
-rw-r--r--src/usr/local/www/guiconfig.inc4
2 files changed, 9 insertions, 2 deletions
diff --git a/src/usr/local/www/bootstrap/css/pfSense.css b/src/usr/local/www/bootstrap/css/pfSense.css
index fd0d55e..0b504e4 100644
--- a/src/usr/local/www/bootstrap/css/pfSense.css
+++ b/src/usr/local/www/bootstrap/css/pfSense.css
@@ -1,6 +1,13 @@
@import url("/bootstrap/css/bootstrap.min.css");
@import url("/bootstrap/glyphicons/glyphicons-halflings.css");
+h1 a:link{
+ color: #000000;
+}
+
+h1 a:visited { color: #000000; }
+h1 a:hover, h1 a:active { color: #000000; text-decoration: none; }
+
html {
position: relative;
min-height: 100%;
diff --git a/src/usr/local/www/guiconfig.inc b/src/usr/local/www/guiconfig.inc
index d052c7f..2071282 100644
--- a/src/usr/local/www/guiconfig.inc
+++ b/src/usr/local/www/guiconfig.inc
@@ -559,9 +559,9 @@ function gentitle($title) {
function genhtmltitle($title) {
if (!is_array($title))
- return '<h1 class="page-header">' . $title . '</h1>';
+ return '<h1 class="page-header"><a href="#">' . $title . '</a></h1>';
- $heading = '<h1 class="page-header">' . end($title) . '</h1>';
+ $heading = '<h1 class="page-header"><a href="#">' . end($title) . '</a></h1>';
// If the array contains only one element, there are no breadcrumbs, so don't
// add anything else
OpenPOWER on IntegriCloud