Current Path :
/
home
/
zrcdevco
/
public_html
/
zrcprod
/
media
/
tooltips
/
less
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/zrcdevco/public_html/zrcprod/media/tooltips/less/style.less
/** * @package Tooltips * @version 7.4.1PRO * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2019 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ /* * You can override this stylesheet by creating your own in: * /templates/[YOUR TEMPLATE]/media/tooltips/css/style.min.css */ @import "../../regularlabs/less/init.less"; @import "bootstrap.less"; /* TOOLTIP LINK STYLES */ .rl_tooltips-link { cursor: pointer; display: inline-block !important; &.isimg { border-bottom: none; } &.nostyle { border-bottom: none; cursor: inherit; } } /* TOOLTIP POPOVER STYLES */ .rl_tooltips.popover { width: auto; max-width: 400px; &.notitle .popover-title { display: none; } &.nocontent { .popover-title { .border-radius(5px); border-bottom: none; } .popover-content { display: none; } } &.isimg { text-indent: 0; max-width: none; .popover-content { padding: 4px; } } .tipColor(@background, @text) { h3.popover-title { background-color: @background; color: @text; } } // Style: blue &.blue, &.primary { .tipColor(#dbecf9, @btnPrimaryBackground); } // Style: info &.info { .tipColor(@infoBackground, @infoText); } // Style: green / success &.green, &.success { .tipColor(@successBackground, @successText); } // Style: orange / warning &.orange, &.warning { .tipColor(@warningBackground, @warningText); } // Style: red / danger &.red, &.danger, &.error { .tipColor(@errorBackground, @errorText); } // Style: grey / gray &.grey, &.gray { .tipColor(@grayLighter, @grayLight); } }