fixing bug

This commit is contained in:
Janis Steiner
2024-12-08 12:57:09 +00:00
parent ba8101036f
commit 4d445228bd

View File

@@ -107,7 +107,6 @@
load_user(); load_user();
</script> </script>
<style> <style>
//styles for the filename description
.description { .description {
display: none; /* Hide the description by default */ display: none; /* Hide the description by default */
position: absolute; position: absolute;
@@ -116,6 +115,7 @@
padding: 10px; padding: 10px;
border-radius: 5px; border-radius: 5px;
width: 200px; width: 200px;
z-index: 10; /* Ensure it appears above other elements */
} }
/* Style for the element to trigger hover */ /* Style for the element to trigger hover */
@@ -127,7 +127,6 @@
.hover-element:hover .description { .hover-element:hover .description {
display: block; /* Show the description on hover */ display: block; /* Show the description on hover */
} }
</style> </style>
</head> </head>
<body> <body>