Skip to content

Commit 8ec7cdb

Browse files
committed
Add hover effect to highlight bottom border on all input fields
1 parent 3455da1 commit 8ec7cdb

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Send to ntfy",
4-
"version": "2.1.1",
4+
"version": "2.1.2",
55
"description": "Send notifications to ntfy.sh with file attachments, priority, and tags",
66
"permissions": [
77
"activeTab",

popup.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,12 @@
235235
outline: none;
236236
}
237237

238+
.form-input:hover,
239+
.form-select:hover,
240+
.form-textarea:hover {
241+
border-bottom-color: var(--border-focus);
242+
}
243+
238244
.form-input:focus,
239245
.form-select:focus,
240246
.form-textarea:focus {
@@ -368,6 +374,11 @@
368374
transition: border-color 0.2s;
369375
}
370376

377+
.topics-container:hover,
378+
.tags-container:hover {
379+
border-bottom-color: var(--border-focus);
380+
}
381+
371382
.topics-container:focus-within,
372383
.tags-container:focus-within {
373384
border-bottom-color: var(--border-focus);

0 commit comments

Comments
 (0)