scrollStyle.css 512 B

12345678910111213141516171819202122232425
  1. /**
  2. * 云桌面全局视图的滚动条样式
  3. */
  4. /* 设置滚动条的样式 */
  5. ::-webkit-scrollbar {
  6. width: 3px;
  7. margin-right: 10px;
  8. }
  9. /* 滚动槽 */
  10. ::-webkit-scrollbar-track {
  11. box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  12. border-radius: 10px;
  13. }
  14. /* 滚动条滑块 */
  15. ::-webkit-scrollbar-thumb {
  16. border-radius: 10px;
  17. background: rgba(0,0,0,0.1);
  18. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
  19. }
  20. ::-webkit-scrollbar-thumb:window-inactive {
  21. background: rgba(255,0,0,0.4);
  22. }