Skip to content

Commit 416bbd9

Browse files
committed
Fix css
1 parent 0b973eb commit 416bbd9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

assets/css/styles.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,6 +1213,10 @@ video {
12131213
background-color: #f3f4f6;
12141214
}
12151215

1216+
.hover\:bg-gray-50:hover {
1217+
background-color: #f9fafb;
1218+
}
1219+
12161220
.hover\:bg-green-600:hover {
12171221
background-color: #16a34a;
12181222
}
@@ -1416,6 +1420,10 @@ video {
14161420
background-color: #991b1b;
14171421
}
14181422

1423+
.dark\:hover\:bg-white\/5:hover:is(.dark *) {
1424+
background-color: rgb(255 255 255 / 0.05);
1425+
}
1426+
14191427
.dark\:hover\:text-gray-100:hover:is(.dark *) {
14201428
color: #f3f4f6;
14211429
}

templates/partials/keys_table.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</thead>
2828
<tbody>
2929
{% for key in keys %}
30-
<tr class="[&:last-child>*]:border-b-0 dark:border-gray-700" data-key="{{ key.base64 ? key.key|base64 : key.key }}">
30+
<tr class="[&:last-child>*]:border-b-0 hover:bg-gray-50 dark:hover:bg-white/5 dark:border-gray-700" data-key="{{ key.base64 ? key.key|base64 : key.key }}">
3131
{% if show_actions %}
3232
<td class="pl-6 px-3 py-2 border-b border-gray-200 dark:border-gray-700">{{ include('components/checkbox.twig', {class: 'check-key'}) }}</td>
3333
{% endif %}

0 commit comments

Comments
 (0)