liMarquee.css 751 B

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