forked from Gitlink/forgeplus
124 lines
3.8 KiB
CSS
124 lines
3.8 KiB
CSS
|
|
|
|
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
|
|
.tooltipster-default {
|
|
border-radius: 5px;
|
|
background: #4c4c4c;
|
|
color: #fff;
|
|
}
|
|
|
|
/* Use this next selector to style things like font-size and line-height: */
|
|
.tooltipster-default .tooltipster-content {
|
|
font-family: Arial, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
padding: 8px 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tooltipster-base {
|
|
padding: 0;
|
|
font-size: 0;
|
|
line-height: 0;
|
|
position: absolute;
|
|
z-index: 9999999;
|
|
pointer-events: none;
|
|
width: auto;
|
|
overflow: visible;
|
|
}
|
|
.tooltipster-base .tooltipster-content {
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
|
|
.tooltipster-arrow {
|
|
display: block;
|
|
text-align: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: -1;
|
|
}
|
|
.tooltipster-arrow span, .tooltipster-arrow-border {
|
|
display: block;
|
|
width: 0;
|
|
height: 0;
|
|
position: absolute;
|
|
}
|
|
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
|
|
border-left: 8px solid transparent !important;
|
|
border-right: 8px solid transparent !important;
|
|
border-top: 8px solid;
|
|
bottom: -8px;
|
|
}
|
|
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
|
|
border-left: 9px solid transparent !important;
|
|
border-right: 9px solid transparent !important;
|
|
border-top: 9px solid;
|
|
bottom: -8px;
|
|
}
|
|
|
|
.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
|
|
border-left: 8px solid transparent !important;
|
|
border-right: 8px solid transparent !important;
|
|
border-bottom: 8px solid;
|
|
top: -8px;
|
|
}
|
|
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
|
|
border-left: 9px solid transparent !important;
|
|
border-right: 9px solid transparent !important;
|
|
border-bottom: 9px solid;
|
|
top: -8px;
|
|
}
|
|
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
}
|
|
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
|
|
left: 6px;
|
|
}
|
|
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
|
|
left: 5px;
|
|
}
|
|
.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
|
|
right: 6px;
|
|
}
|
|
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
|
|
right: 5px;
|
|
}
|
|
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
|
|
border-top: 8px solid transparent !important;
|
|
border-bottom: 8px solid transparent !important;
|
|
border-left: 8px solid;
|
|
top: 50%;
|
|
margin-top: -7px;
|
|
right: -8px;
|
|
}
|
|
.tooltipster-arrow-left .tooltipster-arrow-border {
|
|
border-top: 9px solid transparent !important;
|
|
border-bottom: 9px solid transparent !important;
|
|
border-left: 9px solid;
|
|
margin-top: -8px;
|
|
}
|
|
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
|
|
border-top: 8px solid transparent !important;
|
|
border-bottom: 8px solid transparent !important;
|
|
border-right: 8px solid;
|
|
top: 50%;
|
|
margin-top: -7px;
|
|
left: -8px;
|
|
}
|
|
.tooltipster-arrow-right .tooltipster-arrow-border {
|
|
border-top: 9px solid transparent !important;
|
|
border-bottom: 9px solid transparent !important;
|
|
border-right: 9px solid;
|
|
margin-top: -8px;
|
|
}
|
|
|
|
|
|
|