causeway-standard-theme
Version:
46 lines (38 loc) • 762 B
text/less
// Tooltips
// --------------------------------------------------
.tooltip-inner {
background-color: @blue-grey1;
display: inline-block;
border-radius: 0;
border: 1px solid @white;
color: @black080;
padding: 2px 4px;
min-width: @tooltip-min-width;
max-width: @tooltip-max-width;
font-weight: normal;
white-space: normal;
.box-shadow(2px 2px 5px rgba(120, 120, 120, 0.4));
}
.tooltip-arrow {
display: none;
}
.tooltip {
position: fixed;
min-width: @tooltip-min-width;
max-width: @tooltip-max-width;
white-space: normal;
top: auto;
left: auto;
right: auto;
bottom: auto;
&.bottom {
margin-top: 12px;
padding: 0;
}
}
.navigation-pane-left {
.tooltip {
position: absolute;
z-index: 1111111;
}
}