File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -838,28 +838,28 @@ footer {
838838 color : var (--text-color );
839839}
840840
841+ /* Hide tooltip text by default */
841842.tooltip .tooltip-text {
842- visibility : hidden;
843+ position : absolute !important ;
844+ visibility : hidden !important ;
845+ opacity : 0 !important ;
843846 width : 300px ;
844847 background-color : var (--color-gray-7 );
845848 color : var (--text-color );
846849 text-align : left;
847850 border-radius : 6px ;
848851 padding : 12px ;
849- position : absolute;
850- z-index : 10000 ;
852+ z-index : 99999 ;
851853 bottom : 125% ;
852854 left : 50% ;
853855 margin-left : -150px ;
854- opacity : 0 ;
855856 transition : opacity 0.3s ;
856857 border : 1px solid var (--border-color );
857858 font-size : 14px ;
858859 font-weight : 400 ;
859860 line-height : 1.4 ;
860861 box-shadow : 0 4px 8px rgba (0 , 0 , 0 , 0.3 );
861862 pointer-events : none;
862- display : none;
863863}
864864
865865.tooltip .tooltip-text ::after {
@@ -890,9 +890,8 @@ footer {
890890 color : var (--link-color );
891891}
892892
893- /* JavaScript will handle tooltip positioning */
893+ /* Show tooltip on hover */
894894.tooltip : hover .tooltip-text {
895- visibility : visible;
896- opacity : 1 ;
897- display : block;
895+ visibility : visible !important ;
896+ opacity : 1 !important ;
898897}
You can’t perform that action at this time.
0 commit comments