Advertisement
arsh999cg

CSS WOO PLUS MINUS

Oct 31st, 2022
825
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.73 KB | None | 0 0
  1. .quantity input::-webkit-outer-spin-button,
  2. .quantity input::-webkit-inner-spin-button {
  3.     display: none;
  4.     -webkit-appearance: none;
  5.     -moz-appearance: none;
  6.     appearance: none;
  7.     margin: 0;
  8. }
  9.  
  10. .quantity input.qty[type=number] {
  11.     appearance: textfield;
  12.     -webkit-appearance: none;
  13.     -moz-appearance: textfield;
  14. }
  15.  
  16. .woocommerce .quantity .qty {
  17.     background: none;
  18.     margin-right: 0;
  19. }
  20.  
  21. input.qty_button {
  22.     height: 100%;
  23.     padding: 8px 9px;
  24.     min-width: 56px;
  25.     width: 3.631em;
  26.     font-size: 14px;
  27.     border: 1px solid #d3ced2;
  28.     outline: none;
  29.     font-family: inherit;
  30.     resize: none;
  31.     border-radius: 4px;
  32.     text-shadow: 1px 1px 1px #fff;
  33.     cursor: pointer;
  34. }
  35.  
  36. .woocommerce div.product form.cart div.quantity {
  37.     margin-right: 20px;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement