From d53ca7626e1aae535edd9a7a21546b3e6773145f Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Wed, 18 Dec 2024 16:26:39 +0800 Subject: [PATCH] * [task#134889,doing,0.5h]. --- module/report/css/annualdata.css | 1 + module/report/js/annualdata.js | 1 + 2 files changed, 2 insertions(+) diff --git a/module/report/css/annualdata.css b/module/report/css/annualdata.css index 20f328139e..f52b884603 100644 --- a/module/report/css/annualdata.css +++ b/module/report/css/annualdata.css @@ -13,6 +13,7 @@ body {height: 100vh; padding: 0;} #header {margin-bottom: 45px;} #header > h1 {width: 500px; margin: 40px auto 0; height: 58px; font-weight: normal; text-align: center; font-size: 20px; display: block; line-height: 58px; position: relative; left: -30px;} +.report-tip {position: relative; padding-top: 1px; width: 800px;} #toolbar {position: absolute; right: 33px; top: 80px; text-align: center; width: 1280px;} #toolbar #year {width: 70px; display: inline-block; margin-right: 5px; padding-top: 5px; border-color: #1a77a5; background-color: transparent; color: #fff;} #toolbar #year option {background: #141414;} diff --git a/module/report/js/annualdata.js b/module/report/js/annualdata.js index a8dde33981..5f7d38616d 100644 --- a/module/report/js/annualdata.js +++ b/module/report/js/annualdata.js @@ -216,4 +216,5 @@ $(function() $('section').mouseover(function(){$(this).addClass('active')}); $('section').mouseout(function(){$(this).removeClass('active')}); + $('[data-toggle="popover"]').popover(); });