Bug 32067 - [OMNIBUS] Consistent classes for submit and/or primary buttons
Summary: [OMNIBUS] Consistent classes for submit and/or primary buttons
Status: ASSIGNED
Alias: None
Product: Koha
Classification: Unclassified
Component: Templates (show other bugs)
Version: Main
Hardware: All All
: P5 - low enhancement (vote)
Assignee: Owen Leonard
QA Contact: Testopia
URL:
Keywords:
Depends on: 32068 32070 32071 32072 32073 32085 32087 32088 32091 32094 32096 32097 32098 32099
Blocks:
  Show dependency treegraph
 
Reported: 2022-11-02 11:06 UTC by Owen Leonard
Modified: 2022-11-03 15:32 UTC (History)
0 users

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Owen Leonard 2022-11-02 11:06:57 UTC
Koha has long had a style applied broadly to input tags of type input, button, and reset. We have not been consistently moving to use the Bootstrap "btn-primary" class. Now that the staff interface has a more specific style for this kind of button it would be good to move to using the "btn-primary" class everywhere and eventually phase out the style applied to all kinds of input buttons.

Before:

<input type="submit" value="Search" />

After:

<input type="submit" class="btn btn-primary" value="Search" />