diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2016-02-16 07:46:50 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2016-02-16 07:46:50 -0500 |
commit | 3e3165c2f83e5e3a9a0d0d7b05fb3f6a5291a4cd (patch) | |
tree | 46116f0adae554ccaf12853a402813898c78b6ed /src | |
parent | b6b7ab7d0067c2ec5e1c1ebdfb958617ab1d492d (diff) | |
parent | d0f90e1c7dcc6a1a7c3cd1e780dc2e7d7ecc12b4 (diff) | |
download | pfsense-3e3165c2f83e5e3a9a0d0d7b05fb3f6a5291a4cd.zip pfsense-3e3165c2f83e5e3a9a0d0d7b05fb3f6a5291a4cd.tar.gz |
Merge branch 'patch-9' of https://github.com/k-paulius/pfsense
* 'patch-9' of https://github.com/k-paulius/pfsense:
Stop generating page-header instead of hiding it. With breadcrumbs introduces it no longer serves any useful purpose.
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/bootstrap/css/pfSense-dark.css | 4 | ||||
-rw-r--r-- | src/usr/local/www/bootstrap/css/pfSense.css | 19 | ||||
-rw-r--r-- | src/usr/local/www/guiconfig.inc | 5 |
3 files changed, 3 insertions, 25 deletions
diff --git a/src/usr/local/www/bootstrap/css/pfSense-dark.css b/src/usr/local/www/bootstrap/css/pfSense-dark.css index 3218206..f177761 100644 --- a/src/usr/local/www/bootstrap/css/pfSense-dark.css +++ b/src/usr/local/www/bootstrap/css/pfSense-dark.css @@ -65,10 +65,6 @@ table.sortable-theme-bootstrap { color: #e0e0e0; } -.page-header { - border: 0; -} - .breadcrumb { background-color: #303030; box-shadow: 1px 1px 3px #151515; diff --git a/src/usr/local/www/bootstrap/css/pfSense.css b/src/usr/local/www/bootstrap/css/pfSense.css index f066be2..87082c8 100644 --- a/src/usr/local/www/bootstrap/css/pfSense.css +++ b/src/usr/local/www/bootstrap/css/pfSense.css @@ -43,13 +43,9 @@ h1 a:link, h1 a:visited { text-decoration: none !important; } -h1.page-header { - display: none; -} - -h1 a:hover, h1 a:active { - color: #000000; - text-decoration: none !important; +h1 a:hover, h1 a:active { + color: #000000; + text-decoration: none !important; } .container.fixed { @@ -91,11 +87,6 @@ tr.disabled th { margin-bottom: 0px; } -.page-header { - padding-bottom: 4px; - margin-bottom: 10px; -} - /* navigation */ .navbar { margin-bottom: 10px; @@ -288,10 +279,6 @@ tr.disabled th { margin: 10px 0 20px 0; } -.header .page-header { - margin-top: 0; -} - .header .context-links { position: absolute; right: 15px; diff --git a/src/usr/local/www/guiconfig.inc b/src/usr/local/www/guiconfig.inc index 13ef591..b33d977 100644 --- a/src/usr/local/www/guiconfig.inc +++ b/src/usr/local/www/guiconfig.inc @@ -514,11 +514,6 @@ function gentitle($title) { } function genhtmltitle($title) { - if (!is_array($title)) { - return '<h1 class="page-header"><a href="">' . $title . '</a></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 |