demo20230512/Browser_Local/css/tooltip.css
2023-05-12 10:20:28 +08:00

119 lines
2.4 KiB
CSS

.bootstrap-tooltip {
position: absolute;
z-index: 1070;
display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
font-weight: normal;
line-height: 1.4;
filter: alpha(opacity=0);
opacity: 0;
}
.bootstrap-tooltip.in {
filter: alpha(opacity=90);
opacity: .9;
}
.bootstrap-tooltip.top {
padding: 5px 0;
margin-top: -3px;
}
.bootstrap-tooltip.right {
padding: 0 5px;
margin-left: 3px;
}
.bootstrap-tooltip.bottom {
padding: 5px 0;
margin-top: 3px;
}
.bootstrap-tooltip.left {
padding: 0 5px;
margin-left: -3px;
}
.tooltip-directive {
background-image: url('../../Browser_Local/img/icon-comment.png');
background-repeat: no-repeat;
background-size: 14px;
width: 20px;
height: 16px;
display: inline-block;
vertical-align: top;
margin-left: 2px;
}
.tooltip-directive.vertical-middle{
vertical-align: middle;
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
text-decoration: none;
/*background-color: #000;*/
background-color: rgb(61, 57, 56);
border-radius: 4px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.bootstrap-tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.bootstrap-tooltip.top-left .tooltip-arrow {
right: 5px;
bottom: 0;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.bootstrap-tooltip.top-right .tooltip-arrow {
bottom: 0;
left: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.bootstrap-tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
/*border-right-color: #000;*/
border-right-color: rgb(61, 57, 56);
}
.bootstrap-tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
/*border-left-color: #000;*/
border-left-color: rgb(61, 57, 56);
}
.bootstrap-tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.bootstrap-tooltip.bottom-left .tooltip-arrow {
top: 0;
right: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.bootstrap-tooltip.bottom-right .tooltip-arrow {
top: 0;
left: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}