Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. .mybreadcrumb{
  2. padding: 0 0 14px 0;
  3. &_link{
  4. @include link(#6a6767, #9c9b9b);
  5. position: relative;
  6. text-decoration: none;
  7. font-size: 13px;
  8. margin: 0 0 0 18px;
  9. &:before{
  10. content: ">";
  11. color: #6a6767;
  12. font-size: 13px;
  13. position: absolute;
  14. top: 2px;
  15. left: -12px;
  16. }
  17. @include old-ie{
  18. *zoom: expression(
  19. this.runtimeStyle.zoom="1",
  20. this.appendChild( document.createElement("small") ).className="breadcrumb_before"
  21. );
  22. *+html &{
  23. margin-right: 15px;
  24. }
  25. .breadcrumb_before{
  26. background: url("../images/bread.png")no-repeat #fff;
  27. width: 8px;
  28. height: 9px;
  29. position: absolute;
  30. top: 2px;
  31. left: -12px;
  32. }
  33. }
  34. &:first-child {
  35. margin: 0 0 0 8px;
  36. }
  37. &:first-child:before {
  38. display: none;
  39. }
  40. @include old-ie{
  41. &:first-child .breadcrumb_before {
  42. display: none;
  43. }
  44. }
  45. }
  46. &_item{
  47. color: #9c9b9b;
  48. position: relative;
  49. font-size: 13px;
  50. margin: 0 0 0 18px;
  51. &:before{
  52. content: ">";
  53. color: #6a6767;
  54. font-size: 13px;
  55. position: absolute;
  56. top: 2px;
  57. left: -12px;
  58. }
  59. @include old-ie{
  60. *zoom: expression(
  61. this.runtimeStyle.zoom="1",
  62. this.appendChild( document.createElement("small") ).className="breadcrumb_before"
  63. );
  64. *+html &{
  65. margin-right: 15px;
  66. }
  67. .breadcrumb_before{
  68. background: url("../images/bread.png")no-repeat #fff;
  69. width: 8px;
  70. height: 9px;
  71. position: absolute;
  72. top: 2px;
  73. left: -12px;
  74. }
  75. }
  76. }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement