Skip to content

Commit

Permalink
fix popover text color in contextual elements, closes thomaspark#268
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspark committed Jul 2, 2014
1 parent 655f3e5 commit fd47406
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 3 deletions.
3 changes: 3 additions & 0 deletions cosmo/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -6307,3 +6307,6 @@ table .info a,
.modal-footer .close {
color: #333333;
}
.popover {
color: #333333;
}
2 changes: 1 addition & 1 deletion cosmo/bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions cosmo/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,7 @@ table,
}
}
}

.popover {
color: @text-color;
}
3 changes: 3 additions & 0 deletions flatly/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -6377,3 +6377,6 @@ input:focus {
.modal-footer .close {
color: #2c3e50;
}
.popover {
color: #2c3e50;
}
2 changes: 1 addition & 1 deletion flatly/bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions flatly/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -267,3 +267,7 @@ input, {
}
}
}

.popover {
color: @text-color;
}
3 changes: 3 additions & 0 deletions lumen/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -6522,3 +6522,6 @@ label {
.modal .close {
color: #555555;
}
.popover {
color: #555555;
}
2 changes: 1 addition & 1 deletion lumen/bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions lumen/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -429,3 +429,7 @@ label {
color: @text-color;
}
}

.popover {
color: @text-color;
}
10 changes: 10 additions & 0 deletions tests/components.html
Original file line number Diff line number Diff line change
Expand Up @@ -2770,6 +2770,16 @@ <h1 id="popovers">Popovers</h1>
<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>
Expand Down

0 comments on commit fd47406

Please sign in to comment.