liMarquee.css 828 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*Plugin CSS*/
  2. .str_wrap {
  3. overflow:hidden;
  4. //zoom:1;
  5. width:100%;
  6. font-size:12px;
  7. line-height:16px;
  8. position:relative;
  9. -moz-user-select: none;
  10. -khtml-user-select: none;
  11. user-select: none;
  12. /*background:#f6f6f6;*/
  13. white-space:nowrap;
  14. }
  15. .str_wrap.str_active {
  16. /*background:#f1f1f1;*/
  17. }
  18. .str_move {
  19. white-space:nowrap;
  20. position:absolute;
  21. top:0;
  22. left:0;
  23. cursor:move;
  24. }
  25. .str_move_clone {
  26. display:inline-block;
  27. //display:inline;
  28. //zoom:1;
  29. vertical-align:top;
  30. position:absolute;
  31. left:100%;
  32. top:0;
  33. }
  34. .str_vertical .str_move_clone {
  35. left:0;
  36. }
  37. .str_down .str_move_clone {
  38. left:0;
  39. bottom:100%;
  40. }
  41. .str_vertical .str_move,
  42. .str_down .str_move {
  43. white-space:normal;
  44. width:100%;
  45. }
  46. .str_static .str_move,
  47. .no_drag .str_move,
  48. .noStop .str_move{
  49. cursor:inherit;
  50. }
  51. .str_wrap img {
  52. max-width:none !important;
  53. }