hookehuyr

style(PdfViewer): 移除zoom-btn的悬停样式以简化UI

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:36:27 4 + * @LastEditTime: 2025-10-22 13:42:16
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 -->
...@@ -769,13 +769,13 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => { ...@@ -769,13 +769,13 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => {
769 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 769 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
770 } 770 }
771 771
772 -.zoom-btn:hover { 772 +/* .zoom-btn:hover {
773 background: #4caf50; 773 background: #4caf50;
774 color: #fff; 774 color: #fff;
775 border-color: #4caf50; 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 +} */
779 779
780 .zoom-btn:active { 780 .zoom-btn:active {
781 transform: scale(0.95); 781 transform: scale(0.95);
......