We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b43f39d commit aacb83cCopy full SHA for aacb83c
src/utils/config.js
@@ -76,8 +76,14 @@ const DEFAULTS = {
76
blankColor: 'transparent'
77
},
78
BModal: {
79
- // Defaults to the Boostrap default for the modal backdrop
+ // Defaults to the Boostrap default of the modal backdrop
80
zIndexOffset: 1040,
81
+ // The following needs to be higher than the largest z-index element
82
+ // inside the modal (such has popovers and tooltips).
83
+ // The modal's stacking div z-index will be set to:
84
+ // zIndexOffset + ((NumModalsOpened - 1) * zIndexIncrement)
85
+ zIndexIncrement: 2000,
86
+ // Props defaults
87
cancelTitle: 'Cancel',
88
cancelVariant: 'secondary',
89
okTitle: 'OK',
0 commit comments