diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-12-10 12:47:15 -0600 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-12-10 12:50:04 -0600 |
commit | 692c8f3491cac66c0bffc88fa44153ca7a2efcc3 (patch) | |
tree | 409978ef8808c05275d758b96ef700af79f229b3 /.themes/classic | |
parent | 645eb6140b51d2db4430afabb0f667fbcdb0a3fb (diff) | |
download | my_new_personal_website-692c8f3491cac66c0bffc88fa44153ca7a2efcc3.tar.xz my_new_personal_website-692c8f3491cac66c0bffc88fa44153ca7a2efcc3.zip |
removed overflow hidden from <article> to prevent clipping on facebook's send dropdown, and fixed bug with styling on twitter status links
Diffstat (limited to '.themes/classic')
-rw-r--r-- | .themes/classic/sass/partials/_blog.scss | 1 | ||||
-rw-r--r-- | .themes/classic/sass/partials/sidebar/_twitter.scss | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/.themes/classic/sass/partials/_blog.scss b/.themes/classic/sass/partials/_blog.scss index d3ba48a3..57fe7a8a 100644 --- a/.themes/classic/sass/partials/_blog.scss +++ b/.themes/classic/sass/partials/_blog.scss @@ -1,5 +1,4 @@ article { - overflow: hidden; padding-top: 1em; a { @extend .force-wrap; } header { diff --git a/.themes/classic/sass/partials/sidebar/_twitter.scss b/.themes/classic/sass/partials/sidebar/_twitter.scss index ccc9b53d..dfd49b55 100644 --- a/.themes/classic/sass/partials/sidebar/_twitter.scss +++ b/.themes/classic/sass/partials/sidebar/_twitter.scss @@ -13,7 +13,7 @@ position: relative; padding-right: 1em; } - a[href*=status]{ + a[href*=status]:first-child { color: $twitter-status-link; float: right; padding: 0 0 .1em 1em; |