cssOMS/tooltip.css

51 lines
986 B
CSS

/* Global */
/* Content Container */
/* Content box */
/* Navigation */
/* Colors */
/* Accordion */
/* Log */
/* Blockquote */
/* Breadcrumbs */
/* Input */
/* Button */
/* Canvas */
/* Article */
/* Form */
/* Icon */
/* Img */
/* list */
/* pagination */
/* pre */
/* tag */
.tooltip > i {
font-size: 0.85rem;
position: relative;
z-index: 2;
cursor: pointer; }
.tooltip > i:before, .tooltip > i:after {
visibility: hidden;
opacity: 0;
pointer-events: none; }
.tooltip > i:before {
white-space: nowrap;
position: absolute;
bottom: 150%;
margin-bottom: 5px;
padding: 7px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #000;
background-color: rgba(51, 51, 51, 0.9);
color: #fff;
content: attr(data-tooltip);
text-align: center; }
.tooltip:hover > i:before,
.tooltip:hover > i:after {
visibility: visible;
opacity: 1; }
/*# sourceMappingURL=tooltip.css.map */