Skip to content
Snippets Groups Projects
Commit 16ec89fc authored by Jaime Pérez's avatar Jaime Pérez Committed by Jaime Perez
Browse files

bugfix: Remove inline style for links in the header, and change that for a proper CSS.

parent 46989478
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,7 @@ if($onLoad !== '') { ...@@ -125,7 +125,7 @@ if($onLoad !== '') {
<div id="wrap"> <div id="wrap">
<div id="header"> <div id="header">
<h1><a style="text-decoration: none; color: white" href="/<?php echo $this->data['baseurlpath']; ?>"><?php <h1><a href="/<?php echo $this->data['baseurlpath']; ?>"><?php
echo (isset($this->data['header']) ? $this->data['header'] : 'SimpleSAMLphp'); echo (isset($this->data['header']) ? $this->data['header'] : 'SimpleSAMLphp');
?></a></h1> ?></a></h1>
</div> </div>
......
...@@ -65,7 +65,12 @@ a:hover, a:active { ...@@ -65,7 +65,12 @@ a:hover, a:active {
text-decoration: none; text-decoration: none;
color: #333; color: #333;
border-bottom: 1px solid #333; border-bottom: 1px solid #333;
} }
#header a {
color: #fff;
text-decoration: none;
}
/* LISTS */ /* LISTS */
ul { ul {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment