mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
c83ca28a42
* Update base.less * Update button.less * Update login.less * Update tooltip.less * Update richtext.less * Update progress.less * Update mentioning.less * Update loader.less * Remove old prefixes * Update datepicker.less * Update comment.less * Remove old-prefixes * Remove old prefixes * Remove old prefixes * Remove old prefixes * Remove old prefixes * Update modal.less * Remove old prefixes
51 lines
913 B
Plaintext
51 lines
913 B
Plaintext
//
|
|
// Tooltips
|
|
// --------------------------------------------------
|
|
.tooltip-inner {
|
|
background-color: @primary;
|
|
max-width: 400px;
|
|
text-align: left;
|
|
padding: 2px 8px 4px;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
|
|
.tooltip.in {
|
|
opacity: 1;
|
|
}
|