Skip to content

Commit

Permalink
Make div border slightly clearer on hover/focus
Browse files Browse the repository at this point in the history
  • Loading branch information
dsevillamartin committed Jun 29, 2024
1 parent f918b62 commit 6b2e554
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion resources/less/forum.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@

&.editable:not(.editing) {
cursor: text;
border-color: rgba(255, 255, 255, 0.1);
transition: 0.2s ease border-color;

border-color: rgba(255, 255, 255, 0.2);
&:hover, &:focus {
border-color: rgba(255, 255, 255, 0.3);
}
}

&, textarea {
Expand Down

0 comments on commit 6b2e554

Please sign in to comment.