woocommerce.less 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .vc-woocommerce-add-to-cart-loading.vc_grid-item-mini {
  2. position: relative;
  3. .vc_gitem-zone {
  4. .opacity(0) !important;
  5. -webkit-transform: none !important;
  6. -ms-transform: none !important;
  7. transform: none !important;
  8. .transition(none) !important;
  9. }
  10. .vc_wc-load-add-to-loader-wrapper {
  11. position: absolute;
  12. right: 0;
  13. top: 50%;
  14. margin-top: -50px;
  15. left: 0;
  16. }
  17. .vc_wc-load-add-to-loader {
  18. &:before,
  19. &:after,
  20. & {
  21. border-radius: 50%;
  22. width: 12px;
  23. height: 12px;
  24. -webkit-animation-fill-mode: both;
  25. animation-fill-mode: both;
  26. -webkit-animation: vc_woo-add-cart-load 1.8s infinite ease-in-out;
  27. animation: vc_woo-add-cart-load 1.8s infinite ease-in-out;
  28. }
  29. & {
  30. margin: 2em auto;
  31. font-size: 10px;
  32. position: relative;
  33. text-indent: -9999em;
  34. -webkit-animation-delay: 0.16s;
  35. animation-delay: 0.16s;
  36. height: 50px;
  37. }
  38. &:before {
  39. left: -20px;
  40. }
  41. &:after {
  42. left: 20px;
  43. -webkit-animation-delay: 0.32s;
  44. animation-delay: 0.32s;
  45. }
  46. &:before,
  47. &:after {
  48. content: '';
  49. position: absolute;
  50. top: 0;
  51. }
  52. @-webkit-keyframes vc_woo-add-cart-load {
  53. 0%,
  54. 80%,
  55. 100% {
  56. box-shadow: 0 2.5em 0 -1.3em rgba(235, 235, 235, 0.75);
  57. }
  58. 40% {
  59. box-shadow: 0 2.5em 0 0 rgba(235, 235, 235, 0.75);
  60. }
  61. }
  62. @keyframes vc_woo-add-cart-load {
  63. 0%,
  64. 80%,
  65. 100% {
  66. box-shadow: 0 2.5em 0 -1.3em rgba(235, 235, 235, 0.75);
  67. }
  68. 40% {
  69. box-shadow: 0 2.5em 0 0 rgba(235, 235, 235, 0.75);
  70. }
  71. }
  72. }
  73. }
  74. .vc_grid-item-mini {
  75. .added_to_cart.wc-forward {
  76. display: none;
  77. }
  78. }