-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(popover & tooltip): add container classes #2190
Conversation
Codecov Report
@@ Coverage Diff @@
## development #2190 +/- ##
===============================================
+ Coverage 87.05% 87.22% +0.16%
===============================================
Files 85 85
Lines 2271 2285 +14
Branches 293 297 +4
===============================================
+ Hits 1977 1993 +16
+ Misses 191 190 -1
+ Partials 103 102 -1
Continue to review full report at Codecov.
|
Tested, looks good |
@@ -0,0 +1,5 @@ | |||
<button type="button" class="btn btn-primary" | |||
popover="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." [containerClass]="'customClass'"> |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
@@ -68,5 +70,9 @@ export const DEMOS = { | |||
stylingGlobal: { | |||
component: require('!!raw-loader?lang=typescript!./styling-global/styling-global.ts'), | |||
html: require('!!raw-loader?lang=markup!./styling-global/styling-global.html') | |||
}, | |||
class: { |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
@@ -0,0 +1,5 @@ | |||
<button type="button" class="btn btn-primary" | |||
tooltip="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." [containerClass]="'customClass'"> |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
added ability to apply custom css classes to tooltip and popover
fixes #1707
fixes #1395