소스 검색

修改pdf滚动条样式

zengyicheng 2 년 전
부모
커밋
cdcba0d656
1개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  1. 20 0
      src/components/components/pdf2.vue

+ 20 - 0
src/components/components/pdf2.vue

@@ -261,4 +261,24 @@ export default {
   color: #fff;
   background-color: #066ebe;
 }
+
+.pdf::-webkit-scrollbar {
+  /*滚动条整体样式*/
+  width: 6px;
+  /*高宽分别对应横竖滚动条的尺寸*/
+  height: 6px;
+}
+
+/*定义滚动条轨道 内阴影+圆角*/
+.pdf::-webkit-scrollbar {
+  border-radius: 10px;
+  background-color: #B8BDC9;
+}
+
+/*定义滑块 内阴影+圆角*/
+.pdf::-webkit-scrollbar-thumb {
+  border-radius: 10px;
+  -webkit-box-shadow: inset 0 0 6px rgb(96, 125, 184);
+  background-color: #2c5ab3;
+}
 </style>