hookehuyr

style(PdfViewer): 将主题色从蓝色改为绿色

1 <!-- 1 <!--
2 * @Date: 2025-01-21 2 * @Date: 2025-01-21
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-10-22 13:28:38 4 + * @LastEditTime: 2025-10-22 13:32:48
5 * @FilePath: /mlaj/src/components/ui/PdfViewer.vue 5 * @FilePath: /mlaj/src/components/ui/PdfViewer.vue
6 * @Description: PDF预览组件 - 使用pdf-vue3库 6 * @Description: PDF预览组件 - 使用pdf-vue3库
7 --> 7 -->
...@@ -770,9 +770,9 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => { ...@@ -770,9 +770,9 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => {
770 } 770 }
771 771
772 .zoom-btn:hover { 772 .zoom-btn:hover {
773 - background: #1989fa; 773 + background: #4caf50;
774 color: #fff; 774 color: #fff;
775 - border-color: #1989fa; 775 + border-color: #4caf50;
776 transform: scale(1.1); 776 transform: scale(1.1);
777 box-shadow: 0 4px 12px rgba(25, 137, 250, 0.3); 777 box-shadow: 0 4px 12px rgba(25, 137, 250, 0.3);
778 } 778 }
...@@ -828,7 +828,7 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => { ...@@ -828,7 +828,7 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => {
828 .progress-percent { 828 .progress-percent {
829 font-size: 18px; 829 font-size: 18px;
830 font-weight: bold; 830 font-weight: bold;
831 - color: #1989fa; 831 + color: #4caf50;
832 } 832 }
833 833
834 .loading-text { 834 .loading-text {
...@@ -878,7 +878,7 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => { ...@@ -878,7 +878,7 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => {
878 width: 100%; 878 width: 100%;
879 height: 100%; 879 height: 100%;
880 background: rgba(255, 255, 255, 0.9); 880 background: rgba(255, 255, 255, 0.9);
881 - border: 2px solid #1989fa; 881 + border: 2px solid #4caf50;
882 border-radius: 16px; 882 border-radius: 16px;
883 text-align: center; 883 text-align: center;
884 font-size: 14px; 884 font-size: 14px;
......