Ignore:
Timestamp:
25 Nov 2022, 08:42:37 (22 months ago)
Author:
Henrik Bettermann
Message:

Make submit button invisible in auto submit forms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/layout.py

    r16120 r17174  
    8989            self.tooltip = ' data-toggle="tooltip" title="%s"' % tooltip
    9090        if self.style:
    91             style = ' class="btn btn-%s"' % self.style
     91            if self.style == 'invisible':
     92                style = ' class="invisible"'
     93            else:
     94                style = ' class="btn btn-%s"' % self.style
    9295        else:
    9396            style = ' class="btn btn-default"'
Note: See TracChangeset for help on using the changeset viewer.