-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the possibility to select a theme and style the buttons by default
- Loading branch information
fritzmg
committed
Nov 13, 2014
1 parent
1bd1e70
commit 9de78d5
Showing
50 changed files
with
277 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<IfModule !mod_authz_core.c> | ||
Order allow,deny | ||
Allow from all | ||
</IfModule> | ||
<IfModule mod_authz_core.c> | ||
Require all granted | ||
</IfModule> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
ul.sharebuttons { | ||
list-style-type:none; | ||
margin:0 -4px; | ||
padding:0; | ||
} | ||
|
||
ul.sharebuttons:after { | ||
content:""; | ||
display:block; | ||
clear:both; | ||
} | ||
|
||
ul.sharebuttons > li { | ||
float:left; | ||
margin:0 4px; | ||
} | ||
|
||
ul.sharebuttons > li > a { | ||
display:block; | ||
white-space:nowrap; | ||
overflow:hidden; | ||
text-indent:100%; | ||
background-repeat:no-repeat; | ||
background-position:center; | ||
} |
30 changes: 30 additions & 0 deletions
30
system/modules/sharebuttons/assets/sharebuttons_shadow.css
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* from http://wegraphics.net/downloads/free-long-shadow-social-media-icons/ */ | ||
|
||
ul.sharebuttons > li > a { | ||
width:32px; | ||
height:32px; | ||
} | ||
|
||
ul.sharebuttons > li > a.facebook { | ||
background-image:url('shadow/facebook.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.twitter { | ||
background-image:url('shadow/twitter.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.gplus { | ||
background-image:url('shadow/gplus.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.linkedin { | ||
background-image:url('shadow/linkedin.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.xing { | ||
display:none; | ||
} | ||
|
||
ul.sharebuttons > li > a.mail { | ||
display:none; | ||
} |
30 changes: 30 additions & 0 deletions
30
system/modules/sharebuttons/assets/sharebuttons_simpleflat.css
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* from http://simplesharingbuttons.com/ */ | ||
|
||
ul.sharebuttons > li > a { | ||
width:32px; | ||
height:32px; | ||
} | ||
|
||
ul.sharebuttons > li > a.facebook { | ||
background-image:url('simpleflat/facebook.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.twitter { | ||
background-image:url('simpleflat/twitter.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.gplus { | ||
background-image:url('simpleflat/gplus.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.linkedin { | ||
background-image:url('simpleflat/linkedin.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.xing { | ||
display:none; | ||
} | ||
|
||
ul.sharebuttons > li > a.mail { | ||
background-image:url('simpleflat/email.png'); | ||
} |
61 changes: 61 additions & 0 deletions
61
system/modules/sharebuttons/assets/sharebuttons_simpleicons_black.css
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* from http://simpleicons.org/ */ | ||
|
||
ul.sharebuttons > li > a { | ||
width:32px; | ||
height:32px; | ||
} | ||
|
||
ul.sharebuttons > li > a.facebook { | ||
background-image:url('simpleicons/facebook-32-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.twitter { | ||
background-image:url('simpleicons/twitter-32-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.gplus { | ||
background-image:url('simpleicons/googleplus-32-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.linkedin { | ||
background-image:url('simpleicons/linkedin-32-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.xing { | ||
background-image:url('simpleicons/xing-32-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.mail { | ||
background-image:url('simpleicons/email-32-black.png'); | ||
} | ||
|
||
@media only screen and (max-width:768px) { | ||
|
||
ul.sharebuttons > li > a { | ||
background-size:100% auto; | ||
} | ||
|
||
ul.sharebuttons > li > a.facebook { | ||
background-image:url('simpleicons/facebook-64-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.twitter { | ||
background-image:url('simpleicons/twitter-64-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.gplus { | ||
background-image:url('simpleicons/googleplus-64-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.linkedin { | ||
background-image:url('simpleicons/linkedin-64-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.xing { | ||
background-image:url('simpleicons/xing-64-black.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.mail { | ||
background-image:url('simpleicons/email-64-black.png'); | ||
} | ||
} |
61 changes: 61 additions & 0 deletions
61
system/modules/sharebuttons/assets/sharebuttons_simpleicons_white.css
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* from http://simpleicons.org/ */ | ||
|
||
ul.sharebuttons > li > a { | ||
width:32px; | ||
height:32px; | ||
} | ||
|
||
ul.sharebuttons > li > a.facebook { | ||
background-image:url('simpleicons/facebook-32.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.twitter { | ||
background-image:url('simpleicons/twitter-32.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.gplus { | ||
background-image:url('simpleicons/googleplus-32.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.linkedin { | ||
background-image:url('simpleicons/linkedin-32.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.xing { | ||
background-image:url('simpleicons/xing-32.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.mail { | ||
background-image:url('simpleicons/email-32.png'); | ||
} | ||
|
||
@media only screen and (max-width:768px) { | ||
|
||
ul.sharebuttons > li > a { | ||
background-size:100% auto; | ||
} | ||
|
||
ul.sharebuttons > li > a.facebook { | ||
background-image:url('simpleicons/facebook-64.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.twitter { | ||
background-image:url('simpleicons/twitter-64.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.gplus { | ||
background-image:url('simpleicons/googleplus-64.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.linkedin { | ||
background-image:url('simpleicons/linkedin-64.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.xing { | ||
background-image:url('simpleicons/xing-64.png'); | ||
} | ||
|
||
ul.sharebuttons > li > a.mail { | ||
background-image:url('simpleicons/email-64.png'); | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+318 Bytes
system/modules/sharebuttons/assets/simpleicons/facebook-32-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+452 Bytes
system/modules/sharebuttons/assets/simpleicons/facebook-64-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+432 Bytes
system/modules/sharebuttons/assets/simpleicons/googleplus-32-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+832 Bytes
system/modules/sharebuttons/assets/simpleicons/googleplus-64-black.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+356 Bytes
system/modules/sharebuttons/assets/simpleicons/linkedin-32-black.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+568 Bytes
system/modules/sharebuttons/assets/simpleicons/linkedin-64-black.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+379 Bytes
system/modules/sharebuttons/assets/simpleicons/twitter-32-black.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+684 Bytes
system/modules/sharebuttons/assets/simpleicons/twitter-64-black.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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