liMarquee.css 831 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. top:100%;
  37. }
  38. .str_down .str_move_clone {
  39. left:0;
  40. bottom:100%;
  41. }
  42. .str_vertical .str_move,
  43. .str_down .str_move {
  44. white-space:normal;
  45. width:100%;
  46. }
  47. .str_static .str_move,
  48. .no_drag .str_move,
  49. .noStop .str_move{
  50. cursor:inherit;
  51. }
  52. .str_wrap img {
  53. max-width:none !important;
  54. }