Add pointer cursor to QR pictogram

pull/7/head
mdPlusPlus 2 years ago
parent c693de6d29
commit 4ff748818e

@ -55,7 +55,7 @@
" <td>" . $content["description"] . "</td>" . PHP_EOL . " <td>" . $content["description"] . "</td>" . PHP_EOL .
" <td class=\"td_users\">" . $content["active_users"] . "</td>" . PHP_EOL . " <td class=\"td_users\">" . $content["active_users"] . "</td>" . PHP_EOL .
" <td><a href=\"" . $content["preview_link"] . "\">" . $content["preview_link"] . "</a></td>" . PHP_EOL . " <td><a href=\"" . $content["preview_link"] . "\">" . $content["preview_link"] . "</a></td>" . PHP_EOL .
" <td><img src=\"qrcode-solid.svg\" onclick=\"displayQRModal('" . $id . "')\" alt=\"Pictogram of an QR code\"></td>" . PHP_EOL . " <td><img class=\"qr-code-icon\" src=\"qrcode-solid.svg\" onclick=\"displayQRModal('" . $id . "')\" alt=\"Pictogram of an QR code\"></td>" . PHP_EOL .
" <td class=\"td_join_url\"><a href=\"" . $content["join_link"] . "\">" . $content["join_link"] . "</a></td>" . PHP_EOL . " <td class=\"td_join_url\"><a href=\"" . $content["join_link"] . "\">" . $content["join_link"] . "</a></td>" . PHP_EOL .
" </tr>" . PHP_EOL; " </tr>" . PHP_EOL;
$table_lines[] = $line; $table_lines[] = $line;

@ -49,6 +49,9 @@ body { background-color: var(--session-classic-da
margin-right: auto; margin-right: auto;
width: 50%; width: 50%;
} }
.qr-code-icon {
cursor: pointer;
}
.qr-code-modal { .qr-code-modal {
display: none; /* Hidden by default */ display: none; /* Hidden by default */
position: fixed; /* Stay in place */ position: fixed; /* Stay in place */

Loading…
Cancel
Save