mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
9f38436f10
[web] Create Btoostrap 5 tooltips GitOrigin-RevId: 28c7c389bda74765482049750fc0ae8a5995968e
27 lines
440 B
SCSS
27 lines
440 B
SCSS
.tooltip {
|
|
line-height: 20px;
|
|
@include shadow-md;
|
|
|
|
&.#{$prefix}tooltip-top {
|
|
bottom: -1px !important;
|
|
}
|
|
&.#{$prefix}tooltip-end {
|
|
top: 1px !important;
|
|
left: -1px !important;
|
|
}
|
|
&.#{$prefix}tooltip-bottom {
|
|
top: -1px !important;
|
|
}
|
|
&.#{$prefix}tooltip-start {
|
|
top: 1px !important;
|
|
right: -1px !important;
|
|
}
|
|
}
|
|
|
|
.tooltip-inner {
|
|
text-align: initial;
|
|
|
|
.tooltip-wide & {
|
|
max-width: unset;
|
|
}
|
|
}
|