Merge pull request #889 from BeatC/tooltips-bg

Change color for tooltip
This commit is contained in:
yanas 2016-09-16 12:54:15 -05:00 committed by GitHub
commit e5e7e043ee
2 changed files with 11 additions and 0 deletions

View File

@ -176,3 +176,13 @@ form {
display: -webkit-flex !important;
display: flex !important;
}
.tipsy {
&-inner {
background-color: $tooltipBg;
}
&-arrow {
border-color: $tooltipBg;
}
}

View File

@ -22,6 +22,7 @@ $defaultColor: #F1F1F1;
$defaultSemiDarkColor: #ACACAC;
$defaultDarkColor: #4F4F4F;
$defaultBackground: #474747;
$tooltipBg: rgba(0,0,0, 0.7);
// Toolbar
$toolbarSelectBackground: rgba(0, 0, 0, .6);