codeconsole commented on PR #15560:
URL: https://github.com/apache/grails-core/pull/15560#issuecomment-4196300931
> I know we ship with bootstrap as an example, but end grails applications
technically don't have to use it. Do we default style any of other tags this
way?
@jdaugherty if you look at all the locations where this tag is being used
(scaffold and default layouts), it is replacing bootstrap code.
```html
<g:if test="\${flash.message}">
<div class="alert alert-primary" role="alert"><i
class="bi-info-circle"></i> \${flash.message}</div>
</g:if>
```
@jamesfredley all those tags actually reference proprietary grails classes
that end users shouldn't be using. My plan was eventually to swap those
defaults out to bootstrap classes considering all those hardcoded grails
classes are no longer used and the css has since been deleted.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]