Jump to content


Tooltip Variables not matching

Submitted by beardedavenger on 16 December 2012 - 02:35 AM

#102


  • Issue Details
  • Severity: Fixed
  • Category: PageLines Framework
  • Version: 2.3.8
Fixed   Add Issue 

beardedavenger

Issue Timeline

  • Simon_P updated issue severity to Fixed

    17 December 2012 - 05:54 PM

  • beardedavenger added issue #102

    16 December 2012 - 02:35 AM

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





 

Comments


TracDown © 2013 Michael Burton
Click to return to top of page in style!