Last active
August 29, 2015 14:19
-
-
Save ahansson89/93d5f1463d065c886ea5 to your computer and use it in GitHub Desktop.
Rounded corners for Ultimate Social Deux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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