|
|
@@ -904,6 +904,9 @@ function handleImageClick(event) {
|
|
|
id="view-management-guide"
|
|
|
v-if="guideStore.dashboard.isShowViewManagementGuidePhoto"
|
|
|
class="view-management-guide-class"
|
|
|
+ :class="{
|
|
|
+ 'view-management-guide-dark-class': themeStore.theme === 'dark'
|
|
|
+ }"
|
|
|
:src="viewManagementImg"
|
|
|
alt=""
|
|
|
/>
|
|
|
@@ -994,8 +997,8 @@ function handleImageClick(event) {
|
|
|
<template #header>
|
|
|
<div class="Title_flex" style="position: relative">
|
|
|
<img
|
|
|
- v-if="guideStore.dashboard.isShowKpiChartGuidePhoto"
|
|
|
id="kpi-chart-guide"
|
|
|
+ v-if="guideStore.dashboard.isShowKpiChartGuidePhoto"
|
|
|
class="kpi-chart-guide-class position-absolute-guide"
|
|
|
:src="kpiChartImg"
|
|
|
alt=""
|
|
|
@@ -1062,6 +1065,7 @@ function handleImageClick(event) {
|
|
|
<VTipTooltip
|
|
|
:img="pendingChartTip"
|
|
|
:width="420"
|
|
|
+ :placement="'bottom-start'"
|
|
|
:label="'Pending Report:Showing shipments which are soon to depart/arrive.'"
|
|
|
></VTipTooltip>
|
|
|
</div>
|
|
|
@@ -1145,6 +1149,7 @@ function handleImageClick(event) {
|
|
|
{{ item.title }}
|
|
|
<VTipTooltip
|
|
|
:img="containerChartTip"
|
|
|
+ :placement="'bottom-start'"
|
|
|
:label="'Container Count:Total Container Volume by Month (Last 12 Months)'"
|
|
|
></VTipTooltip>
|
|
|
</div>
|
|
|
@@ -1408,27 +1413,32 @@ function handleImageClick(event) {
|
|
|
.view-management-guide-class {
|
|
|
position: absolute;
|
|
|
top: 0px;
|
|
|
- right: 89px;
|
|
|
- width: 343px;
|
|
|
- height: 478px;
|
|
|
+ right: 85px;
|
|
|
+ width: 437px;
|
|
|
+ height: 603px;
|
|
|
z-index: 1500;
|
|
|
+ &.view-management-guide-dark-class {
|
|
|
+ width: 439px;
|
|
|
+ height: 622px;
|
|
|
+ }
|
|
|
}
|
|
|
.save-config-guide-class {
|
|
|
position: absolute;
|
|
|
- top: 0px;
|
|
|
- right: 0px;
|
|
|
- width: 186px;
|
|
|
- height: 149px;
|
|
|
+ top: -1px;
|
|
|
+ right: -13px;
|
|
|
+ width: 183px;
|
|
|
+ height: 160px;
|
|
|
z-index: 1500;
|
|
|
+ transform: translate(-0.8px, 0px);
|
|
|
&.save-config-guide-dark-class {
|
|
|
- top: -1px;
|
|
|
- width: 187px;
|
|
|
- height: 153px;
|
|
|
+ width: 182px;
|
|
|
+ height: 157px;
|
|
|
+ right: -12px;
|
|
|
}
|
|
|
}
|
|
|
.kpi-chart-guide-class {
|
|
|
- top: -1px;
|
|
|
- left: 10px;
|
|
|
+ top: -2px;
|
|
|
+ left: -50px;
|
|
|
width: 589px;
|
|
|
height: 478px;
|
|
|
z-index: 3500;
|