diff options
| author | David Scherer <[email protected]> | 2014-03-28 14:56:12 -0400 |
|---|---|---|
| committer | David Scherer <[email protected]> | 2014-03-28 14:56:12 -0400 |
| commit | 7dec5c79c8ffb80592576a463472d6cf9bd959a8 (patch) | |
| tree | 9fdcb896262bfb0cf19cce2052f1c38c470ee4d3 | |
| parent | d178a9581be35ff9a5f7eda9e06e5431802f6005 (diff) | |
| download | bootstrap-7dec5c79c8ffb80592576a463472d6cf9bd959a8.tar.xz bootstrap-7dec5c79c8ffb80592576a463472d6cf9bd959a8.zip | |
fixes #13216
change `@zindex-popover` and `@zindex-tooltip` values to be greater than
those set for `@zindex-modal` allowing tooltips and popovers to be
displayed in front of modals (and all other content).
| -rw-r--r-- | less/variables.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/variables.less b/less/variables.less index cdc1ba881..b6b15ae19 100644 --- a/less/variables.less +++ b/less/variables.less @@ -249,8 +249,8 @@ @zindex-navbar: 1000; @zindex-dropdown: 1000; -@zindex-popover: 1010; -@zindex-tooltip: 1030; +@zindex-popover: 1060; // @fix #13216 +@zindex-tooltip: 1070; // @fix #13216 @zindex-navbar-fixed: 1030; @zindex-modal-background: 1040; @zindex-modal: 1050; |
