Skip to content

Commit

Permalink
Merge pull request #100 from kni-labs/dev
Browse files Browse the repository at this point in the history
Removed clearfix
  • Loading branch information
dbox committed May 5, 2015
2 parents 5ea0c69 + d79d7a2 commit d7c32b0
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 20 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rrssb",
"version": "1.8.0",
"version": "1.8.1",
"authors": [
"(Joshua Tuscan <[email protected]>)",
"(Daniel Box <[email protected]>)"
Expand Down
2 changes: 1 addition & 1 deletion css/demo.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/rrssb.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
<h1>Ridiculously Responsive Social Sharing Buttons</h1>
<hr />

<div class="share-container clearfix">
<div class="share-container">
<span class="label">share this page:</span>

<!-- Buttons start here. Copy this ul to your document. -->
<ul class="rrssb-buttons clearfix">
<ul class="rrssb-buttons">
<li class="rrssb-email">
<!-- Replace subject with your message using URL Endocding: http://meyerweb.com/eric/tools/dencoder/ -->
<a href="mailto:?subject=Check%20out%20how%20ridiculously%20responsive%20these%20social%20buttons%20are&amp;body=http%3A%2F%2Fkurtnoble.com%2Flabs%2Frrssb%2Findex.html">
Expand Down Expand Up @@ -212,7 +212,7 @@ <h1>Ridiculously Responsive Social Sharing Buttons</h1>
<p><a href="https://github.com/kni-labs/rrssb">Grab the code on Github here →</a></p>

<small>RRSSB is a <a href="http://kurtnoble.com">KNI Labs</a> freebie crafted by <a href="http://www.twitter.com/dbox">@dbox</a> and <a href="http://www.twitter.com/joshuatuscan">@joshuatuscan</a>. &nbsp;
<em>v 1.8.0</em>
<em>v 1.8.1</em>
</small>

</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "RRSSB",
"version": "1.7.7",
"version": "1.8.1",
"authors": [
"(Joshua Tuscan <[email protected]>)",
"(Daniel Box <[email protected]>)"
Expand Down
15 changes: 15 additions & 0 deletions scss/demo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ $border-radius: 2px;
$main-font: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;


// some generic classes
.clearfix {

&:after {
clear: both;
}

&:before,
&:after {
content: ' ';
display: table;
}
}

body {
overflow-x: hidden;
}
Expand Down Expand Up @@ -86,6 +100,7 @@ hr {
.share-container {
padding: 0 0 25px;
position: relative;
@extend .clearfix;

@media screen and (max-width: 320px) {
padding: 0 0 12px;
Expand Down
13 changes: 0 additions & 13 deletions scss/rrssb.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,6 @@ $social-list: (
rrssb-hackernews $rrssb-hackernews
);

// some generic classes
.clearfix {

&:after {
clear: both;
}

&:before,
&:after {
content: ' ';
display: table;
}
}

// The meat and potatoes
.rrssb-buttons {
Expand Down

0 comments on commit d7c32b0

Please sign in to comment.