Skip to content

Instantly share code, notes, and snippets.

@ahansson89
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahansson89/93d5f1463d065c886ea5 to your computer and use it in GitHub Desktop.
Save ahansson89/93d5f1463d065c886ea5 to your computer and use it in GitHub Desktop.
Rounded corners for Ultimate Social Deux
/*
* Add the below chunk of css to your Custom CSS
* to get back rounded corners removed in 5.x
*/
.us_skin_default .us_button { -moz-border-radius-topleft: 16px; -moz-border-radius-topright: 16px; -moz-border-radius-bottomright: 16px; -moz-border-radius-bottomleft: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; border-bottom-right-radius: 16px; border-bottom-left-radius: 16px; -webkit-border-top-left-radius: 16px; -webkit-border-top-right-radius: 16px; -webkit-border-bottom-right-radius: 16px; -webkit-border-bottom-left-radius: 16px; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment