diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-11 12:35:34 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-11 12:35:34 +0200 |
commit | b671c8c07ae7690e069c8e3c1ef54a31c591775d (patch) | |
tree | ddf2a87a807c91f1373034d78d2ce8852f6d68af /plugins | |
parent | 47391f88bb8fea2f60922566292b92ebd0f1daa9 (diff) |
Remove tooltiptext for files
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/webbox/html/webbox.css | 4 | ||||
-rw-r--r-- | plugins/webbox/html/webbox.js | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/plugins/webbox/html/webbox.css b/plugins/webbox/html/webbox.css index 859fade..71e3673 100644 --- a/plugins/webbox/html/webbox.css +++ b/plugins/webbox/html/webbox.css @@ -254,6 +254,7 @@ table.list td.name { } /* Tooltip text */ +/* .tooltip .tooltiptext { visibility: hidden; background-color: #FFFFDD; @@ -268,11 +269,14 @@ table.list td.name { bottom: 20px; z-index: 1; } +*/ /* Show the tooltip text when you mouse over the tooltip container */ +/* .tooltip:hover .tooltiptext { visibility: visible; } +*/ .fullwidth { width: 100%; diff --git a/plugins/webbox/html/webbox.js b/plugins/webbox/html/webbox.js index c242037..c25b039 100644 --- a/plugins/webbox/html/webbox.js +++ b/plugins/webbox/html/webbox.js @@ -63,7 +63,7 @@ function loadContents(dir) { } } - result += "</table><div class=\"tooltiptext\">To select entry,<br/>click and hold</div></div>" + result += "</table></div>" var listElement = document.getElementById("list"); |