scrollbar.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*!
  2. * 滚动条
  3. **/
  4. .kf-editor-edit-scrollbar {
  5. width: 100%;
  6. height: 16px;
  7. position: absolute;
  8. bottom: 0;
  9. left: 0;
  10. z-index: 994;
  11. border-top: 1px solid #ddd;
  12. }
  13. .kf-editor-ui-left-button {
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. width: 5px;
  18. height: 100%;
  19. background: white;
  20. }
  21. .kf-editor-ui-right-button {
  22. position: absolute;
  23. top: 0;
  24. right: 0;
  25. width: 5px;
  26. height: 100%;
  27. background: white;
  28. }
  29. .kf-editor-ui-track {
  30. position: absolute;
  31. top: 0;
  32. left: 5px;
  33. width: 0;
  34. height: 100%;
  35. background-image: url(../images/scrollbar/edit/bar-left.png), url(../images/scrollbar/edit/bar-right.png), url(../images/scrollbar/edit/bar-bg.png);
  36. background-repeat: no-repeat, no-repeat, repeat-x;
  37. background-position: 0 0, right 0, 0 0;
  38. }
  39. .kf-editor-ui-thumb {
  40. position: absolute;
  41. top: 0;
  42. left: 0;
  43. width: 0;
  44. height: 100%;
  45. }
  46. .kf-editor-ui-thumb-left {
  47. width: 5px;
  48. height: 100%;
  49. position: absolute;
  50. top: 0;
  51. left: 0;
  52. background: url(../images/scrollbar/edit/thumb-left.png) no-repeat 0 0;
  53. z-index: 1;
  54. }
  55. .kf-editor-ui-thumb-right {
  56. width: 5px;
  57. height: 100%;
  58. position: absolute;
  59. top: 0;
  60. right: 0;
  61. background: url(../images/scrollbar/edit/thumb-right.png) no-repeat 0 0;
  62. }
  63. .kf-editor-ui-thumb-body {
  64. position: absolute;
  65. top: 0;
  66. left: 5px;
  67. width: 0;
  68. height: 100%;
  69. background: url(../images/scrollbar/edit/thumb-bg.png) repeat-x 0 0;
  70. }