Skip to content

Commit

Permalink
Added hover to button
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersSeverinsen committed Oct 18, 2024
1 parent 97bf284 commit e4cd7b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions web/templates/secrets_admin.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{% extends "admin/base_site.html" %}
{% load i18n %}
{% load static %}
{% load bootstrap_icons %}
{% block content %}
<div style="overflow: auto;">
Expand All @@ -25,8 +26,8 @@
<td>
{% if value != None %}
<code class="copyText">{{ value }}</code>
<button type="submit" class="copyButton" style="border: none; background-color: transparent;">
<i style="color: #337ab7">{% bs_icon 'copy' size='1.0em' %}</i>
<button type="submit" class="copyButton" style="border: none; background-color: transparent;" >
<a style="color: #337ab7;" onMouseOver="this.style.color='red'" onMouseOut="this.style.color='#337ab7'" >{% bs_icon 'copy' size='1.0em' %}</a>
</button>
{% else %}
<b>{% translate "Missing from environment" %}</b>
Expand Down

0 comments on commit e4cd7b9

Please sign in to comment.