Change color for tooltip

This commit is contained in:
Ilya Daynatovich 2016-09-16 19:05:23 +03:00
parent 96bbf0419c
commit f8d01b4312
2 changed files with 11 additions and 0 deletions

View File

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

View File

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