Sha256: e028a1f7c3ad004e4caa508a727a3afe4f6d410be3e3ea5ca544e5480a471051
Contents?: true
Size: 1.51 KB
Versions: 31
Compression:
Stored size: 1.51 KB
Contents
/* Table of Contents ================================================== #Tooltip */ /* #Tooltip ================================================== */ .tooltip { display: block; font-size: 11px; font-weight: bold; line-height: 17px; opacity: 0; filter: alpha(opacity=0); position: absolute; visibility: visible; z-index: 1030; } .tooltip.in { opacity: 0.8; filter: alpha(opacity=80); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { background-color: rgba(71,74,84,1); border-radius: 3px; color: rgba(255,255,255,1); max-width: 200px; padding: 6px 10px 4px 10px; text-align: center; text-decoration: none; } .tooltip-arrow { border-color: transparent; border-style: solid; height: 0; position: absolute; width: 0; } .tooltip.top .tooltip-arrow { border-top-color: rgba(71,74,84,1); border-width: 5px 5px 0; bottom: 0; left: 50%; margin-left: -5px; } .tooltip.right .tooltip-arrow { border-right-color: rgba(71,74,84,1); border-width: 5px 5px 5px 0; left: 0; margin-top: -5px; top: 50%; } .tooltip.left .tooltip-arrow { border-left-color: rgba(71,74,84,1); border-width: 5px 0 5px 5px; margin-top: -5px; right: 0; top: 50%; } .tooltip.bottom .tooltip-arrow { border-bottom-color: rgba(71,74,84,1); border-width: 0 5px 5px; left: 50%; margin-left: -5px; top: 0; }
Version data entries
31 entries across 31 versions & 3 rubygems