Bug 32067

Summary: [OMNIBUS] Consistent classes for submit and/or primary buttons
Product: Koha Reporter: Owen Leonard <oleonard>
Component: TemplatesAssignee: Owen Leonard <oleonard>
Status: ASSIGNED --- QA Contact: Testopia <testopia>
Severity: enhancement    
Priority: P5 - low    
Version: master   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:
Bug Depends on: 32068, 32070, 32071, 32072, 32073, 32085, 32087, 32088, 32091, 32094, 32096, 32097, 32098, 32099    
Bug Blocks:    

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" />