diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-07-02 02:16:02 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-07-02 02:16:02 -0400 |
commit | fd47406db9a1af4e384770c2f1259089b1950876 (patch) | |
tree | e3c317bb1705e5a07bd20100e71a560139b7bd00 /tests | |
parent | 655f3e5ef192bd40e08b481807a974d53dee30a3 (diff) |
fix popover text color in contextual elements, closes #268
Diffstat (limited to 'tests')
-rw-r--r-- | tests/components.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/components.html b/tests/components.html index e3d5d7d7..3c4e151f 100644 --- a/tests/components.html +++ b/tests/components.html @@ -2770,6 +2770,16 @@ <div class="bs-example" style="padding-bottom: 24px;"> <a class="btn btn-lg btn-danger" data-toggle="popover" title="" data-content="And here's some amazing content. It's very engaging. right?" data-original-title="A Title">Click to toggle popover</a> </div> + <table class="table"> + <tbody> + <tr class="success"> + <td>success</td> + <td><span class="test">span</span></td> + <td><div class="test">div</div></td> + <td><a class="btn btn-lg btn-danger" data-toggle="popover" title="" data-content="And here's some amazing content. It's very engaging. right?" data-original-title="A Title">Click to toggle popover</a></td> + </tr> + </tbody> + </table> </div> </div> |