humhub/static/less/tooltip.less

51 lines
913 B
Plaintext
Raw Normal View History

2016-12-20 20:26:44 +01:00
//
// Tooltips
// --------------------------------------------------
.tooltip-inner {
background-color: @primary;
max-width: 400px;
text-align: left;
padding: 2px 8px 4px;
2022-02-23 12:54:13 +02:00
font-size: 12px;
font-weight: bold;
white-space: pre-wrap;
2016-12-20 20:26:44 +01:00
}
.tooltip {
&.top .tooltip-arrow {
border-top-color: @primary;
}
&.top-left .tooltip-arrow {
border-top-color: @primary;
}
&.top-right .tooltip-arrow {
border-top-color: @primary;
}
&.right .tooltip-arrow {
border-right-color: @primary;
}
&.left .tooltip-arrow {
border-left-color: @primary;
}
&.bottom .tooltip-arrow {
border-bottom-color: @primary;
}
&.bottom-left .tooltip-arrow {
border-bottom-color: @primary;
}
&.bottom-right .tooltip-arrow {
border-bottom-color: @primary;
}
2016-12-20 20:26:44 +01:00
}
.tooltip.in {
opacity: 1;
}