[
https://issues.apache.org/jira/browse/TAP5-2829?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18083067#comment-18083067
]
ASF subversion and git services commented on TAP5-2829:
-------------------------------------------------------
Commit b22404433a3618251b11ef5979daf15eee810079 in tapestry-5's branch
refs/heads/TAP5-2829 from Volker Lamp
[ https://gitbox.apache.org/repos/asf?p=tapestry-5.git;h=b22404433 ]
TAP5-2829: Css class typo in Errors component
> Css class typo in Errors component
> ----------------------------------
>
> Key: TAP5-2829
> URL: https://issues.apache.org/jira/browse/TAP5-2829
> Project: Tapestry 5
> Issue Type: Bug
> Components: tapestry-core
> Affects Versions: 5.5.0, 5.4.5, 5.6.3, 5.7.3, 5.8.7, 5.9.1
> Reporter: Volker Lamp
> Assignee: Volker Lamp
> Priority: Major
> Labels: easy-fix
>
> The {{Errors}} component renders the
> "alert-dismiss{color:#de350b}*a*{color}ble" css class. This is wrong in terms
> of Bootstrap which expects "alert-dismiss{color:#00875a}*i*{color}ble" since
> at least Bootstrap 3.3.
> The typo causes the close button not to be positioned nicely.
> Until the fix is released, the workaround for Tapestry 5.5 and later is to
> override the faulty default configuration in {{AppModule}} like so:
>
> {code:java}
> @Contribute(SymbolProvider.class)
> @ApplicationDefaults
> public static void configureTapestry(MappedConfiguration<String, String>
> conf) {
> conf.add(SymbolConstants.ERRORS_BASE_CSS_CLASS, "alert-dismissible");
> }{code}
>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)