Tooltip Variables not matching
Submitted by beardedavenger on 16 December 2012 - 02:35 AM
#102
beardedavenger
Issue Timeline
These variables are listed at the end of variables.less, however their colors are currently hard coded.
@tooltipColor
@tooltipBackground
@tooltipArrowWidth
@tooltipArrowColor
Here you can see them hard coded in mixins.less
line 563
#popoverArrow {
.top(@arrowWidth: 5px, @color:@black) {
This popover needs to be corrected to
#popoverArrow {
.top(@arrowWidth: @tooltipArrowWidth, @color:@tooltipArrowColor) {
Second place that needs to be corrected is in tooltip-popover.less. Line 22, .tooltip-inner.
Currently has
.tooltip-inner {
color: @white;
background-color: @black;
}
This needs to be corrected to
.tooltip-inner {
color: @tooltipColor;
background-color: @tooltipBackground;
}
Word


