Add title on pubkey hover, fix css for breadcrumbs navigation

This commit is contained in:
poka 2019-11-08 04:06:39 +01:00
parent 7dd186b47c
commit 0ad78697ac
2 changed files with 8 additions and 3 deletions

View File

@ -44,7 +44,7 @@ $bdd = new \PDO("mysql:host=$host;dbname=$database_name", $username, $password);
$pubkey = $row['pubkey'];
$pubkeyShort = substr($pubkey, 0, 8);
$vendeur_format = "<a target=\"_blank\" href=\"https://g1.duniter.fr/#/app/wot/$pubkey/\">$vendeur</a>";
$cle_pub_format = "<a target=\"_blank\" href=\"https://g1.duniter.fr/api/#/v1/payment/$pubkey?amount=$prix&name=$vendeur&comment=[Achat GMarche] : $produit&preferred_node=https://g1.librelois.fr&redirect_url=https://gmarche.monnaie-libre.fr\"> $pubkeyShort... </a>";
$cle_pub_format = "<a target=\"_blank\" href=\"https://g1.duniter.fr/api/#/v1/payment/$pubkey?amount=$prix&name=$vendeur&comment=[Achat GMarche] : $produit&preferred_node=https://g1.librelois.fr&redirect_url=https://gmarche.monnaie-libre.fr\" title=$pubkey> $pubkeyShort... </a>";
$data .= '<td>'.$produit.'</td>';
$data .= '<td><img src="/uploads/products/'.$antenne_slug.'/'.$row['image'].'" width="100" height="100" /></td>';
$data .= '<td>'.$vendeur_format.'</td>';

View File

@ -24,8 +24,13 @@ img {
height: auto;
}
a :hover {
background-color: lightgreen;
#la_page a {
color: #5B5EA6;
}
.breadcrumbs a:hover {
/* background-color: lightgreen; */
font-size: 1.03em;
text-decoration: none;
}