Skip to content

Instantly share code, notes, and snippets.

@agusmu
Last active December 19, 2015 13:28
Show Gist options
  • Save agusmu/5961923 to your computer and use it in GitHub Desktop.
Save agusmu/5961923 to your computer and use it in GitHub Desktop.
PrimaShop - rounded corner buttons
/* default button */
button, input[type="button"], input[type="reset"], input[type="submit"] {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/* top navigation "my cart" button */
#topnav ul.topnav-menu li a.topnav-cart-count {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/* button shortcode */
.ps-button {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/* header call to action button */
#header-action a.header-action-button, #header-action a.header-action-button:visited {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/* woocommerce button */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .woocommerce #content input.button, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button, .woocommerce-page #respond input#submit, .woocommerce-page #content input.button {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
@agusmu
Copy link
Author

agusmu commented Sep 28, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment