sentier-dev / dds_registration

Django app for event registration and billing
MIT License
0 stars 1 forks source link

Class `btn btn-default` should have outline #85

Closed cmutel closed 6 months ago

cmutel commented 6 months ago
Screenshot 2024-04-02 at 09 21 54

It's easy for users not to understand that there aren't buttons without the outline.

lilliputten commented 6 months ago

Those buttons in those groups that are links remain non-outlined but underlined.

2024-04-02-16-59-12

cmutel commented 6 months ago

Let's put an outline on every button. Isn't this a simple CSS rule?

lilliputten commented 6 months ago

Probably, it'd be better to remove underlines from link buttons. (I'm not sure that we have to mark this kind of ui elements. But it looks a bit sloppy.)

2024-04-02-17-09-06

cmutel commented 6 months ago
a .btn-link {
  text-decoration: none;
}

Quicker to fix than to chat about :)

lilliputten commented 6 months ago

No. That's wrong (but close). But I get the idea. And the question wasn't about the exact technical solution. But more about UX (still not sure that this approach is good).