Version Description
- Test with WordPress 6.1.1.
- Add new networks.
- Hide classic tab.
- Fix bugs in admin preview.
Download this release
Release Info
Developer | DavidoffNeal |
Plugin | Simple Share Buttons Adder |
Version | 8.4.0 |
Comparing to | |
See all releases |
Code changes from version 8.3.2 to 8.4.0
- css/admin-theme.css +65 -654
- css/admin.css +1 -0
- css/ssba.css +67 -629
- css/style.css +0 -10
- instance.php +1 -1
- js/admin.js +18 -10
- js/ssba.js +33 -3
- js/vendor/bootstrap.js +0 -7
- js/vendor/colorpicker.js +0 -633
- js/vendor/switch.js +0 -22
- php/class-admin-panel.php +19 -2
- php/class-buttons.php +382 -1782
- php/class-database.php +87 -0
- php/class-styles.php +12 -10
- readme.txt +11 -5
- simple-share-buttons-adder.php +4 -4
- templates/admin-footer.php +1 -1
- templates/admin-panel.php +1 -7
- templates/classic-tab.php +1 -360
- templates/plus-tab.php +126 -30
- templates/share-bar-tab.php +20 -15
css/admin-theme.css
CHANGED
@@ -5,17 +5,7 @@
|
|
5 |
.ssbp-chevron-up:before,.ssbp--state-hidden .ssbp-toggle-switch:before{content:"\e615"}
|
6 |
.ssbp-chevron-right:before,.ssbp--fixed-right .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-left .ssbp-toggle-switch:before{content:"\e616"}
|
7 |
.ssbp-chevron-left:before,.ssbp--fixed-left .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-right .ssbp-toggle-switch:before{content:"\e617"}
|
8 |
-
.ssbp-
|
9 |
-
.ssbp-whatsapp:before{content:"\e60f"}.ssbp-diggit:before{content:"\e60c"}
|
10 |
-
.ssbp-buffer:before{content:"\e60d"}.ssbp-close:before{content:"\e614"}
|
11 |
-
.ssbp-twitter:before{content:"\e605"}.ssbp-reddit:before{content:"\e606"}
|
12 |
-
.ssbp-flattr:before{content:"\e607"}.ssbp-flipboard:before{content:"\e607"}
|
13 |
-
.ssbp-tumblr:before{content:"\e608"}.ssbp-linkedin:before{content:"\e609"}
|
14 |
-
.ssbp-google:before{content:"\e60a"}.ssbp-xing:before{content:"\e610"}
|
15 |
-
.ssbp-facebook:before{content:"\e60e"}.ssbp-facebook_save:before{content:"\e900"}
|
16 |
-
.ssbp-vk:before{content:"\e600"}.ssbp-stumbleupon:before{content:"\e601"}
|
17 |
-
.ssbp-print:before{content:"\e602"}.ssbp-pinterest:before{content:"\e603"}
|
18 |
-
.ssbp-email:before{content:"\e604"}.ssbp-wrap *,.ssbp-wrap *:before,.ssbp-wrap *:after{box-sizing:border-box}
|
19 |
.ssbp-input-url-div,.ssbp-total-shares,.ssba-hide-button.ssbp-each-share,.ssbp-toggle-switch,.ssbp-text{display:none}
|
20 |
.ssbp-wrap{position:relative;display:inline-block;padding:0;font-size:0;color:#272727;z-index:0 !important}
|
21 |
.ssbp-wrap.ssbp--centred{display:block;text-align:center}.ssbp-wrap.ssbp--aligned-right{display:block;text-align:right}
|
@@ -45,34 +35,12 @@
|
|
45 |
.ssbp--state-hidden.ssbp--fixed-bottom .ssbp-container{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}
|
46 |
.ssbp--state-hidden.ssbp--fixed-left .ssbp-container{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}
|
47 |
.ssbp--state-hidden.ssbp--fixed-right .ssbp-container{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%)}
|
48 |
-
|
49 |
-
.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
50 |
-
.ssbp--theme-4[class*="ssbp--fixed"] .ssbp-container{background-color:rgba(255,255,255,0.8);padding:8px}
|
51 |
-
.ssbp--theme-4 .ssbp-btn{width:3em;height:3em;line-height:3em;border-radius:7.5px;color:#fff;-webkit-transition:background-color .25s;transition:background-color .25s;box-shadow:inset 0 -1.5em 2em rgba(255,255,255,0.1);border-bottom:0}
|
52 |
-
.ssbp--theme-4 .ssbp-btn:hover,.ssbp--theme-4 .ssbp-btn:focus,.ssbp--theme-4 .ssbp-btn:active{box-shadow:inset 0 -1.5em 2em rgba(255,255,255,0.1),inset 0 0 3.5em rgba(0,0,0,0.33)}
|
53 |
-
.ssbp--theme-4 .ssbp-btn:hover,.ssbp--theme-4 .ssbp-btn:focus,.ssbp--theme-4 .ssbp-btn:active,.ssbp--theme-4 .ssbp-btn:visited{color:#fff}
|
54 |
-
.ssbp--theme-4 .ssbp-list li{margin-left:12px}.ssbp--theme-4 .ssbp-buffer{background-color:#272727}
|
55 |
-
.ssbp--theme-4 .ssbp-diggit{background-color:#14589e}.ssbp--theme-4 .ssbp-email{background-color:#787878}
|
56 |
-
.ssbp--theme-4 .ssbp-ellipsis{background-color:#152b3c}.ssbp--theme-4 .ssbp-facebook{background-color:#365397}
|
57 |
-
.ssbp--theme-4 .ssbp-facebook_save{background-color:#365397}.ssbp--theme-4 .ssbp-flattr{background-color:#f67c1a}
|
58 |
-
.ssbp--theme-4 .ssbp-google{background-color:#e0452c}.ssbp--theme-4 .ssbp-linkedin{background-color:#007bb6}
|
59 |
-
.ssbp--theme-4 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-4 .ssbp-print{background-color:#1f6b43}
|
60 |
-
.ssbp--theme-4 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-4 .ssbp-simplesharebuttons{background-color:#4582ec}
|
61 |
-
.ssbp--theme-4 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-4 .ssbp-tumblr{background-color:#2c4762}
|
62 |
-
.ssbp--theme-4 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-4 .ssbp-vk{background-color:#45668e}
|
63 |
-
.ssbp--theme-4 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-4 .ssbp-yummly{background-color:#e16120}
|
64 |
-
.ssbp--theme-4 .ssbp-xing{background-color:#026466}.ssbp--theme-4 .ssbp-each-share{position:absolute;bottom:100%;right:0;z-index:11;min-width:1.25em;margin-right:-6px;margin-bottom:-8px;padding:2px 4px;border-radius:8px;background-color:#f22121;font-size:10px;color:#FFF;text-align:center}
|
65 |
-
.ssbp--theme-4.ssbp--fixed-right .ssbp-each-share{left:auto;right:100%;margin-left:0;margin-right:-16px}
|
66 |
.ssbp-share-text{font-weight:normal;margin:0 0 10px 0;font-size:12px;color:#4582ec}
|
67 |
#classic-share-buttons blockquote.yellow{border-left:5px solid #ded400;font-weight:bold}
|
68 |
#classic-share-buttons blockquote.yellow .notice-dismiss{position:absolute;right:-24px}
|
69 |
-
#classic-share-buttons blockquote.yellow p{position:relative}
|
70 |
-
|
71 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
72 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
73 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
74 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 12px !important;display:table-cell !important;width:auto;height:auto}
|
75 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
76 |
@-webkit-keyframes spin{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}
|
77 |
}@keyframes spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
|
78 |
}.ssbp-spinner:before{font-family:'ssbp';content:"\e614"}
|
@@ -84,18 +52,7 @@
|
|
84 |
.ssbp-chevron-up:before,.ssbp--state-hidden .ssbp-toggle-switch:before{content:"\e615"}
|
85 |
.ssbp-chevron-right:before,.ssbp--fixed-right .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-left .ssbp-toggle-switch:before{content:"\e616"}
|
86 |
.ssbp-chevron-left:before,.ssbp--fixed-left .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-right .ssbp-toggle-switch:before{content:"\e617"}
|
87 |
-
.ssbp-simplesharebuttons:before{content:"\e611"}.ssbp-
|
88 |
-
.ssbp-whatsapp:before{content:"\e60f"}.ssbp-diggit:before{content:"\e60c"}
|
89 |
-
.ssbp-line:before{content:url("../images/line.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
90 |
-
.ssbp-buffer:before{content:"\e60d"}.ssbp-close:before{content:"\e614"}
|
91 |
-
.ssbp-twitter:before{content:"\e605"}.ssbp-reddit:before{content:"\e606"}
|
92 |
-
.ssbp-flattr:before{content:"\e607"}.ssbp-tumblr:before{content:"\e608"}
|
93 |
-
.ssbp-linkedin:before{content:"\e609"}.ssbp-google:before{content:"\e60a"}
|
94 |
-
.ssbp-xing:before{content:"\e610"}.ssbp-facebook:before{content:"\e60e"}
|
95 |
-
.ssbp-facebook_save:before{content:"\e900"}.ssbp-facebook-messenger:before{content:"\e611"}
|
96 |
-
.ssbp-vk:before{content:"\e600"}.ssbp-stumbleupon:before{content:"\e601"}
|
97 |
-
.ssbp-print:before{content:"\e602"}.ssbp-pinterest:before{content:"\e603"}
|
98 |
-
.ssbp-email:before{content:"\e604"}.ssbp-ellipsis:before{content:"\e612"}
|
99 |
.ssbp-x:before{content:"\e613"}@media print{.ssbp-wrap{display:none !important}
|
100 |
}.ssbp-wrap *,.ssbp-wrap *:before,.ssbp-wrap *:after{box-sizing:border-box}.ssbp-input-url-div,.ssbp-total-shares,.ssba-hide-button.ssbp-each-share,.ssbp-toggle-switch,.ssbp-text{display:none}
|
101 |
.ssbp-wrap{position:relative;display:inline-block;padding:0;font-size:0;color:#272727}
|
@@ -125,476 +82,11 @@
|
|
125 |
.ssbp--state-hidden.ssbp--fixed-bottom .ssbp-container{-webkit-transform:translateY(100%);transform:translateY(100%)}
|
126 |
.ssbp--state-hidden.ssbp--fixed-left .ssbp-container{-webkit-transform:translateX(-100%);transform:translateX(-100%)}
|
127 |
.ssbp--state-hidden.ssbp--fixed-right .ssbp-container{-webkit-transform:translateX(100%);transform:translateX(100%)}
|
128 |
-
|
129 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
130 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
131 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
132 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
133 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 12px !important;display:table-cell !important;width:auto;height:auto}
|
134 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
135 |
@-webkit-keyframes ripple-out{100%{visibility:visible;top:-1em;right:-1em;bottom:-1em;left:-1em;opacity:0}
|
136 |
-
}@keyframes ripple-out{100%{visibility:visible;top:-1em;right:-1em;bottom:-1em;left:-1em;opacity:0}
|
137 |
-
|
138 |
-
.ssbp--theme-
|
139 |
-
.ssbp--theme-1 .ssbp-btn:hover,.ssbp--theme-1 .ssbp-btn:focus,.ssbp--theme-1 .ssbp-btn:active{background-color:#fff;z-index:10}
|
140 |
-
.ssbp--theme-1 .ssbp-btn:visited{color:#fff}.ssbp--theme-1 .ssbp-btn:before{-webkit-transition:-webkit-transform .25s;transition:transform .25s}
|
141 |
-
.ssbp--theme-1 .ssbp-btn:active:before{-webkit-transform:scale(1.2);transform:scale(1.2)}
|
142 |
-
.ssbp--theme-1 .ssbp-btn:after{content:'';visibility:hidden;position:absolute;border:1px solid #fff;border-radius:50%;top:-1px;right:-1px;bottom:-1px;left:-1px;pointer-events:none;-webkit-animation-duration:.5s;animation-duration:.5s}
|
143 |
-
.ssbp--theme-1 .ssbp-btn:hover:after{-webkit-animation-name:ripple-out;animation-name:ripple-out}
|
144 |
-
.ssbp--theme-1[data-ssbp-counts="true"] .ssbp-list li{margin-left:13.2px}
|
145 |
-
.ssbp--theme-1[data-ssbp-counts="true"] .ssbp-list li:first-of-type{margin-left:0}
|
146 |
-
.ssbp--theme-1 .ssbp-buffer{background-color:#272727}.ssbp--theme-1 .ssbp-buffer:hover,.ssbp--theme-1 .ssbp-buffer:focus,.ssbp--theme-1 .ssbp-buffer:active{color:#272727;border-color:#272727}
|
147 |
-
.ssbp--theme-1 .ssbp-buffer+.ssbp-each-share{background-color:#272727}.ssbp--theme-1 .ssbp-diggit{background-color:#14589e}
|
148 |
-
.ssbp--theme-1 .ssbp-diggit:hover,.ssbp--theme-1 .ssbp-diggit:focus,.ssbp--theme-1 .ssbp-diggit:active{color:#14589e;border-color:#14589e}
|
149 |
-
.ssbp--theme-1 .ssbp-diggit+.ssbp-each-share{background-color:#14589e}.ssbp--theme-1 .ssbp-email{background-color:#787878}
|
150 |
-
.ssbp--theme-1 .ssbp-email:hover,.ssbp--theme-1 .ssbp-email:focus,.ssbp--theme-1 .ssbp-email:active{color:#787878;border-color:#787878}
|
151 |
-
.ssbp--theme-1 .ssbp-email+.ssbp-each-share{background-color:#787878}.ssbp--theme-1 .ssbp-ellipsis{background-color:#4582ec}
|
152 |
-
.ssbp--theme-1 .ssbp-ellipsis:hover,.ssbp--theme-1 .ssbp-ellipsis:focus,.ssbp--theme-1 .ssbp-ellipsis:active{color:#4582ec;border-color:#4582ec}
|
153 |
-
.ssbp--theme-1 .ssbp-ellipsis+.ssbp-each-share{background-color:#4582ec}.ssbp--theme-1 .ssbp-facebook{background-color:#3b5998}
|
154 |
-
.ssbp--theme-1 .ssbp-facebook:hover,.ssbp--theme-1 .ssbp-facebook:focus,.ssbp--theme-1 .ssbp-facebook:active{color:#3b5998;border-color:#3b5998}
|
155 |
-
.ssbp--theme-1 .ssbp-facebook+.ssbp-each-share{background-color:#3b5998}.ssbp--theme-1 .ssbp-facebook_save{background-color:#3b5998}
|
156 |
-
.ssbp--theme-1 .ssbp-facebook_save:hover,.ssbp--theme-1 .ssbp-facebook_save:focus,.ssbp--theme-1 .ssbp-facebook_save:active{color:#3b5998;border-color:#3b5998}
|
157 |
-
.ssbp--theme-1 .ssbp-facebook_save+.ssbp-each-share{background-color:#3b5998}.ssbp--theme-1 .ssbp-facebook-messenger{background-color:#0084ff}
|
158 |
-
.ssbp--theme-1 .ssbp-facebook-messenger:hover,.ssbp--theme-1 .ssbp-facebook-messenger:focus,.ssbp--theme-1 .ssbp-facebook-messenger:active{color:#0084ff;border-color:#0084ff}
|
159 |
-
.ssbp--theme-1 .ssbp-facebook-messenger+.ssbp-each-share{background-color:#0084ff}
|
160 |
-
.ssbp--theme-1 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-1 .ssbp-flattr:hover,.ssbp--theme-1 .ssbp-flattr:focus,.ssbp--theme-1 .ssbp-flattr:active{color:#f67c1a;border-color:#f67c1a}
|
161 |
-
.ssbp--theme-1 .ssbp-flattr+.ssbp-each-share{background-color:#f67c1a}.ssbp--theme-1 .ssbp-google{background-color:#dc4e41}
|
162 |
-
.ssbp--theme-1 .ssbp-google:hover,.ssbp--theme-1 .ssbp-google:focus,.ssbp--theme-1 .ssbp-google:active{color:#dc4e41;border-color:#dc4e41}
|
163 |
-
.ssbp--theme-1 .ssbp-google+.ssbp-each-share{background-color:#dc4e41}.ssbp--theme-1 .ssbp-linkedin{background-color:#007bb6}
|
164 |
-
.ssbp--theme-1 .ssbp-linkedin:hover,.ssbp--theme-1 .ssbp-linkedin:focus,.ssbp--theme-1 .ssbp-linkedin:active{color:#007bb6;border-color:#007bb6}
|
165 |
-
.ssbp--theme-1 .ssbp-linkedin+.ssbp-each-share{background-color:#007bb6}.ssbp--theme-1 .ssbp-pinterest{background-color:#ce1a19}
|
166 |
-
.ssbp--theme-1 .ssbp-pinterest:hover,.ssbp--theme-1 .ssbp-pinterest:focus,.ssbp--theme-1 .ssbp-pinterest:active{color:#ce1a19;border-color:#ce1a19}
|
167 |
-
.ssbp--theme-1 .ssbp-pinterest+.ssbp-each-share{background-color:#ce1a19}.ssbp--theme-1 .ssbp-print{background-color:#1f6b43}
|
168 |
-
.ssbp--theme-1 .ssbp-print:hover,.ssbp--theme-1 .ssbp-print:focus,.ssbp--theme-1 .ssbp-print:active{color:#1f6b43;border-color:#1f6b43}
|
169 |
-
.ssbp--theme-1 .ssbp-print+.ssbp-each-share{background-color:#1f6b43}.ssbp--theme-1 .ssbp-reddit{background-color:#ff4500}
|
170 |
-
.ssbp--theme-1 .ssbp-reddit:hover,.ssbp--theme-1 .ssbp-reddit:focus,.ssbp--theme-1 .ssbp-reddit:active{color:#ff4500;border-color:#ff4500}
|
171 |
-
.ssbp--theme-1 .ssbp-reddit+.ssbp-each-share{background-color:#ff4500}.ssbp--theme-1 .ssbp-simplesharebuttons{background-color:#4582ec}
|
172 |
-
.ssbp--theme-1 .ssbp-simplesharebuttons:hover,.ssbp--theme-1 .ssbp-simplesharebuttons:focus,.ssbp--theme-1 .ssbp-simplesharebuttons:active{color:#4582ec;border-color:#4582ec}
|
173 |
-
.ssbp--theme-1 .ssbp-simplesharebuttons+.ssbp-each-share{background-color:#4582ec}
|
174 |
-
.ssbp--theme-1 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-1 .ssbp-stumbleupon:hover,.ssbp--theme-1 .ssbp-stumbleupon:focus,.ssbp--theme-1 .ssbp-stumbleupon:active{color:#eb4924;border-color:#eb4924}
|
175 |
-
.ssbp--theme-1 .ssbp-stumbleupon+.ssbp-each-share{background-color:#eb4924}.ssbp--theme-1 .ssbp-tumblr{background-color:#2c4762}
|
176 |
-
.ssbp--theme-1 .ssbp-tumblr:hover,.ssbp--theme-1 .ssbp-tumblr:focus,.ssbp--theme-1 .ssbp-tumblr:active{color:#2c4762;border-color:#2c4762}
|
177 |
-
.ssbp--theme-1 .ssbp-tumblr+.ssbp-each-share{background-color:#2c4762}.ssbp--theme-1 .ssbp-twitter{background-color:#00a9f1}
|
178 |
-
.ssbp--theme-1 .ssbp-twitter:hover,.ssbp--theme-1 .ssbp-twitter:focus,.ssbp--theme-1 .ssbp-twitter:active{color:#00a9f1;border-color:#00a9f1}
|
179 |
-
.ssbp--theme-1 .ssbp-twitter+.ssbp-each-share{background-color:#00a9f1}.ssbp--theme-1 .ssbp-vk{background-color:#45668e}
|
180 |
-
.ssbp--theme-1 .ssbp-vk:hover,.ssbp--theme-1 .ssbp-vk:focus,.ssbp--theme-1 .ssbp-vk:active{color:#45668e;border-color:#45668e}
|
181 |
-
.ssbp--theme-1 .ssbp-vk+.ssbp-each-share{background-color:#45668e}.ssbp--theme-1 .ssbp-whatsapp{background-color:#34af23}
|
182 |
-
.ssbp--theme-1 .ssbp-whatsapp:hover,.ssbp--theme-1 .ssbp-whatsapp:focus,.ssbp--theme-1 .ssbp-whatsapp:active{color:#34af23;border-color:#34af23}
|
183 |
-
.ssbp--theme-1 .ssbp-whatsapp+.ssbp-each-share{background-color:#34af23}.ssbp--theme-1 .ssbp-yummly{background-color:#e16120}
|
184 |
-
.ssbp--theme-1 .ssbp-yummly:hover,.ssbp--theme-1 .ssbp-yummly:focus,.ssbp--theme-1 .ssbp-yummly:active{color:#e16120;border-color:#e16120}
|
185 |
-
.ssbp--theme-1 .ssbp-yummly+.ssbp-each-share{background-color:#e16120}.ssbp--theme-1 .ssbp-xing{background-color:#026466}
|
186 |
-
.ssbp--theme-1 .ssbp-xing:hover,.ssbp--theme-1 .ssbp-xing:focus,.ssbp--theme-1 .ssbp-xing:active{color:#026466;border-color:#026466}
|
187 |
-
.ssbp--theme-1 .ssbp-xing+.ssbp-each-share{background-color:#026466}.ssbp--theme-1 .ssbp-each-share{position:absolute;top:0;left:100%;z-index:11;margin-left:-12px;padding:2px;border-radius:6px;font-size:10px;color:#FFF}
|
188 |
-
.ssbp--theme-1.ssbp--fixed-right .ssbp-each-share{left:auto;right:100%;margin-left:0;margin-right:-12px}
|
189 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
190 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
191 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
192 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
193 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
194 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centered .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
195 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
196 |
-
.ssbp--theme-2 .ssbp-list li{overflow:hidden;margin:0}.ssbp--theme-2 .ssbp-btn{width:3em;height:3em;line-height:3em;position:relative;color:#fff;-webkit-transition:.25s;transition:.25s;border-bottom:0}
|
197 |
-
.ssbp--theme-2 .ssbp-btn:before{-webkit-transition:.25s;transition:.25s}.ssbp--theme-2 .ssbp-btn+.ssbp-each-share{position:absolute;z-index:10;bottom:0;left:0;right:0;-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:.25s;transition:.25s}
|
198 |
-
.ssbp--theme-2 .ssbp-btn:hover,.ssbp--theme-2 .ssbp-btn:focus,.ssbp--theme-2 .ssbp-btn:active,.ssbp--theme-2 .ssbp-btn:visited{z-index:10;color:#fff}
|
199 |
-
.ssbp--theme-2 .ssbp-btn:hover:before,.ssbp--theme-2 .ssbp-btn:focus:before,.ssbp--theme-2 .ssbp-btn:active:before,.ssbp--theme-2 .ssbp-btn:visited:before{-webkit-transform:none !important;transform:none !important}
|
200 |
-
.ssbp--theme-2 .ssbp-btn:hover+.ssbp-each-share,.ssbp--theme-2 .ssbp-btn:focus+.ssbp-each-share,.ssbp--theme-2 .ssbp-btn:active+.ssbp-each-share,.ssbp--theme-2 .ssbp-btn:visited+.ssbp-each-share{-webkit-transform:translateY(100%);transform:translateY(100%)}
|
201 |
-
.ssbp--theme-2 .ssbp-btn:active{-webkit-transform:scale(1.2);transform:scale(1.2)}
|
202 |
-
.ssbp--theme-2[data-ssbp-counts="true"] .ssbp-btn:before{-webkit-transform:translateY(-0.25em) scale(0.75);transform:translateY(-0.25em) scale(0.75)}
|
203 |
-
.ssbp--theme-2 .ssbp-buffer{background-color:#272727}.ssbp--theme-2 .ssbp-buffer:hover,.ssbp--theme-2 .ssbp-buffer:focus,.ssbp--theme-2 .ssbp-buffer:active{background-color:#0e0e0e}
|
204 |
-
.ssbp--theme-2 .ssbp-diggit{background-color:#14589e}.ssbp--theme-2 .ssbp-diggit:hover,.ssbp--theme-2 .ssbp-diggit:focus,.ssbp--theme-2 .ssbp-diggit:active{background-color:#0e3f71}
|
205 |
-
.ssbp--theme-2 .ssbp-email{background-color:#787878}.ssbp--theme-2 .ssbp-email:hover,.ssbp--theme-2 .ssbp-email:focus,.ssbp--theme-2 .ssbp-email:active{background-color:#5f5f5f}
|
206 |
-
.ssbp--theme-2 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-2 .ssbp-ellipsis:hover,.ssbp--theme-2 .ssbp-ellipsis:focus,.ssbp--theme-2 .ssbp-ellipsis:active{background-color:#1863e6}
|
207 |
-
.ssbp--theme-2 .ssbp-facebook{background-color:#3b5998}.ssbp--theme-2 .ssbp-facebook:hover,.ssbp--theme-2 .ssbp-facebook:focus,.ssbp--theme-2 .ssbp-facebook:active{background-color:#2d4373}
|
208 |
-
.ssbp--theme-2 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-2 .ssbp-facebook_save:hover,.ssbp--theme-2 .ssbp-facebook_save:focus,.ssbp--theme-2 .ssbp-facebook_save:active{background-color:#2d4373}
|
209 |
-
.ssbp--theme-2 .ssbp-facebook-messenger{background-color:#0084ff}.ssbp--theme-2 .ssbp-facebook-messenger:hover,.ssbp--theme-2 .ssbp-facebook-messenger:focus,.ssbp--theme-2 .ssbp-facebook-messenger:active{background-color:#006acc}
|
210 |
-
.ssbp--theme-2 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-2 .ssbp-flattr:hover,.ssbp--theme-2 .ssbp-flattr:focus,.ssbp--theme-2 .ssbp-flattr:active{background-color:#d56308}
|
211 |
-
.ssbp--theme-2 .ssbp-google{background-color:#dc4e41}.ssbp--theme-2 .ssbp-google:hover,.ssbp--theme-2 .ssbp-google:focus,.ssbp--theme-2 .ssbp-google:active{background-color:#c63224}
|
212 |
-
.ssbp--theme-2 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-2 .ssbp-linkedin:hover,.ssbp--theme-2 .ssbp-linkedin:focus,.ssbp--theme-2 .ssbp-linkedin:active{background-color:#005983}
|
213 |
-
.ssbp--theme-2 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-2 .ssbp-pinterest:hover,.ssbp--theme-2 .ssbp-pinterest:focus,.ssbp--theme-2 .ssbp-pinterest:active{background-color:#a11413}
|
214 |
-
.ssbp--theme-2 .ssbp-print{background-color:#1f6b43}.ssbp--theme-2 .ssbp-print:hover,.ssbp--theme-2 .ssbp-print:focus,.ssbp--theme-2 .ssbp-print:active{background-color:#14432a}
|
215 |
-
.ssbp--theme-2 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-2 .ssbp-reddit:hover,.ssbp--theme-2 .ssbp-reddit:focus,.ssbp--theme-2 .ssbp-reddit:active{background-color:#cc3700}
|
216 |
-
.ssbp--theme-2 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-2 .ssbp-simplesharebuttons:hover,.ssbp--theme-2 .ssbp-simplesharebuttons:focus,.ssbp--theme-2 .ssbp-simplesharebuttons:active{background-color:#1863e6}
|
217 |
-
.ssbp--theme-2 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-2 .ssbp-stumbleupon:hover,.ssbp--theme-2 .ssbp-stumbleupon:focus,.ssbp--theme-2 .ssbp-stumbleupon:active{background-color:#ca3412}
|
218 |
-
.ssbp--theme-2 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-2 .ssbp-tumblr:hover,.ssbp--theme-2 .ssbp-tumblr:focus,.ssbp--theme-2 .ssbp-tumblr:active{background-color:#1c2e3f}
|
219 |
-
.ssbp--theme-2 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-2 .ssbp-twitter:hover,.ssbp--theme-2 .ssbp-twitter:focus,.ssbp--theme-2 .ssbp-twitter:active{background-color:#0085be}
|
220 |
-
.ssbp--theme-2 .ssbp-vk{background-color:#45668e}.ssbp--theme-2 .ssbp-vk:hover,.ssbp--theme-2 .ssbp-vk:focus,.ssbp--theme-2 .ssbp-vk:active{background-color:#344d6c}
|
221 |
-
.ssbp--theme-2 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-2 .ssbp-whatsapp:hover,.ssbp--theme-2 .ssbp-whatsapp:focus,.ssbp--theme-2 .ssbp-whatsapp:active{background-color:#27851b}
|
222 |
-
.ssbp--theme-2 .ssbp-yummly{background-color:#e16120}.ssbp--theme-2 .ssbp-yummly:hover,.ssbp--theme-2 .ssbp-yummly:focus,.ssbp--theme-2 .ssbp-yummly:active{background-color:#b64d18}
|
223 |
-
.ssbp--theme-2 .ssbp-xing{background-color:#026466}.ssbp--theme-2 .ssbp-xing:hover,.ssbp--theme-2 .ssbp-xing:focus,.ssbp--theme-2 .ssbp-xing:active{background-color:#013334}
|
224 |
-
.ssbp--theme-2 .ssbp-each-share{padding:2px;background-color:rgba(0,0,0,0.1);font-size:10px;text-align:center;color:#FFF}
|
225 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
226 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
227 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
228 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
229 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
230 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
231 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
232 |
-
.ssbp--theme-3 .ssbp-list li{margin:0}.ssbp--theme-3 .ssbp-btn{display:block;color:#fff;text-shadow:-1px -1px rgba(0,0,0,0.2);-webkit-transition:background-color .25s;transition:background-color .25s;border-bottom:0}
|
233 |
-
.ssbp--theme-3 .ssbp-btn:before{vertical-align:middle}.ssbp--theme-3 .ssbp-btn:active{box-shadow:inset 0 0 .5em rgba(0,0,0,0.33)}
|
234 |
-
.ssbp--theme-3 .ssbp-btn:hover,.ssbp--theme-3 .ssbp-btn:focus,.ssbp--theme-3 .ssbp-btn:active,.ssbp--theme-3 .ssbp-btn:visited{color:#fff}
|
235 |
-
.ssbp--theme-3 .ssbp-buffer{background-color:#272727}.ssbp--theme-3 .ssbp-buffer:hover,.ssbp--theme-3 .ssbp-buffer:focus,.ssbp--theme-3 .ssbp-buffer:active,.ssbp--theme-3 .ssbp-buffer+.ssbp-each-share{background-color:#0e0e0e}
|
236 |
-
.ssbp--theme-3 .ssbp-diggit{background-color:#14589e}.ssbp--theme-3 .ssbp-diggit:hover,.ssbp--theme-3 .ssbp-diggit:focus,.ssbp--theme-3 .ssbp-diggit:active,.ssbp--theme-3 .ssbp-diggit+.ssbp-each-share{background-color:#0e3f71}
|
237 |
-
.ssbp--theme-3 .ssbp-email{background-color:#787878}.ssbp--theme-3 .ssbp-email:hover,.ssbp--theme-3 .ssbp-email:focus,.ssbp--theme-3 .ssbp-email:active,.ssbp--theme-3 .ssbp-email+.ssbp-each-share{background-color:#5f5f5f}
|
238 |
-
.ssbp--theme-3 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-3 .ssbp-ellipsis:hover,.ssbp--theme-3 .ssbp-ellipsis:focus,.ssbp--theme-3 .ssbp-ellipsis:active,.ssbp--theme-3 .ssbp-ellipsis+.ssbp-each-share{background-color:#1863e6}
|
239 |
-
.ssbp--theme-3 .ssbp-facebook{background-color:#3b5998}.ssbp--theme-3 .ssbp-facebook:hover,.ssbp--theme-3 .ssbp-facebook:focus,.ssbp--theme-3 .ssbp-facebook:active,.ssbp--theme-3 .ssbp-facebook+.ssbp-each-share{background-color:#2d4373}
|
240 |
-
.ssbp--theme-3 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-3 .ssbp-facebook_save:hover,.ssbp--theme-3 .ssbp-facebook_save:focus,.ssbp--theme-3 .ssbp-facebook_save:active,.ssbp--theme-3 .ssbp-facebook_save+.ssbp-each-share{background-color:#2d4373}
|
241 |
-
.ssbp--theme-3 .ssbp-facebook-messenger{background-color:#0084ff}.ssbp--theme-3 .ssbp-facebook-messenger:hover,.ssbp--theme-3 .ssbp-facebook-messenger:focus,.ssbp--theme-3 .ssbp-facebook-messenger:active,.ssbp--theme-3 .ssbp-facebook-messenger+.ssbp-each-share{background-color:#006acc}
|
242 |
-
.ssbp--theme-3 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-3 .ssbp-flattr:hover,.ssbp--theme-3 .ssbp-flattr:focus,.ssbp--theme-3 .ssbp-flattr:active,.ssbp--theme-3 .ssbp-flattr+.ssbp-each-share{background-color:#d56308}
|
243 |
-
.ssbp--theme-3 .ssbp-google{background-color:#dc4e41}.ssbp--theme-3 .ssbp-google:hover,.ssbp--theme-3 .ssbp-google:focus,.ssbp--theme-3 .ssbp-google:active,.ssbp--theme-3 .ssbp-google+.ssbp-each-share{background-color:#c63224}
|
244 |
-
.ssbp--theme-3 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-3 .ssbp-linkedin:hover,.ssbp--theme-3 .ssbp-linkedin:focus,.ssbp--theme-3 .ssbp-linkedin:active,.ssbp--theme-3 .ssbp-linkedin+.ssbp-each-share{background-color:#005983}
|
245 |
-
.ssbp--theme-3 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-3 .ssbp-pinterest:hover,.ssbp--theme-3 .ssbp-pinterest:focus,.ssbp--theme-3 .ssbp-pinterest:active,.ssbp--theme-3 .ssbp-pinterest+.ssbp-each-share{background-color:#a11413}
|
246 |
-
.ssbp--theme-3 .ssbp-print{background-color:#1f6b43}.ssbp--theme-3 .ssbp-print:hover,.ssbp--theme-3 .ssbp-print:focus,.ssbp--theme-3 .ssbp-print:active,.ssbp--theme-3 .ssbp-print+.ssbp-each-share{background-color:#14432a}
|
247 |
-
.ssbp--theme-3 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-3 .ssbp-reddit:hover,.ssbp--theme-3 .ssbp-reddit:focus,.ssbp--theme-3 .ssbp-reddit:active,.ssbp--theme-3 .ssbp-reddit+.ssbp-each-share{background-color:#cc3700}
|
248 |
-
.ssbp--theme-3 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-3 .ssbp-simplesharebuttons:hover,.ssbp--theme-3 .ssbp-simplesharebuttons:focus,.ssbp--theme-3 .ssbp-simplesharebuttons:active,.ssbp--theme-3 .ssbp-simplesharebuttons+.ssbp-each-share{background-color:#1863e6}
|
249 |
-
.ssbp--theme-3 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-3 .ssbp-stumbleupon:hover,.ssbp--theme-3 .ssbp-stumbleupon:focus,.ssbp--theme-3 .ssbp-stumbleupon:active,.ssbp--theme-3 .ssbp-stumbleupon+.ssbp-each-share{background-color:#ca3412}
|
250 |
-
.ssbp--theme-3 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-3 .ssbp-tumblr:hover,.ssbp--theme-3 .ssbp-tumblr:focus,.ssbp--theme-3 .ssbp-tumblr:active,.ssbp--theme-3 .ssbp-tumblr+.ssbp-each-share{background-color:#1c2e3f}
|
251 |
-
.ssbp--theme-3 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-3 .ssbp-twitter:hover,.ssbp--theme-3 .ssbp-twitter:focus,.ssbp--theme-3 .ssbp-twitter:active,.ssbp--theme-3 .ssbp-twitter+.ssbp-each-share{background-color:#0085be}
|
252 |
-
.ssbp--theme-3 .ssbp-vk{background-color:#45668e}.ssbp--theme-3 .ssbp-vk:hover,.ssbp--theme-3 .ssbp-vk:focus,.ssbp--theme-3 .ssbp-vk:active,.ssbp--theme-3 .ssbp-vk+.ssbp-each-share{background-color:#344d6c}
|
253 |
-
.ssbp--theme-3 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-3 .ssbp-whatsapp:hover,.ssbp--theme-3 .ssbp-whatsapp:focus,.ssbp--theme-3 .ssbp-whatsapp:active,.ssbp--theme-3 .ssbp-whatsapp+.ssbp-each-share{background-color:#27851b}
|
254 |
-
.ssbp--theme-3 .ssbp-yummly{background-color:#e16120}.ssbp--theme-3 .ssbp-yummly:hover,.ssbp--theme-3 .ssbp-yummly:focus,.ssbp--theme-3 .ssbp-yummly:active,.ssbp--theme-3 .ssbp-yummly+.ssbp-each-share{background-color:#b64d18}
|
255 |
-
.ssbp--theme-3 .ssbp-xing{background-color:#026466}.ssbp--theme-3 .ssbp-xing:hover,.ssbp--theme-3 .ssbp-xing:focus,.ssbp--theme-3 .ssbp-xing:active,.ssbp--theme-3 .ssbp-xing+.ssbp-each-share{background-color:#013334}
|
256 |
-
.ssbp--theme-3 .ssbp-each-share{padding:2px;font-size:10px;text-align:center;color:#FFF}
|
257 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
258 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
259 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
260 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
261 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
262 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 12px !important;display:table-cell !important;width:auto;height:auto}
|
263 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
264 |
-
.ssbp--theme-4[class*="ssbp--fixed"] .ssbp-container{background-color:rgba(255,255,255,0.8);padding:8px}
|
265 |
-
.ssbp--theme-4 .ssbp-btn{width:3em;height:3em;line-height:3em;border-radius:7.5px;color:#fff;-webkit-transition:background-color .25s;transition:background-color .25s;box-shadow:inset 0 -1.5em 2em rgba(255,255,255,0.1);border-bottom:0}
|
266 |
-
.ssbp--theme-4 .ssbp-btn:hover,.ssbp--theme-4 .ssbp-btn:focus,.ssbp--theme-4 .ssbp-btn:active{box-shadow:inset 0 -1.5em 2em rgba(255,255,255,0.1),inset 0 0 3.5em rgba(0,0,0,0.33)}
|
267 |
-
.ssbp--theme-4 .ssbp-btn:hover,.ssbp--theme-4 .ssbp-btn:focus,.ssbp--theme-4 .ssbp-btn:active,.ssbp--theme-4 .ssbp-btn:visited{color:#fff}
|
268 |
-
.ssbp--theme-4 .ssbp-list li{margin-left:12px}.ssbp--theme-4 .ssbp-buffer{background-color:#272727}
|
269 |
-
.ssbp--theme-4 .ssbp-diggit{background-color:#14589e}.ssbp--theme-4 .ssbp-email{background-color:#787878}
|
270 |
-
.ssbp--theme-4 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-4 .ssbp-facebook{background-color:#3b5998}
|
271 |
-
.ssbp--theme-4 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-4 .ssbp-facebook-messenger{background-color:#0084ff}
|
272 |
-
.ssbp--theme-4 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-4 .ssbp-google{background-color:#dc4e41}
|
273 |
-
.ssbp--theme-4 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-4 .ssbp-pinterest{background-color:#ce1a19}
|
274 |
-
.ssbp--theme-4 .ssbp-print{background-color:#1f6b43}.ssbp--theme-4 .ssbp-reddit{background-color:#ff4500}
|
275 |
-
.ssbp--theme-4 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-4 .ssbp-stumbleupon{background-color:#eb4924}
|
276 |
-
.ssbp--theme-4 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-4 .ssbp-twitter{background-color:#00a9f1}
|
277 |
-
.ssbp--theme-4 .ssbp-vk{background-color:#45668e}.ssbp--theme-4 .ssbp-whatsapp{background-color:#34af23}
|
278 |
-
.ssbp--theme-4 .ssbp-yummly{background-color:#e16120}.ssbp--theme-4 .ssbp-xing{background-color:#026466}
|
279 |
-
.ssbp--theme-4 .ssbp-each-share{position:absolute;bottom:100%;right:0;z-index:11;min-width:1.25em;margin-right:-6px;margin-bottom:-8px;padding:2px 4px;border-radius:8px;background-color:#f22121;font-size:10px;color:#FFF;text-align:center}
|
280 |
-
.ssbp--theme-4.ssbp--fixed-right .ssbp-each-share{left:auto;right:100%;margin-left:0;margin-right:-16px}
|
281 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
282 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
283 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
284 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
285 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
286 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
287 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
288 |
-
.ssbp--theme-5 .ssbp-btn{width:4em;height:3em;line-height:3em;margin-bottom:8px;color:#fff;-webkit-transition:.25s;transition:.25s;border-bottom:0}
|
289 |
-
.ssbp--theme-5 .ssbp-btn:active{-webkit-transform:translateY(4px);transform:translateY(4px)}
|
290 |
-
.ssbp--theme-5 .ssbp-btn:hover,.ssbp--theme-5 .ssbp-btn:focus,.ssbp--theme-5 .ssbp-btn:active,.ssbp--theme-5 .ssbp-btn:visited{color:#fff}
|
291 |
-
.ssbp--theme-5.ssbp--stacked .ssbp-list li,.ssbp--theme-5.ssbp-wrap.ssbp--fixed-left .ssbp-list li,.ssbp--theme-5.ssbp-wrap.ssbp--fixed-right .ssbp-list li{margin-top:0}
|
292 |
-
.ssbp--theme-5 .ssbp-buffer{background-color:#272727;box-shadow:0 8px 0 #0e0e0e,0 10px 12px rgba(0,0,0,0.33)}
|
293 |
-
.ssbp--theme-5 .ssbp-buffer:active{box-shadow:0 4px 0 #0e0e0e,0 5px 6px rgba(0,0,0,0.33)}
|
294 |
-
.ssbp--theme-5 .ssbp-diggit{background-color:#14589e;box-shadow:0 8px 0 #0e3f71,0 10px 12px rgba(0,0,0,0.33)}
|
295 |
-
.ssbp--theme-5 .ssbp-diggit:active{box-shadow:0 4px 0 #0e3f71,0 5px 6px rgba(0,0,0,0.33)}
|
296 |
-
.ssbp--theme-5 .ssbp-email{background-color:#787878;box-shadow:0 8px 0 #5f5f5f,0 10px 12px rgba(0,0,0,0.33)}
|
297 |
-
.ssbp--theme-5 .ssbp-email:active{box-shadow:0 4px 0 #5f5f5f,0 5px 6px rgba(0,0,0,0.33)}
|
298 |
-
.ssbp--theme-5 .ssbp-ellipsis{background-color:#4582ec;box-shadow:0 8px 0 #1863e6,0 10px 12px rgba(0,0,0,0.33)}
|
299 |
-
.ssbp--theme-5 .ssbp-ellipsis:active{box-shadow:0 4px 0 #1863e6,0 5px 6px rgba(0,0,0,0.33)}
|
300 |
-
.ssbp--theme-5 .ssbp-facebook{background-color:#3b5998;box-shadow:0 8px 0 #2d4373,0 10px 12px rgba(0,0,0,0.33)}
|
301 |
-
.ssbp--theme-5 .ssbp-facebook:active{box-shadow:0 4px 0 #2d4373,0 5px 6px rgba(0,0,0,0.33)}
|
302 |
-
.ssbp--theme-5 .ssbp-facebook_save{background-color:#3b5998;box-shadow:0 8px 0 #2d4373,0 10px 12px rgba(0,0,0,0.33)}
|
303 |
-
.ssbp--theme-5 .ssbp-facebook_save:active{box-shadow:0 4px 0 #2d4373,0 5px 6px rgba(0,0,0,0.33)}
|
304 |
-
.ssbp--theme-5 .ssbp-facebook-messenger{background-color:#0084ff;box-shadow:0 8px 0 #006acc,0 10px 12px rgba(0,0,0,0.33)}
|
305 |
-
.ssbp--theme-5 .ssbp-facebook-messenger:active{box-shadow:0 4px 0 #006acc,0 5px 6px rgba(0,0,0,0.33)}
|
306 |
-
.ssbp--theme-5 .ssbp-flattr{background-color:#f67c1a;box-shadow:0 8px 0 #d56308,0 10px 12px rgba(0,0,0,0.33)}
|
307 |
-
.ssbp--theme-5 .ssbp-flattr:active{box-shadow:0 4px 0 #d56308,0 5px 6px rgba(0,0,0,0.33)}
|
308 |
-
.ssbp--theme-5 .ssbp-google{background-color:#dc4e41;box-shadow:0 8px 0 #c63224,0 10px 12px rgba(0,0,0,0.33)}
|
309 |
-
.ssbp--theme-5 .ssbp-google:active{box-shadow:0 4px 0 #c63224,0 5px 6px rgba(0,0,0,0.33)}
|
310 |
-
.ssbp--theme-5 .ssbp-linkedin{background-color:#007bb6;box-shadow:0 8px 0 #005983,0 10px 12px rgba(0,0,0,0.33)}
|
311 |
-
.ssbp--theme-5 .ssbp-linkedin:active{box-shadow:0 4px 0 #005983,0 5px 6px rgba(0,0,0,0.33)}
|
312 |
-
.ssbp--theme-5 .ssbp-pinterest{background-color:#ce1a19;box-shadow:0 8px 0 #a11413,0 10px 12px rgba(0,0,0,0.33)}
|
313 |
-
.ssbp--theme-5 .ssbp-pinterest:active{box-shadow:0 4px 0 #a11413,0 5px 6px rgba(0,0,0,0.33)}
|
314 |
-
.ssbp--theme-5 .ssbp-print{background-color:#1f6b43;box-shadow:0 8px 0 #14432a,0 10px 12px rgba(0,0,0,0.33)}
|
315 |
-
.ssbp--theme-5 .ssbp-print:active{box-shadow:0 4px 0 #14432a,0 5px 6px rgba(0,0,0,0.33)}
|
316 |
-
.ssbp--theme-5 .ssbp-reddit{background-color:#ff4500;box-shadow:0 8px 0 #cc3700,0 10px 12px rgba(0,0,0,0.33)}
|
317 |
-
.ssbp--theme-5 .ssbp-reddit:active{box-shadow:0 4px 0 #cc3700,0 5px 6px rgba(0,0,0,0.33)}
|
318 |
-
.ssbp--theme-5 .ssbp-simplesharebuttons{background-color:#4582ec;box-shadow:0 8px 0 #1863e6,0 10px 12px rgba(0,0,0,0.33)}
|
319 |
-
.ssbp--theme-5 .ssbp-simplesharebuttons:active{box-shadow:0 4px 0 #1863e6,0 5px 6px rgba(0,0,0,0.33)}
|
320 |
-
.ssbp--theme-5 .ssbp-stumbleupon{background-color:#eb4924;box-shadow:0 8px 0 #ca3412,0 10px 12px rgba(0,0,0,0.33)}
|
321 |
-
.ssbp--theme-5 .ssbp-stumbleupon:active{box-shadow:0 4px 0 #ca3412,0 5px 6px rgba(0,0,0,0.33)}
|
322 |
-
.ssbp--theme-5 .ssbp-tumblr{background-color:#2c4762;box-shadow:0 8px 0 #1c2e3f,0 10px 12px rgba(0,0,0,0.33)}
|
323 |
-
.ssbp--theme-5 .ssbp-tumblr:active{box-shadow:0 4px 0 #1c2e3f,0 5px 6px rgba(0,0,0,0.33)}
|
324 |
-
.ssbp--theme-5 .ssbp-twitter{background-color:#00a9f1;box-shadow:0 8px 0 #0085be,0 10px 12px rgba(0,0,0,0.33)}
|
325 |
-
.ssbp--theme-5 .ssbp-twitter:active{box-shadow:0 4px 0 #0085be,0 5px 6px rgba(0,0,0,0.33)}
|
326 |
-
.ssbp--theme-5 .ssbp-vk{background-color:#45668e;box-shadow:0 8px 0 #344d6c,0 10px 12px rgba(0,0,0,0.33)}
|
327 |
-
.ssbp--theme-5 .ssbp-vk:active{box-shadow:0 4px 0 #344d6c,0 5px 6px rgba(0,0,0,0.33)}
|
328 |
-
.ssbp--theme-5 .ssbp-whatsapp{background-color:#34af23;box-shadow:0 8px 0 #27851b,0 10px 12px rgba(0,0,0,0.33)}
|
329 |
-
.ssbp--theme-5 .ssbp-whatsapp:active{box-shadow:0 4px 0 #27851b,0 5px 6px rgba(0,0,0,0.33)}
|
330 |
-
.ssbp--theme-5 .ssbp-yummly{background-color:#e16120;box-shadow:0 8px 0 #b64d18,0 10px 12px rgba(0,0,0,0.33)}
|
331 |
-
.ssbp--theme-5 .ssbp-yummly:active{box-shadow:0 4px 0 #b64d18,0 5px 6px rgba(0,0,0,0.33)}
|
332 |
-
.ssbp--theme-5 .ssbp-xing{background-color:#026466;box-shadow:0 8px 0 #013334,0 10px 12px rgba(0,0,0,0.33)}
|
333 |
-
.ssbp--theme-5 .ssbp-xing:active{box-shadow:0 4px 0 #013334,0 5px 6px rgba(0,0,0,0.33)}
|
334 |
-
.ssbp--theme-5 .ssbp-each-share{padding-top:3px;text-align:center;font-size:12px}
|
335 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
336 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
337 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
338 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
339 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
340 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 12px !important;display:table-cell !important;width:auto;height:auto}
|
341 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
342 |
-
.ssbp--theme-6[class*="ssbp--fixed"] .ssbp-container{background-color:rgba(255,255,255,0.8);padding:6px}
|
343 |
-
.ssbp--theme-6 .ssbp-btn{width:3em;height:3em;line-height:3em;border:2px solid #fff;border-radius:50%;background-color:#fff;-webkit-transition:.25s;transition:.25s}
|
344 |
-
.ssbp--theme-6 .ssbp-btn:hover,.ssbp--theme-6 .ssbp-btn:focus,.ssbp--theme-6 .ssbp-btn:active{color:#fff}
|
345 |
-
.ssbp--theme-6 .ssbp-list li{margin-left:12px}.ssbp--theme-6 .ssbp-buffer{border-color:#272727;color:#272727}
|
346 |
-
.ssbp--theme-6 .ssbp-buffer:hover,.ssbp--theme-6 .ssbp-buffer:focus,.ssbp--theme-6 .ssbp-buffer:active{background-color:#272727}
|
347 |
-
.ssbp--theme-6 .ssbp-buffer+.ssbp-each-share{color:#272727;border-color:#272727}.ssbp--theme-6 .ssbp-diggit{border-color:#14589e;color:#14589e}
|
348 |
-
.ssbp--theme-6 .ssbp-diggit:hover,.ssbp--theme-6 .ssbp-diggit:focus,.ssbp--theme-6 .ssbp-diggit:active{background-color:#14589e}
|
349 |
-
.ssbp--theme-6 .ssbp-diggit+.ssbp-each-share{color:#14589e;border-color:#14589e}.ssbp--theme-6 .ssbp-email{border-color:#787878;color:#787878}
|
350 |
-
.ssbp--theme-6 .ssbp-email:hover,.ssbp--theme-6 .ssbp-email:focus,.ssbp--theme-6 .ssbp-email:active{background-color:#787878}
|
351 |
-
.ssbp--theme-6 .ssbp-email+.ssbp-each-share{color:#787878;border-color:#787878}.ssbp--theme-6 .ssbp-ellipsis{border-color:#4582ec;color:#4582ec}
|
352 |
-
.ssbp--theme-6 .ssbp-ellipsis:hover,.ssbp--theme-6 .ssbp-ellipsis:focus,.ssbp--theme-6 .ssbp-ellipsis:active{background-color:#4582ec}
|
353 |
-
.ssbp--theme-6 .ssbp-ellipsis+.ssbp-each-share{color:#4582ec;border-color:#4582ec}
|
354 |
-
.ssbp--theme-6 .ssbp-facebook{border-color:#3b5998;color:#3b5998}.ssbp--theme-6 .ssbp-facebook:hover,.ssbp--theme-6 .ssbp-facebook:focus,.ssbp--theme-6 .ssbp-facebook:active{background-color:#3b5998}
|
355 |
-
.ssbp--theme-6 .ssbp-facebook+.ssbp-each-share{color:#3b5998;border-color:#3b5998}
|
356 |
-
.ssbp--theme-6 .ssbp-facebook_save{border-color:#3b5998;color:#3b5998}.ssbp--theme-6 .ssbp-facebook_save:hover,.ssbp--theme-6 .ssbp-facebook_save:focus,.ssbp--theme-6 .ssbp-facebook_save:active{background-color:#3b5998}
|
357 |
-
.ssbp--theme-6 .ssbp-facebook_save+.ssbp-each-share{color:#3b5998;border-color:#3b5998}
|
358 |
-
.ssbp--theme-6 .ssbp-facebook-messenger{border-color:#0084ff;color:#0084ff}.ssbp--theme-6 .ssbp-facebook-messenger:hover,.ssbp--theme-6 .ssbp-facebook-messenger:focus,.ssbp--theme-6 .ssbp-facebook-messenger:active{background-color:#0084ff}
|
359 |
-
.ssbp--theme-6 .ssbp-facebook-messenger+.ssbp-each-share{color:#0084ff;border-color:#0084ff}
|
360 |
-
.ssbp--theme-6 .ssbp-flattr{border-color:#f67c1a;color:#f67c1a}.ssbp--theme-6 .ssbp-flattr:hover,.ssbp--theme-6 .ssbp-flattr:focus,.ssbp--theme-6 .ssbp-flattr:active{background-color:#f67c1a}
|
361 |
-
.ssbp--theme-6 .ssbp-flattr+.ssbp-each-share{color:#f67c1a;border-color:#f67c1a}.ssbp--theme-6 .ssbp-google{border-color:#dc4e41;color:#dc4e41}
|
362 |
-
.ssbp--theme-6 .ssbp-google:hover,.ssbp--theme-6 .ssbp-google:focus,.ssbp--theme-6 .ssbp-google:active{background-color:#dc4e41}
|
363 |
-
.ssbp--theme-6 .ssbp-google+.ssbp-each-share{color:#dc4e41;border-color:#dc4e41}.ssbp--theme-6 .ssbp-linkedin{border-color:#007bb6;color:#007bb6}
|
364 |
-
.ssbp--theme-6 .ssbp-linkedin:hover,.ssbp--theme-6 .ssbp-linkedin:focus,.ssbp--theme-6 .ssbp-linkedin:active{background-color:#007bb6}
|
365 |
-
.ssbp--theme-6 .ssbp-linkedin+.ssbp-each-share{color:#007bb6;border-color:#007bb6}
|
366 |
-
.ssbp--theme-6 .ssbp-pinterest{border-color:#ce1a19;color:#ce1a19}.ssbp--theme-6 .ssbp-pinterest:hover,.ssbp--theme-6 .ssbp-pinterest:focus,.ssbp--theme-6 .ssbp-pinterest:active{background-color:#ce1a19}
|
367 |
-
.ssbp--theme-6 .ssbp-pinterest+.ssbp-each-share{color:#ce1a19;border-color:#ce1a19}
|
368 |
-
.ssbp--theme-6 .ssbp-print{border-color:#1f6b43;color:#1f6b43}.ssbp--theme-6 .ssbp-print:hover,.ssbp--theme-6 .ssbp-print:focus,.ssbp--theme-6 .ssbp-print:active{background-color:#1f6b43}
|
369 |
-
.ssbp--theme-6 .ssbp-print+.ssbp-each-share{color:#1f6b43;border-color:#1f6b43}.ssbp--theme-6 .ssbp-reddit{border-color:#ff4500;color:#ff4500}
|
370 |
-
.ssbp--theme-6 .ssbp-reddit:hover,.ssbp--theme-6 .ssbp-reddit:focus,.ssbp--theme-6 .ssbp-reddit:active{background-color:#ff4500}
|
371 |
-
.ssbp--theme-6 .ssbp-reddit+.ssbp-each-share{color:#ff4500;border-color:#ff4500}.ssbp--theme-6 .ssbp-simplesharebuttons{border-color:#4582ec;color:#4582ec}
|
372 |
-
.ssbp--theme-6 .ssbp-simplesharebuttons:hover,.ssbp--theme-6 .ssbp-simplesharebuttons:focus,.ssbp--theme-6 .ssbp-simplesharebuttons:active{background-color:#4582ec}
|
373 |
-
.ssbp--theme-6 .ssbp-simplesharebuttons+.ssbp-each-share{color:#4582ec;border-color:#4582ec}
|
374 |
-
.ssbp--theme-6 .ssbp-stumbleupon{border-color:#eb4924;color:#eb4924}.ssbp--theme-6 .ssbp-stumbleupon:hover,.ssbp--theme-6 .ssbp-stumbleupon:focus,.ssbp--theme-6 .ssbp-stumbleupon:active{background-color:#eb4924}
|
375 |
-
.ssbp--theme-6 .ssbp-stumbleupon+.ssbp-each-share{color:#eb4924;border-color:#eb4924}
|
376 |
-
.ssbp--theme-6 .ssbp-tumblr{border-color:#2c4762;color:#2c4762}.ssbp--theme-6 .ssbp-tumblr:hover,.ssbp--theme-6 .ssbp-tumblr:focus,.ssbp--theme-6 .ssbp-tumblr:active{background-color:#2c4762}
|
377 |
-
.ssbp--theme-6 .ssbp-tumblr+.ssbp-each-share{color:#2c4762;border-color:#2c4762}.ssbp--theme-6 .ssbp-twitter{border-color:#00a9f1;color:#00a9f1}
|
378 |
-
.ssbp--theme-6 .ssbp-twitter:hover,.ssbp--theme-6 .ssbp-twitter:focus,.ssbp--theme-6 .ssbp-twitter:active{background-color:#00a9f1}
|
379 |
-
.ssbp--theme-6 .ssbp-twitter+.ssbp-each-share{color:#00a9f1;border-color:#00a9f1}
|
380 |
-
.ssbp--theme-6 .ssbp-vk{border-color:#45668e;color:#45668e}.ssbp--theme-6 .ssbp-vk:hover,.ssbp--theme-6 .ssbp-vk:focus,.ssbp--theme-6 .ssbp-vk:active{background-color:#45668e}
|
381 |
-
.ssbp--theme-6 .ssbp-vk+.ssbp-each-share{color:#45668e;border-color:#45668e}.ssbp--theme-6 .ssbp-whatsapp{border-color:#34af23;color:#34af23}
|
382 |
-
.ssbp--theme-6 .ssbp-whatsapp:hover,.ssbp--theme-6 .ssbp-whatsapp:focus,.ssbp--theme-6 .ssbp-whatsapp:active{background-color:#34af23}
|
383 |
-
.ssbp--theme-6 .ssbp-whatsapp+.ssbp-each-share{color:#34af23;border-color:#34af23}
|
384 |
-
.ssbp--theme-6 .ssbp-yummly{border-color:#e16120;color:#e16120}.ssbp--theme-6 .ssbp-yummly:hover,.ssbp--theme-6 .ssbp-yummly:focus,.ssbp--theme-6 .ssbp-yummly:active{background-color:#e16120}
|
385 |
-
.ssbp--theme-6 .ssbp-yummly+.ssbp-each-share{color:#e16120;border-color:#e16120}.ssbp--theme-6 .ssbp-xing{border-color:#026466;color:#026466}
|
386 |
-
.ssbp--theme-6 .ssbp-xing:hover,.ssbp--theme-6 .ssbp-xing:focus,.ssbp--theme-6 .ssbp-xing:active{background-color:#026466}
|
387 |
-
.ssbp--theme-6 .ssbp-xing+.ssbp-each-share{color:#026466;border-color:#026466}.ssbp--theme-6 .ssbp-each-share{position:absolute;top:0;left:100%;z-index:11;margin-left:-12px;padding:2px;border:1px solid #fff;background-color:#fff;border-radius:6px;font-size:10px;color:#FFF}
|
388 |
-
.ssbp--theme-6.ssbp--fixed-right .ssbp-each-share{left:auto;right:100%;margin-left:0;margin-right:-12px}
|
389 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
390 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
391 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
392 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
393 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
394 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 6px !important;display:table-cell !important;width:auto;height:auto}
|
395 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
396 |
-
.ssbp--theme-7 .ssbp-list li{margin-left:6px}.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12px}
|
397 |
-
.ssbp--theme-7 .ssbp-btn{display:block;border:2px solid #fff;color:#fff;background-color:#fff;-webkit-transition:background-color .25s;transition:background-color .25s}
|
398 |
-
.ssbp--theme-7 .ssbp-btn:before{vertical-align:middle}.ssbp--theme-7 .ssbp-buffer{border-color:#272727;color:#272727}
|
399 |
-
.ssbp--theme-7 .ssbp-buffer:visited{color:#272727}.ssbp--theme-7 .ssbp-buffer:hover,.ssbp--theme-7 .ssbp-buffer:focus,.ssbp--theme-7 .ssbp-buffer:active{background-color:#272727;border-bottom:2px #272727 solid;color:#fff}
|
400 |
-
.ssbp--theme-7 .ssbp-buffer+.ssbp-each-share{color:#272727}.ssbp--theme-7 .ssbp-diggit{border-color:#14589e;color:#14589e}
|
401 |
-
.ssbp--theme-7 .ssbp-diggit:visited{color:#14589e}.ssbp--theme-7 .ssbp-diggit:hover,.ssbp--theme-7 .ssbp-diggit:focus,.ssbp--theme-7 .ssbp-diggit:active{background-color:#14589e;border-bottom:2px #14589e solid;color:#fff}
|
402 |
-
.ssbp--theme-7 .ssbp-diggit+.ssbp-each-share{color:#14589e}.ssbp--theme-7 .ssbp-email{border-color:#787878;color:#787878}
|
403 |
-
.ssbp--theme-7 .ssbp-email:visited{color:#787878}.ssbp--theme-7 .ssbp-email:hover,.ssbp--theme-7 .ssbp-email:focus,.ssbp--theme-7 .ssbp-email:active{background-color:#787878;border-bottom:2px #787878 solid;color:#fff}
|
404 |
-
.ssbp--theme-7 .ssbp-email+.ssbp-each-share{color:#787878}.ssbp--theme-7 .ssbp-ellipsis{border-color:#4582ec;color:#4582ec}
|
405 |
-
.ssbp--theme-7 .ssbp-ellipsis:visited{color:#4582ec}.ssbp--theme-7 .ssbp-ellipsis:hover,.ssbp--theme-7 .ssbp-ellipsis:focus,.ssbp--theme-7 .ssbp-ellipsis:active{background-color:#4582ec;border-bottom:2px #4582ec solid;color:#fff}
|
406 |
-
.ssbp--theme-7 .ssbp-ellipsis+.ssbp-each-share{color:#4582ec}.ssbp--theme-7 .ssbp-facebook{border-color:#3b5998;color:#3b5998}
|
407 |
-
.ssbp--theme-7 .ssbp-facebook:visited{color:#3b5998}.ssbp--theme-7 .ssbp-facebook:hover,.ssbp--theme-7 .ssbp-facebook:focus,.ssbp--theme-7 .ssbp-facebook:active{background-color:#3b5998;border-bottom:2px #3b5998 solid;color:#fff}
|
408 |
-
.ssbp--theme-7 .ssbp-facebook+.ssbp-each-share{color:#3b5998}.ssbp--theme-7 .ssbp-facebook_save{border-color:#3b5998;color:#3b5998}
|
409 |
-
.ssbp--theme-7 .ssbp-facebook_save:visited{color:#3b5998}.ssbp--theme-7 .ssbp-facebook_save:hover,.ssbp--theme-7 .ssbp-facebook_save:focus,.ssbp--theme-7 .ssbp-facebook_save:active{background-color:#3b5998;border-bottom:2px #3b5998 solid;color:#fff}
|
410 |
-
.ssbp--theme-7 .ssbp-facebook_save+.ssbp-each-share{color:#3b5998}.ssbp--theme-7 .ssbp-facebook-messenger{border-color:#0084ff;color:#0084ff}
|
411 |
-
.ssbp--theme-7 .ssbp-facebook-messenger:visited{color:#0084ff}.ssbp--theme-7 .ssbp-facebook-messenger:hover,.ssbp--theme-7 .ssbp-facebook-messenger:focus,.ssbp--theme-7 .ssbp-facebook-messenger:active{background-color:#0084ff;border-bottom:2px #0084ff solid;color:#fff}
|
412 |
-
.ssbp--theme-7 .ssbp-facebook-messenger+.ssbp-each-share{color:#0084ff}.ssbp--theme-7 .ssbp-flattr{border-color:#f67c1a;color:#f67c1a}
|
413 |
-
.ssbp--theme-7 .ssbp-flattr:visited{color:#f67c1a}.ssbp--theme-7 .ssbp-flattr:hover,.ssbp--theme-7 .ssbp-flattr:focus,.ssbp--theme-7 .ssbp-flattr:active{background-color:#f67c1a;border-bottom:2px #f67c1a solid;color:#fff}
|
414 |
-
.ssbp--theme-7 .ssbp-flattr+.ssbp-each-share{color:#f67c1a}.ssbp--theme-7 .ssbp-google{border-color:#dc4e41;color:#dc4e41}
|
415 |
-
.ssbp--theme-7 .ssbp-google:visited{color:#dc4e41}.ssbp--theme-7 .ssbp-google:hover,.ssbp--theme-7 .ssbp-google:focus,.ssbp--theme-7 .ssbp-google:active{background-color:#dc4e41;border-bottom:2px #dc4e41 solid;color:#fff}
|
416 |
-
.ssbp--theme-7 .ssbp-google+.ssbp-each-share{color:#dc4e41}.ssbp--theme-7 .ssbp-linkedin{border-color:#007bb6;color:#007bb6}
|
417 |
-
.ssbp--theme-7 .ssbp-linkedin:visited{color:#007bb6}.ssbp--theme-7 .ssbp-linkedin:hover,.ssbp--theme-7 .ssbp-linkedin:focus,.ssbp--theme-7 .ssbp-linkedin:active{background-color:#007bb6;border-bottom:2px #007bb6 solid;color:#fff}
|
418 |
-
.ssbp--theme-7 .ssbp-linkedin+.ssbp-each-share{color:#007bb6}.ssbp--theme-7 .ssbp-pinterest{border-color:#ce1a19;color:#ce1a19}
|
419 |
-
.ssbp--theme-7 .ssbp-pinterest:visited{color:#ce1a19}.ssbp--theme-7 .ssbp-pinterest:hover,.ssbp--theme-7 .ssbp-pinterest:focus,.ssbp--theme-7 .ssbp-pinterest:active{background-color:#ce1a19;border-bottom:2px #ce1a19 solid;color:#fff}
|
420 |
-
.ssbp--theme-7 .ssbp-pinterest+.ssbp-each-share{color:#ce1a19}.ssbp--theme-7 .ssbp-print{border-color:#1f6b43;color:#1f6b43}
|
421 |
-
.ssbp--theme-7 .ssbp-print:visited{color:#1f6b43}.ssbp--theme-7 .ssbp-print:hover,.ssbp--theme-7 .ssbp-print:focus,.ssbp--theme-7 .ssbp-print:active{background-color:#1f6b43;border-bottom:2px #1f6b43 solid;color:#fff}
|
422 |
-
.ssbp--theme-7 .ssbp-print+.ssbp-each-share{color:#1f6b43}.ssbp--theme-7 .ssbp-reddit{border-color:#ff4500;color:#ff4500}
|
423 |
-
.ssbp--theme-7 .ssbp-reddit:visited{color:#ff4500}.ssbp--theme-7 .ssbp-reddit:hover,.ssbp--theme-7 .ssbp-reddit:focus,.ssbp--theme-7 .ssbp-reddit:active{background-color:#ff4500;border-bottom:2px #ff4500 solid;color:#fff}
|
424 |
-
.ssbp--theme-7 .ssbp-reddit+.ssbp-each-share{color:#ff4500}.ssbp--theme-7 .ssbp-simplesharebuttons{border-color:#4582ec;color:#4582ec}
|
425 |
-
.ssbp--theme-7 .ssbp-simplesharebuttons:visited{color:#4582ec}.ssbp--theme-7 .ssbp-simplesharebuttons:hover,.ssbp--theme-7 .ssbp-simplesharebuttons:focus,.ssbp--theme-7 .ssbp-simplesharebuttons:active{background-color:#4582ec;border-bottom:2px #4582ec solid;color:#fff}
|
426 |
-
.ssbp--theme-7 .ssbp-simplesharebuttons+.ssbp-each-share{color:#4582ec}.ssbp--theme-7 .ssbp-stumbleupon{border-color:#eb4924;color:#eb4924}
|
427 |
-
.ssbp--theme-7 .ssbp-stumbleupon:visited{color:#eb4924}.ssbp--theme-7 .ssbp-stumbleupon:hover,.ssbp--theme-7 .ssbp-stumbleupon:focus,.ssbp--theme-7 .ssbp-stumbleupon:active{background-color:#eb4924;border-bottom:2px #eb4924 solid;color:#fff}
|
428 |
-
.ssbp--theme-7 .ssbp-stumbleupon+.ssbp-each-share{color:#eb4924}.ssbp--theme-7 .ssbp-tumblr{border-color:#2c4762;color:#2c4762}
|
429 |
-
.ssbp--theme-7 .ssbp-tumblr:visited{color:#2c4762}.ssbp--theme-7 .ssbp-tumblr:hover,.ssbp--theme-7 .ssbp-tumblr:focus,.ssbp--theme-7 .ssbp-tumblr:active{background-color:#2c4762;border-bottom:2px #2c4762 solid;color:#fff}
|
430 |
-
.ssbp--theme-7 .ssbp-tumblr+.ssbp-each-share{color:#2c4762}.ssbp--theme-7 .ssbp-twitter{border-color:#00a9f1;color:#00a9f1}
|
431 |
-
.ssbp--theme-7 .ssbp-twitter:visited{color:#00a9f1}.ssbp--theme-7 .ssbp-twitter:hover,.ssbp--theme-7 .ssbp-twitter:focus,.ssbp--theme-7 .ssbp-twitter:active{background-color:#00a9f1;border-bottom:2px #00a9f1 solid;color:#fff}
|
432 |
-
.ssbp--theme-7 .ssbp-twitter+.ssbp-each-share{color:#00a9f1}.ssbp--theme-7 .ssbp-vk{border-color:#45668e;color:#45668e}
|
433 |
-
.ssbp--theme-7 .ssbp-vk:visited{color:#45668e}.ssbp--theme-7 .ssbp-vk:hover,.ssbp--theme-7 .ssbp-vk:focus,.ssbp--theme-7 .ssbp-vk:active{background-color:#45668e;border-bottom:2px #45668e solid;color:#fff}
|
434 |
-
.ssbp--theme-7 .ssbp-vk+.ssbp-each-share{color:#45668e}.ssbp--theme-7 .ssbp-whatsapp{border-color:#34af23;color:#34af23}
|
435 |
-
.ssbp--theme-7 .ssbp-whatsapp:visited{color:#34af23}.ssbp--theme-7 .ssbp-whatsapp:hover,.ssbp--theme-7 .ssbp-whatsapp:focus,.ssbp--theme-7 .ssbp-whatsapp:active{background-color:#34af23;border-bottom:2px #34af23 solid;color:#fff}
|
436 |
-
.ssbp--theme-7 .ssbp-whatsapp+.ssbp-each-share{color:#34af23}.ssbp--theme-7 .ssbp-yummly{border-color:#e16120;color:#e16120}
|
437 |
-
.ssbp--theme-7 .ssbp-yummly:visited{color:#e16120}.ssbp--theme-7 .ssbp-yummly:hover,.ssbp--theme-7 .ssbp-yummly:focus,.ssbp--theme-7 .ssbp-yummly:active{background-color:#e16120;border-bottom:2px #e16120 solid;color:#fff}
|
438 |
-
.ssbp--theme-7 .ssbp-yummly+.ssbp-each-share{color:#e16120}.ssbp--theme-7 .ssbp-xing{border-color:#026466;color:#026466}
|
439 |
-
.ssbp--theme-7 .ssbp-xing:visited{color:#026466}.ssbp--theme-7 .ssbp-xing:hover,.ssbp--theme-7 .ssbp-xing:focus,.ssbp--theme-7 .ssbp-xing:active{background-color:#026466;border-bottom:2px #026466 solid;color:#fff}
|
440 |
-
.ssbp--theme-7 .ssbp-xing+.ssbp-each-share{color:#026466}.ssbp--theme-7 .ssbp-each-share{padding-top:3px;text-align:center;font-size:12px}
|
441 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
442 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
443 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
444 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
445 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
446 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 6px !important;display:table-cell !important;width:auto;height:auto}
|
447 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
448 |
-
.ssbp--theme-8 .ssbp-list li{margin-left:6px}.ssbp--theme-8 .ssbp-btn:hover,.ssbp--theme-8 .ssbp-btn:focus,.ssbp--theme-8 .ssbp-btn:active{border-bottom:3px solid #272727}
|
449 |
-
.ssbp--theme-8 .ssbp-btn,.ssbp--theme-8 .ssbp-btn:visited{width:4em;height:3em;line-height:3em;position:relative;border:3px solid #272727;background-color:#fff;color:#272727;-webkit-transition:.25s;transition:.25s}
|
450 |
-
.ssbp--theme-8 .ssbp-btn:hover,.ssbp--theme-8 .ssbp-btn:focus,.ssbp--theme-8 .ssbp-btn:active,.ssbp--theme-8 .ssbp-btn:visited:hover,.ssbp--theme-8 .ssbp-btn:visited:focus,.ssbp--theme-8 .ssbp-btn:visited:active{background-color:#272727;color:#fff}
|
451 |
-
.ssbp--theme-8 .ssbp-each-share{padding-top:3px;text-align:center;font-size:12px}
|
452 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
453 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
454 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
455 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
456 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
457 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 6px !important;display:table-cell !important;width:auto;height:auto}
|
458 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
459 |
-
.ssbp--theme-9 .ssbp-list li{margin-left:6px}.ssbp--theme-9 .ssbp-btn{display:block;padding:.5em 1em}
|
460 |
-
.ssbp--theme-9 .ssbp-btn:hover,.ssbp--theme-9 .ssbp-btn:focus,.ssbp--theme-9 .ssbp-btn:active{opacity:.66}
|
461 |
-
.ssbp--theme-9 .ssbp-buffer{border-bottom:5px solid #272727;color:#272727}.ssbp--theme-9 .ssbp-buffer:hover,.ssbp--theme-9 .ssbp-buffer:focus,.ssbp--theme-9 .ssbp-buffer:active{border-bottom:5px solid #272727}
|
462 |
-
.ssbp--theme-9 .ssbp-buffer:hover,.ssbp--theme-9 .ssbp-buffer:focus,.ssbp--theme-9 .ssbp-buffer:active,.ssbp--theme-9 .ssbp-buffer:visited{color:#272727}
|
463 |
-
.ssbp--theme-9 .ssbp-buffer+.ssbp-each-share{color:#272727}.ssbp--theme-9 .ssbp-diggit{border-bottom:5px solid #14589e;color:#14589e}
|
464 |
-
.ssbp--theme-9 .ssbp-diggit:hover,.ssbp--theme-9 .ssbp-diggit:focus,.ssbp--theme-9 .ssbp-diggit:active{border-bottom:5px solid #14589e}
|
465 |
-
.ssbp--theme-9 .ssbp-diggit:hover,.ssbp--theme-9 .ssbp-diggit:focus,.ssbp--theme-9 .ssbp-diggit:active,.ssbp--theme-9 .ssbp-diggit:visited{color:#14589e}
|
466 |
-
.ssbp--theme-9 .ssbp-diggit+.ssbp-each-share{color:#14589e}.ssbp--theme-9 .ssbp-email{border-bottom:5px solid #787878;color:#787878}
|
467 |
-
.ssbp--theme-9 .ssbp-email:hover,.ssbp--theme-9 .ssbp-email:focus,.ssbp--theme-9 .ssbp-email:active{border-bottom:5px solid #787878}
|
468 |
-
.ssbp--theme-9 .ssbp-email:hover,.ssbp--theme-9 .ssbp-email:focus,.ssbp--theme-9 .ssbp-email:active,.ssbp--theme-9 .ssbp-email:visited{color:#787878}
|
469 |
-
.ssbp--theme-9 .ssbp-email+.ssbp-each-share{color:#787878}.ssbp--theme-9 .ssbp-ellipsis{border-bottom:5px solid #4582ec;color:#4582ec}
|
470 |
-
.ssbp--theme-9 .ssbp-ellipsis:hover,.ssbp--theme-9 .ssbp-ellipsis:focus,.ssbp--theme-9 .ssbp-ellipsis:active{border-bottom:5px solid #4582ec}
|
471 |
-
.ssbp--theme-9 .ssbp-ellipsis:hover,.ssbp--theme-9 .ssbp-ellipsis:focus,.ssbp--theme-9 .ssbp-ellipsis:active,.ssbp--theme-9 .ssbp-ellipsis:visited{color:#4582ec}
|
472 |
-
.ssbp--theme-9 .ssbp-ellipsis+.ssbp-each-share{color:#4582ec}.ssbp--theme-9 .ssbp-facebook{border-bottom:5px solid #3b5998;color:#3b5998}
|
473 |
-
.ssbp--theme-9 .ssbp-facebook:hover,.ssbp--theme-9 .ssbp-facebook:focus,.ssbp--theme-9 .ssbp-facebook:active{border-bottom:5px solid #3b5998}
|
474 |
-
.ssbp--theme-9 .ssbp-facebook:hover,.ssbp--theme-9 .ssbp-facebook:focus,.ssbp--theme-9 .ssbp-facebook:active,.ssbp--theme-9 .ssbp-facebook:visited{color:#3b5998}
|
475 |
-
.ssbp--theme-9 .ssbp-facebook+.ssbp-each-share{color:#3b5998}.ssbp--theme-9 .ssbp-facebook_save{border-bottom:5px solid #3b5998;color:#3b5998}
|
476 |
-
.ssbp--theme-9 .ssbp-facebook_save:hover,.ssbp--theme-9 .ssbp-facebook_save:focus,.ssbp--theme-9 .ssbp-facebook_save:active{border-bottom:5px solid #3b5998}
|
477 |
-
.ssbp--theme-9 .ssbp-facebook_save:hover,.ssbp--theme-9 .ssbp-facebook_save:focus,.ssbp--theme-9 .ssbp-facebook_save:active,.ssbp--theme-9 .ssbp-facebook_save:visited{color:#3b5998}
|
478 |
-
.ssbp--theme-9 .ssbp-facebook_save+.ssbp-each-share{color:#3b5998}.ssbp--theme-9 .ssbp-facebook-messenger{border-bottom:5px solid #0084ff;color:#0084ff}
|
479 |
-
.ssbp--theme-9 .ssbp-facebook-messenger:hover,.ssbp--theme-9 .ssbp-facebook-messenger:focus,.ssbp--theme-9 .ssbp-facebook-messenger:active{border-bottom:5px solid #0084ff}
|
480 |
-
.ssbp--theme-9 .ssbp-facebook-messenger:hover,.ssbp--theme-9 .ssbp-facebook-messenger:focus,.ssbp--theme-9 .ssbp-facebook-messenger:active,.ssbp--theme-9 .ssbp-facebook-messenger:visited{color:#0084ff}
|
481 |
-
.ssbp--theme-9 .ssbp-facebook-messenger+.ssbp-each-share{color:#0084ff}.ssbp--theme-9 .ssbp-flattr{border-bottom:5px solid #f67c1a;color:#f67c1a}
|
482 |
-
.ssbp--theme-9 .ssbp-flattr:hover,.ssbp--theme-9 .ssbp-flattr:focus,.ssbp--theme-9 .ssbp-flattr:active{border-bottom:5px solid #f67c1a}
|
483 |
-
.ssbp--theme-9 .ssbp-flattr:hover,.ssbp--theme-9 .ssbp-flattr:focus,.ssbp--theme-9 .ssbp-flattr:active,.ssbp--theme-9 .ssbp-flattr:visited{color:#f67c1a}
|
484 |
-
.ssbp--theme-9 .ssbp-flattr+.ssbp-each-share{color:#f67c1a}.ssbp--theme-9 .ssbp-google{border-bottom:5px solid #dc4e41;color:#dc4e41}
|
485 |
-
.ssbp--theme-9 .ssbp-google:hover,.ssbp--theme-9 .ssbp-google:focus,.ssbp--theme-9 .ssbp-google:active{border-bottom:5px solid #dc4e41}
|
486 |
-
.ssbp--theme-9 .ssbp-google:hover,.ssbp--theme-9 .ssbp-google:focus,.ssbp--theme-9 .ssbp-google:active,.ssbp--theme-9 .ssbp-google:visited{color:#dc4e41}
|
487 |
-
.ssbp--theme-9 .ssbp-google+.ssbp-each-share{color:#dc4e41}.ssbp--theme-9 .ssbp-linkedin{border-bottom:5px solid #007bb6;color:#007bb6}
|
488 |
-
.ssbp--theme-9 .ssbp-linkedin:hover,.ssbp--theme-9 .ssbp-linkedin:focus,.ssbp--theme-9 .ssbp-linkedin:active{border-bottom:5px solid #007bb6}
|
489 |
-
.ssbp--theme-9 .ssbp-linkedin:hover,.ssbp--theme-9 .ssbp-linkedin:focus,.ssbp--theme-9 .ssbp-linkedin:active,.ssbp--theme-9 .ssbp-linkedin:visited{color:#007bb6}
|
490 |
-
.ssbp--theme-9 .ssbp-linkedin+.ssbp-each-share{color:#007bb6}.ssbp--theme-9 .ssbp-pinterest{border-bottom:5px solid #ce1a19;color:#ce1a19}
|
491 |
-
.ssbp--theme-9 .ssbp-pinterest:hover,.ssbp--theme-9 .ssbp-pinterest:focus,.ssbp--theme-9 .ssbp-pinterest:active{border-bottom:5px solid #ce1a19}
|
492 |
-
.ssbp--theme-9 .ssbp-pinterest:hover,.ssbp--theme-9 .ssbp-pinterest:focus,.ssbp--theme-9 .ssbp-pinterest:active,.ssbp--theme-9 .ssbp-pinterest:visited{color:#ce1a19}
|
493 |
-
.ssbp--theme-9 .ssbp-pinterest+.ssbp-each-share{color:#ce1a19}.ssbp--theme-9 .ssbp-print{border-bottom:5px solid #1f6b43;color:#1f6b43}
|
494 |
-
.ssbp--theme-9 .ssbp-print:hover,.ssbp--theme-9 .ssbp-print:focus,.ssbp--theme-9 .ssbp-print:active{border-bottom:5px solid #1f6b43}
|
495 |
-
.ssbp--theme-9 .ssbp-print:hover,.ssbp--theme-9 .ssbp-print:focus,.ssbp--theme-9 .ssbp-print:active,.ssbp--theme-9 .ssbp-print:visited{color:#1f6b43}
|
496 |
-
.ssbp--theme-9 .ssbp-print+.ssbp-each-share{color:#1f6b43}.ssbp--theme-9 .ssbp-reddit{border-bottom:5px solid #ff4500;color:#ff4500}
|
497 |
-
.ssbp--theme-9 .ssbp-reddit:hover,.ssbp--theme-9 .ssbp-reddit:focus,.ssbp--theme-9 .ssbp-reddit:active{border-bottom:5px solid #ff4500}
|
498 |
-
.ssbp--theme-9 .ssbp-reddit:hover,.ssbp--theme-9 .ssbp-reddit:focus,.ssbp--theme-9 .ssbp-reddit:active,.ssbp--theme-9 .ssbp-reddit:visited{color:#ff4500}
|
499 |
-
.ssbp--theme-9 .ssbp-reddit+.ssbp-each-share{color:#ff4500}.ssbp--theme-9 .ssbp-simplesharebuttons{border-bottom:5px solid #4582ec;color:#4582ec}
|
500 |
-
.ssbp--theme-9 .ssbp-simplesharebuttons:hover,.ssbp--theme-9 .ssbp-simplesharebuttons:focus,.ssbp--theme-9 .ssbp-simplesharebuttons:active{border-bottom:5px solid #4582ec}
|
501 |
-
.ssbp--theme-9 .ssbp-simplesharebuttons:hover,.ssbp--theme-9 .ssbp-simplesharebuttons:focus,.ssbp--theme-9 .ssbp-simplesharebuttons:active,.ssbp--theme-9 .ssbp-simplesharebuttons:visited{color:#4582ec}
|
502 |
-
.ssbp--theme-9 .ssbp-simplesharebuttons+.ssbp-each-share{color:#4582ec}.ssbp--theme-9 .ssbp-stumbleupon{border-bottom:5px solid #eb4924;color:#eb4924}
|
503 |
-
.ssbp--theme-9 .ssbp-stumbleupon:hover,.ssbp--theme-9 .ssbp-stumbleupon:focus,.ssbp--theme-9 .ssbp-stumbleupon:active{border-bottom:5px solid #eb4924}
|
504 |
-
.ssbp--theme-9 .ssbp-stumbleupon:hover,.ssbp--theme-9 .ssbp-stumbleupon:focus,.ssbp--theme-9 .ssbp-stumbleupon:active,.ssbp--theme-9 .ssbp-stumbleupon:visited{color:#eb4924}
|
505 |
-
.ssbp--theme-9 .ssbp-stumbleupon+.ssbp-each-share{color:#eb4924}.ssbp--theme-9 .ssbp-tumblr{border-bottom:5px solid #2c4762;color:#2c4762}
|
506 |
-
.ssbp--theme-9 .ssbp-tumblr:hover,.ssbp--theme-9 .ssbp-tumblr:focus,.ssbp--theme-9 .ssbp-tumblr:active{border-bottom:5px solid #2c4762}
|
507 |
-
.ssbp--theme-9 .ssbp-tumblr:hover,.ssbp--theme-9 .ssbp-tumblr:focus,.ssbp--theme-9 .ssbp-tumblr:active,.ssbp--theme-9 .ssbp-tumblr:visited{color:#2c4762}
|
508 |
-
.ssbp--theme-9 .ssbp-tumblr+.ssbp-each-share{color:#2c4762}.ssbp--theme-9 .ssbp-twitter{border-bottom:5px solid #00a9f1;color:#00a9f1}
|
509 |
-
.ssbp--theme-9 .ssbp-twitter:hover,.ssbp--theme-9 .ssbp-twitter:focus,.ssbp--theme-9 .ssbp-twitter:active{border-bottom:5px solid #00a9f1}
|
510 |
-
.ssbp--theme-9 .ssbp-twitter:hover,.ssbp--theme-9 .ssbp-twitter:focus,.ssbp--theme-9 .ssbp-twitter:active,.ssbp--theme-9 .ssbp-twitter:visited{color:#00a9f1}
|
511 |
-
.ssbp--theme-9 .ssbp-twitter+.ssbp-each-share{color:#00a9f1}.ssbp--theme-9 .ssbp-vk{border-bottom:5px solid #45668e;color:#45668e}
|
512 |
-
.ssbp--theme-9 .ssbp-vk:hover,.ssbp--theme-9 .ssbp-vk:focus,.ssbp--theme-9 .ssbp-vk:active{border-bottom:5px solid #45668e}
|
513 |
-
.ssbp--theme-9 .ssbp-vk:hover,.ssbp--theme-9 .ssbp-vk:focus,.ssbp--theme-9 .ssbp-vk:active,.ssbp--theme-9 .ssbp-vk:visited{color:#45668e}
|
514 |
-
.ssbp--theme-9 .ssbp-vk+.ssbp-each-share{color:#45668e}.ssbp--theme-9 .ssbp-whatsapp{border-bottom:5px solid #34af23;color:#34af23}
|
515 |
-
.ssbp--theme-9 .ssbp-whatsapp:hover,.ssbp--theme-9 .ssbp-whatsapp:focus,.ssbp--theme-9 .ssbp-whatsapp:active{border-bottom:5px solid #34af23}
|
516 |
-
.ssbp--theme-9 .ssbp-whatsapp:hover,.ssbp--theme-9 .ssbp-whatsapp:focus,.ssbp--theme-9 .ssbp-whatsapp:active,.ssbp--theme-9 .ssbp-whatsapp:visited{color:#34af23}
|
517 |
-
.ssbp--theme-9 .ssbp-whatsapp+.ssbp-each-share{color:#34af23}.ssbp--theme-9 .ssbp-yummly{border-bottom:5px solid #e16120;color:#e16120}
|
518 |
-
.ssbp--theme-9 .ssbp-yummly:hover,.ssbp--theme-9 .ssbp-yummly:focus,.ssbp--theme-9 .ssbp-yummly:active{border-bottom:5px solid #e16120}
|
519 |
-
.ssbp--theme-9 .ssbp-yummly:hover,.ssbp--theme-9 .ssbp-yummly:focus,.ssbp--theme-9 .ssbp-yummly:active,.ssbp--theme-9 .ssbp-yummly:visited{color:#e16120}
|
520 |
-
.ssbp--theme-9 .ssbp-yummly+.ssbp-each-share{color:#e16120}.ssbp--theme-9 .ssbp-xing{border-bottom:5px solid #026466;color:#026466}
|
521 |
-
.ssbp--theme-9 .ssbp-xing:hover,.ssbp--theme-9 .ssbp-xing:focus,.ssbp--theme-9 .ssbp-xing:active{border-bottom:5px solid #026466}
|
522 |
-
.ssbp--theme-9 .ssbp-xing:hover,.ssbp--theme-9 .ssbp-xing:focus,.ssbp--theme-9 .ssbp-xing:active,.ssbp--theme-9 .ssbp-xing:visited{color:#026466}
|
523 |
-
.ssbp--theme-9 .ssbp-xing+.ssbp-each-share{color:#026466}.ssbp--theme-9 .ssbp-each-share{padding-top:3px;text-align:center;font-size:12px}
|
524 |
-
.ssbp--theme-9 .ssbp-each-share:before{content:"("}.ssbp--theme-9 .ssbp-each-share:after{content:")"}
|
525 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
526 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
527 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
528 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
529 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
530 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
531 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
532 |
-
.ssbp--theme-10{overflow:hidden}.ssbp--theme-10 .ssbp-list li{margin:0}.ssbp--theme-10 .ssbp-btn{width:auto !important;height:auto !important;display:block;padding:.5em 1em;color:#fff;text-shadow:-1px -1px rgba(0,0,0,0.2);-webkit-transition:background-color .25s;transition:background-color .25s;border-bottom:0}
|
533 |
-
.ssbp--theme-10 .ssbp-btn:before{vertical-align:middle}.ssbp--theme-10 .ssbp-btn:active{box-shadow:inset 0 0 .5em rgba(0,0,0,0.33)}
|
534 |
-
.ssbp--theme-10 .ssbp-btn:hover,.ssbp--theme-10 .ssbp-btn:focus,.ssbp--theme-10 .ssbp-btn:active,.ssbp--theme-10 .ssbp-btn:visited{color:#fff}
|
535 |
-
.ssbp--theme-10.ssbp--centred .ssbp-input-url-div{position:relative;display:block;padding:10px}
|
536 |
-
.ssbp--theme-10.ssbp--centred .ssbp-input-url{width:100%;max-width:200px;border:1px solid #DDD;padding:8px 8px 8px 8px;font-size:20px;font-weight:400;line-height:1;color:#b3b3b3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}
|
537 |
-
.ssbp--theme-10.ssbp--centred .ssbp-total-shares{display:block;line-height:1}.ssbp--theme-10.ssbp--centred .ssbp-total-shares b{font-size:70px;color:#4582ec}
|
538 |
-
.ssbp--theme-10.ssbp--centred .ssbp-total-shares:after{content:'Shares';display:block;font-family:'Lato',sans-serif;font-weight:700;font-size:30px;text-transform:uppercase;color:#b3b3b3}
|
539 |
-
@media only screen and (min-width:481px){.ssbp--theme-10.ssbp--centred .ssbp-input-url-div{float:right;width:50%;padding:35px 20px;text-align:left}
|
540 |
-
.ssbp--theme-10.ssbp--centred .ssbp-total-shares{width:50%;text-align:right}}.ssbp--theme-10 .ssbp-buffer{background-color:#272727}
|
541 |
-
.ssbp--theme-10 .ssbp-buffer:hover,.ssbp--theme-10 .ssbp-buffer:focus,.ssbp--theme-10 .ssbp-buffer:active,.ssbp--theme-10 .ssbp-buffer+.ssbp-each-share{background-color:#0e0e0e}
|
542 |
-
.ssbp--theme-10 .ssbp-diggit{background-color:#14589e}.ssbp--theme-10 .ssbp-diggit:hover,.ssbp--theme-10 .ssbp-diggit:focus,.ssbp--theme-10 .ssbp-diggit:active,.ssbp--theme-10 .ssbp-diggit+.ssbp-each-share{background-color:#0e3f71}
|
543 |
-
.ssbp--theme-10 .ssbp-email{background-color:#787878}.ssbp--theme-10 .ssbp-email:hover,.ssbp--theme-10 .ssbp-email:focus,.ssbp--theme-10 .ssbp-email:active,.ssbp--theme-10 .ssbp-email+.ssbp-each-share{background-color:#5f5f5f}
|
544 |
-
.ssbp--theme-10 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-10 .ssbp-ellipsis:hover,.ssbp--theme-10 .ssbp-ellipsis:focus,.ssbp--theme-10 .ssbp-ellipsis:active,.ssbp--theme-10 .ssbp-ellipsis+.ssbp-each-share{background-color:#1863e6}
|
545 |
-
.ssbp--theme-10 .ssbp-facebook{background-color:#3b5998}.ssbp--theme-10 .ssbp-facebook:hover,.ssbp--theme-10 .ssbp-facebook:focus,.ssbp--theme-10 .ssbp-facebook:active,.ssbp--theme-10 .ssbp-facebook+.ssbp-each-share{background-color:#2d4373}
|
546 |
-
.ssbp--theme-10 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-10 .ssbp-facebook_save:hover,.ssbp--theme-10 .ssbp-facebook_save:focus,.ssbp--theme-10 .ssbp-facebook_save:active,.ssbp--theme-10 .ssbp-facebook_save+.ssbp-each-share{background-color:#2d4373}
|
547 |
-
.ssbp--theme-10 .ssbp-facebook-messenger{background-color:#0084ff}.ssbp--theme-10 .ssbp-facebook-messenger:hover,.ssbp--theme-10 .ssbp-facebook-messenger:focus,.ssbp--theme-10 .ssbp-facebook-messenger:active,.ssbp--theme-10 .ssbp-facebook-messenger+.ssbp-each-share{background-color:#006acc}
|
548 |
-
.ssbp--theme-10 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-10 .ssbp-flattr:hover,.ssbp--theme-10 .ssbp-flattr:focus,.ssbp--theme-10 .ssbp-flattr:active,.ssbp--theme-10 .ssbp-flattr+.ssbp-each-share{background-color:#d56308}
|
549 |
-
.ssbp--theme-10 .ssbp-google{background-color:#dc4e41}.ssbp--theme-10 .ssbp-google:hover,.ssbp--theme-10 .ssbp-google:focus,.ssbp--theme-10 .ssbp-google:active,.ssbp--theme-10 .ssbp-google+.ssbp-each-share{background-color:#c63224}
|
550 |
-
.ssbp--theme-10 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-10 .ssbp-linkedin:hover,.ssbp--theme-10 .ssbp-linkedin:focus,.ssbp--theme-10 .ssbp-linkedin:active,.ssbp--theme-10 .ssbp-linkedin+.ssbp-each-share{background-color:#005983}
|
551 |
-
.ssbp--theme-10 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-10 .ssbp-pinterest:hover,.ssbp--theme-10 .ssbp-pinterest:focus,.ssbp--theme-10 .ssbp-pinterest:active,.ssbp--theme-10 .ssbp-pinterest+.ssbp-each-share{background-color:#a11413}
|
552 |
-
.ssbp--theme-10 .ssbp-print{background-color:#1f6b43}.ssbp--theme-10 .ssbp-print:hover,.ssbp--theme-10 .ssbp-print:focus,.ssbp--theme-10 .ssbp-print:active,.ssbp--theme-10 .ssbp-print+.ssbp-each-share{background-color:#14432a}
|
553 |
-
.ssbp--theme-10 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-10 .ssbp-reddit:hover,.ssbp--theme-10 .ssbp-reddit:focus,.ssbp--theme-10 .ssbp-reddit:active,.ssbp--theme-10 .ssbp-reddit+.ssbp-each-share{background-color:#cc3700}
|
554 |
-
.ssbp--theme-10 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-10 .ssbp-simplesharebuttons:hover,.ssbp--theme-10 .ssbp-simplesharebuttons:focus,.ssbp--theme-10 .ssbp-simplesharebuttons:active,.ssbp--theme-10 .ssbp-simplesharebuttons+.ssbp-each-share{background-color:#1863e6}
|
555 |
-
.ssbp--theme-10 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-10 .ssbp-stumbleupon:hover,.ssbp--theme-10 .ssbp-stumbleupon:focus,.ssbp--theme-10 .ssbp-stumbleupon:active,.ssbp--theme-10 .ssbp-stumbleupon+.ssbp-each-share{background-color:#ca3412}
|
556 |
-
.ssbp--theme-10 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-10 .ssbp-tumblr:hover,.ssbp--theme-10 .ssbp-tumblr:focus,.ssbp--theme-10 .ssbp-tumblr:active,.ssbp--theme-10 .ssbp-tumblr+.ssbp-each-share{background-color:#1c2e3f}
|
557 |
-
.ssbp--theme-10 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-10 .ssbp-twitter:hover,.ssbp--theme-10 .ssbp-twitter:focus,.ssbp--theme-10 .ssbp-twitter:active,.ssbp--theme-10 .ssbp-twitter+.ssbp-each-share{background-color:#0085be}
|
558 |
-
.ssbp--theme-10 .ssbp-vk{background-color:#45668e}.ssbp--theme-10 .ssbp-vk:hover,.ssbp--theme-10 .ssbp-vk:focus,.ssbp--theme-10 .ssbp-vk:active,.ssbp--theme-10 .ssbp-vk+.ssbp-each-share{background-color:#344d6c}
|
559 |
-
.ssbp--theme-10 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-10 .ssbp-whatsapp:hover,.ssbp--theme-10 .ssbp-whatsapp:focus,.ssbp--theme-10 .ssbp-whatsapp:active,.ssbp--theme-10 .ssbp-whatsapp+.ssbp-each-share{background-color:#27851b}
|
560 |
-
.ssbp--theme-10 .ssbp-yummly{background-color:#e16120}.ssbp--theme-10 .ssbp-yummly:hover,.ssbp--theme-10 .ssbp-yummly:focus,.ssbp--theme-10 .ssbp-yummly:active,.ssbp--theme-10 .ssbp-yummly+.ssbp-each-share{background-color:#b64d18}
|
561 |
-
.ssbp--theme-10 .ssbp-xing{background-color:#026466}.ssbp--theme-10 .ssbp-xing:hover,.ssbp--theme-10 .ssbp-xing:focus,.ssbp--theme-10 .ssbp-xing:active,.ssbp--theme-10 .ssbp-xing+.ssbp-each-share{background-color:#013334}
|
562 |
-
.ssbp--theme-10 .ssbp-each-share{padding:2px;font-size:10px;text-align:center;color:#FFF}
|
563 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
564 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
565 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
566 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
567 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
568 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
569 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
570 |
-
.ssbp--theme-11{margin-left:-5px;margin-right:-5px}.ssbp--theme-11 .ssbp-list li{margin:0}
|
571 |
-
.ssbp--theme-11 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12px;line-height:1.2;font-size:11px}
|
572 |
-
.ssbp--theme-11 .ssbp-btn{width:auto !important;height:auto !important;display:block;padding:.6em 1em;margin:5px;text-transform:uppercase;color:#fff;font-size:11px;-webkit-transition:background-color .25s;transition:background-color .25s;border-bottom:0;border-radius:5px}
|
573 |
-
.ssbp--theme-11 .ssbp-btn:before{display:none}.ssbp--theme-11 .ssbp-btn:active{box-shadow:inset 0 0 .5em rgba(0,0,0,0.33)}
|
574 |
-
.ssbp--theme-11 .ssbp-btn:hover,.ssbp--theme-11 .ssbp-btn:focus,.ssbp--theme-11 .ssbp-btn:active,.ssbp--theme-11 .ssbp-btn:visited{color:#fff}
|
575 |
-
.ssbp--theme-11 .ssbp-buffer{background-color:#272727}.ssbp--theme-11 .ssbp-buffer:hover,.ssbp--theme-11 .ssbp-buffer:focus,.ssbp--theme-11 .ssbp-buffer:active,.ssbp--theme-11 .ssbp-buffer+.ssbp-each-share{background-color:#0e0e0e}
|
576 |
-
.ssbp--theme-11 .ssbp-diggit{background-color:#14589e}.ssbp--theme-11 .ssbp-diggit:hover,.ssbp--theme-11 .ssbp-diggit:focus,.ssbp--theme-11 .ssbp-diggit:active,.ssbp--theme-11 .ssbp-diggit+.ssbp-each-share{background-color:#0e3f71}
|
577 |
-
.ssbp--theme-11 .ssbp-email{background-color:#787878}.ssbp--theme-11 .ssbp-email:hover,.ssbp--theme-11 .ssbp-email:focus,.ssbp--theme-11 .ssbp-email:active,.ssbp--theme-11 .ssbp-email+.ssbp-each-share{background-color:#5f5f5f}
|
578 |
-
.ssbp--theme-11 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-11 .ssbp-ellipsis:hover,.ssbp--theme-11 .ssbp-ellipsis:focus,.ssbp--theme-11 .ssbp-ellipsis:active,.ssbp--theme-11 .ssbp-ellipsis+.ssbp-each-share{background-color:#1863e6}
|
579 |
-
.ssbp--theme-11 .ssbp-facebook{background-color:#3b5998}.ssbp--theme-11 .ssbp-facebook:hover,.ssbp--theme-11 .ssbp-facebook:focus,.ssbp--theme-11 .ssbp-facebook:active,.ssbp--theme-11 .ssbp-facebook+.ssbp-each-share{background-color:#2d4373}
|
580 |
-
.ssbp--theme-11 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-11 .ssbp-facebook_save:hover,.ssbp--theme-11 .ssbp-facebook_save:focus,.ssbp--theme-11 .ssbp-facebook_save:active,.ssbp--theme-11 .ssbp-facebook_save+.ssbp-each-share{background-color:#2d4373}
|
581 |
-
.ssbp--theme-11 .ssbp-facebook-messenger{background-color:#0084ff}.ssbp--theme-11 .ssbp-facebook-messenger:hover,.ssbp--theme-11 .ssbp-facebook-messenger:focus,.ssbp--theme-11 .ssbp-facebook-messenger:active,.ssbp--theme-11 .ssbp-facebook-messenger+.ssbp-each-share{background-color:#006acc}
|
582 |
-
.ssbp--theme-11 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-11 .ssbp-flattr:hover,.ssbp--theme-11 .ssbp-flattr:focus,.ssbp--theme-11 .ssbp-flattr:active,.ssbp--theme-11 .ssbp-flattr+.ssbp-each-share{background-color:#d56308}
|
583 |
-
.ssbp--theme-11 .ssbp-google{background-color:#dc4e41}.ssbp--theme-11 .ssbp-google:hover,.ssbp--theme-11 .ssbp-google:focus,.ssbp--theme-11 .ssbp-google:active,.ssbp--theme-11 .ssbp-google+.ssbp-each-share{background-color:#c63224}
|
584 |
-
.ssbp--theme-11 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-11 .ssbp-linkedin:hover,.ssbp--theme-11 .ssbp-linkedin:focus,.ssbp--theme-11 .ssbp-linkedin:active,.ssbp--theme-11 .ssbp-linkedin+.ssbp-each-share{background-color:#005983}
|
585 |
-
.ssbp--theme-11 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-11 .ssbp-pinterest:hover,.ssbp--theme-11 .ssbp-pinterest:focus,.ssbp--theme-11 .ssbp-pinterest:active,.ssbp--theme-11 .ssbp-pinterest+.ssbp-each-share{background-color:#a11413}
|
586 |
-
.ssbp--theme-11 .ssbp-print{background-color:#1f6b43}.ssbp--theme-11 .ssbp-print:hover,.ssbp--theme-11 .ssbp-print:focus,.ssbp--theme-11 .ssbp-print:active,.ssbp--theme-11 .ssbp-print+.ssbp-each-share{background-color:#14432a}
|
587 |
-
.ssbp--theme-11 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-11 .ssbp-reddit:hover,.ssbp--theme-11 .ssbp-reddit:focus,.ssbp--theme-11 .ssbp-reddit:active,.ssbp--theme-11 .ssbp-reddit+.ssbp-each-share{background-color:#cc3700}
|
588 |
-
.ssbp--theme-11 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-11 .ssbp-simplesharebuttons:hover,.ssbp--theme-11 .ssbp-simplesharebuttons:focus,.ssbp--theme-11 .ssbp-simplesharebuttons:active,.ssbp--theme-11 .ssbp-simplesharebuttons+.ssbp-each-share{background-color:#1863e6}
|
589 |
-
.ssbp--theme-11 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-11 .ssbp-stumbleupon:hover,.ssbp--theme-11 .ssbp-stumbleupon:focus,.ssbp--theme-11 .ssbp-stumbleupon:active,.ssbp--theme-11 .ssbp-stumbleupon+.ssbp-each-share{background-color:#ca3412}
|
590 |
-
.ssbp--theme-11 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-11 .ssbp-tumblr:hover,.ssbp--theme-11 .ssbp-tumblr:focus,.ssbp--theme-11 .ssbp-tumblr:active,.ssbp--theme-11 .ssbp-tumblr+.ssbp-each-share{background-color:#1c2e3f}
|
591 |
-
.ssbp--theme-11 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-11 .ssbp-twitter:hover,.ssbp--theme-11 .ssbp-twitter:focus,.ssbp--theme-11 .ssbp-twitter:active,.ssbp--theme-11 .ssbp-twitter+.ssbp-each-share{background-color:#0085be}
|
592 |
-
.ssbp--theme-11 .ssbp-vk{background-color:#45668e}.ssbp--theme-11 .ssbp-vk:hover,.ssbp--theme-11 .ssbp-vk:focus,.ssbp--theme-11 .ssbp-vk:active,.ssbp--theme-11 .ssbp-vk+.ssbp-each-share{background-color:#344d6c}
|
593 |
-
.ssbp--theme-11 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-11 .ssbp-whatsapp:hover,.ssbp--theme-11 .ssbp-whatsapp:focus,.ssbp--theme-11 .ssbp-whatsapp:active,.ssbp--theme-11 .ssbp-whatsapp+.ssbp-each-share{background-color:#27851b}
|
594 |
-
.ssbp--theme-11 .ssbp-yummly{background-color:#e16120}.ssbp--theme-11 .ssbp-yummly:hover,.ssbp--theme-11 .ssbp-yummly:focus,.ssbp--theme-11 .ssbp-yummly:active,.ssbp--theme-11 .ssbp-yummly+.ssbp-each-share{background-color:#b64d18}
|
595 |
-
.ssbp--theme-11 .ssbp-xing{background-color:#026466}.ssbp--theme-11 .ssbp-xing:hover,.ssbp--theme-11 .ssbp-xing:focus,.ssbp--theme-11 .ssbp-xing:active,.ssbp--theme-11 .ssbp-xing+.ssbp-each-share{background-color:#013334}
|
596 |
-
.ssbp--theme-11 .ssbp-each-share{padding:2px;font-size:10px;margin-right:5px;margin-left:5px;text-align:center;color:#FFF;border-radius:5px}
|
597 |
-
.active.in{position:relatve;z-index:3}#share-bar .ssbp--theme-11 .ssbp-btn{margin:0 5px 0}
|
598 |
.accor-wrap{margin:1rem 0 0;display:inline-block;width:100%}.accor-wrap .accor-tab{background:#4582ec;padding:.5rem;border-radius:5px;color:#fff}
|
599 |
.accor-wrap .well{display:inline-block;width:100%}.accor-wrap .well h3{margin:1rem 0}
|
600 |
.accor-wrap .well .col-md-12:first-of-type h3{margin-top:0}.accor-wrap .accor-content{display:none}
|
@@ -611,140 +103,59 @@
|
|
611 |
#ssba-copy-shortcode{width:6rem;padding:1.1rem;margin:-4px -6px 0}.whatsapp-message .ssbp-whatsapp{padding:1rem}
|
612 |
.whatsapp-message{background:#f7f7f7;padding:1rem;text-align:center}#ssba-preview-2 .ssbp-list li{margin-left:0 !important;margin-right:0 !important}
|
613 |
#ssba-preview-2 .ssbp-list li:first-of-type{margin-top:0 !important}.right li .ssbp-each-share{left:unset;right:100%;margin-right:-12px;margin-left:0}
|
614 |
-
.ssbp-
|
615 |
-
.ssbp
|
616 |
-
.ssbp
|
617 |
-
|
618 |
-
.ssbp
|
619 |
-
.ssbp
|
620 |
-
.ssbp
|
621 |
-
.ssbp
|
622 |
-
|
623 |
-
.ssbp--theme-
|
624 |
-
.ssbp--theme-
|
625 |
-
.ssbp--theme-
|
626 |
-
|
627 |
-
.ssbp--theme-
|
628 |
-
.ssbp--theme-
|
629 |
-
.ssbp--theme-
|
630 |
-
.ssbp--theme-
|
631 |
-
.ssbp--theme-
|
632 |
-
.ssbp--theme-
|
633 |
-
|
634 |
-
.ssbp--theme-
|
635 |
-
.ssbp--theme-
|
636 |
-
|
637 |
-
.ssbp--theme-
|
638 |
-
.ssbp--theme-
|
639 |
-
|
640 |
-
.ssbp--theme-
|
641 |
-
.ssbp--theme-
|
642 |
-
|
643 |
-
.ssbp--theme-
|
644 |
-
.ssbp--theme-
|
645 |
-
.ssbp--theme-
|
646 |
-
.ssbp--theme-
|
647 |
-
.ssbp--theme-
|
648 |
-
.ssbp--theme-
|
649 |
-
.ssbp--theme-
|
650 |
-
|
651 |
-
.ssbp--theme-
|
652 |
-
.ssbp--theme-
|
653 |
-
.ssbp--theme-
|
654 |
-
.ssbp--theme-
|
655 |
-
.ssbp--theme-8 .ssbp-
|
656 |
-
.ssbp--theme-
|
657 |
-
.
|
658 |
-
|
659 |
-
.ssbp--theme-
|
660 |
-
.ssbp--theme-
|
661 |
-
|
662 |
-
.
|
663 |
-
.ssbp--theme-
|
664 |
-
.ssbp--theme-
|
665 |
-
.ssbp--theme-
|
666 |
-
|
667 |
-
.ssbp--theme-
|
668 |
-
.ssbp--theme-
|
669 |
-
.ssbp--theme-3 .ssbp-
|
670 |
-
.ssbp--theme-7 .ssbp-li--line .ssbp-text{color:#00c300}.ssbp--theme-7 .ssbp-li--line:hover .ssbp-text{color:#fff}
|
671 |
-
.ssbp--theme-9 .ssbp-li--line{border-bottom:5px solid #00c300}.ssbp--theme-9 .ssbp-line{height:43px !important}
|
672 |
-
.ssbp--theme-9 .ssbp-li--line:hover{border-bottom:5px solid rgba(0,195,0,0.59)}.ssbp--theme-9 .ssbp-li--line .ssbp-line:before{padding:9px 14px 0}
|
673 |
-
.ssbp--theme-10 .ssbp-line{width:40px !important}.ssbp--theme-10 .ssbp-line:before{padding:11px 8px 8px}
|
674 |
-
.ssbp-skype:before{content:url("../images/skype.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
675 |
-
.ssbp--theme-8 .ssbp-skype:before{content:url("../images/skype-black.svg")}.ssbp--theme-1 .ssbp-skype,.ssbp--theme-2 .ssbp-skype,.ssbp--theme-3 .ssbp-skype,.ssbp--theme-4 .ssbp-skype,.ssbp--theme-5 .ssbp-skype,.ssbp--theme-10 .ssbp-skype:before,.ssbp--theme-11 .ssbp-skype{transition:background-color,.5s;background-color:#00aff0;display:block}
|
676 |
-
.ssbp--theme-6 .ssbp-skype,.ssbp--theme-7 .ssbp-skype{border-color:#00aff0;display:block}
|
677 |
-
.ssbp--theme-8 .ssbp-skype,.ssbp--theme-9 .ssbp-skype{display:block}.ssbp--theme-6 .ssbp-skype:before,.ssbp--theme-7 .ssbp-skype:before,.ssbp--theme-9 .ssbp-skype:before{content:url("../images/skype-hover.svg")}
|
678 |
-
.ssbp--theme-1 .ssbp-skype:before,.ssbp--theme-2 .ssbp-skype:before,.ssbp--theme-3 .ssbp-skype:before,.ssbp--theme-4 .ssbp-skype:before,.ssbp--theme-5 .ssbp-skype:before,.ssbp--theme-6 .ssbp-skype:before,.ssbp--theme-7 .ssbp-skype:before{left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
679 |
-
.ssbp--theme-1 .ssbp-skype:hover,.ssbp--theme-1 .ssbp-skype:focus,.ssbp--theme-1 .ssbp-skype:active{color:#00aff0;border-color:#00aff0}
|
680 |
-
.ssbp--theme-6 .ssbp-skype:hover,.ssbp--theme-6 .ssbp-skype:focus,.ssbp--theme-6 .ssbp-skype:active,.ssbp--theme-7 .ssbp-skype:hover,.ssbp--theme-7 .ssbp-skype:focus,.ssbp--theme-7 .ssbp-skype:active{background-color:#00aff0}
|
681 |
-
.ssbp--theme-2 .ssbp-skype:hover,.ssbp--theme-2 .ssbp-skype:focus,.ssbp--theme-2 .ssbp-skype:active,.ssbp--theme-3 .ssbp-skype:hover,.ssbp--theme-3 .ssbp-skype:focus,.ssbp--theme-3 .ssbp-skype:active,.ssbp--theme-10 .ssbp-skype:hover:before,.ssbp--theme-10 .ssbp-skype:focus:before,.ssbp--theme-10 .ssbp-skype:active:before,.ssbp--theme-11 .ssbp-skype:hover,.ssbp--theme-11 .ssbp-skype:focus,.ssbp--theme-11 .ssbp-skype:active{border-color:#0081b1;background-color:#0081b1}
|
682 |
-
.ssbp--theme-1 .ssbp-skype:hover:before,.ssbp--theme-1 .ssbp-skype:focus:before,.ssbp--theme-1 .ssbp-skype:active:before{content:url("../images/skype-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
683 |
-
.ssbp--theme-6 .ssbp-skype:hover:before,.ssbp--theme-6 .ssbp-skype:focus:before,.ssbp--theme-6 .ssbp-skype:active:before,.ssbp--theme-7 .ssbp-skype:hover:before,.ssbp--theme-7 .ssbp-skype:focus:before,.ssbp--theme-7 .ssbp-skype:active:before,.ssbp--theme-8 .ssbp-skype:hover:before,.ssbp--theme-8 .ssbp-skype:focus:before,.ssbp--theme-8 .ssbp-skype:active:before{content:url("../images/skype.svg")}
|
684 |
-
.ssbp--theme-1 .ssbp-skype+.ssbp-each-share,.ssbp--theme-2 .ssbp-skype+.ssbp-each-share,.ssbp--theme-3 .ssbp-skype+.ssbp-each-share,.ssbp--theme-4 .ssbp-skype+.ssbp-each-share,.ssbp--theme-5 .ssbp-skype+.ssbp-each-share,.ssbp--theme-6 .ssbp-skype+.ssbp-each-share,.ssbp--theme-7 .ssbp-skype+.ssbp-each-share{background-color:#00aff0}
|
685 |
-
.ssbp--theme-2 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-2 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-2 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-3 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-3 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-3 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-4 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-4 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-4 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-5 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-5 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-5 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-6 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-6 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-6 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-7 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-7 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-7 .ssbp-btn.ssbp-skype:active:before{transform:translate(-50%,-37%) !important;left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%}
|
686 |
-
.ssbp--theme-5 .ssbp-skype{background-color:#00aff0;box-shadow:0 8px 0 #0081b1,0 10px 12px rgba(0,0,0,0.33)}
|
687 |
-
.ssbp--theme-5 .ssbp-skype:active{box-shadow:0 4px 0 #0081b1,0 5px 6px rgba(0,0,0,0.33)}
|
688 |
-
.ssbp--theme-3 .ssbp-text,.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12.1px;margin-left:0;text-shadow:-1px -1px rgba(0,0,0,0.2);position:absolute;bottom:-20px;left:50%;transform:translate(-50%)}
|
689 |
-
.ssbp--theme-7 .ssbp-li--skype .ssbp-text{color:#00aff0}.ssbp--theme-7 .ssbp-li--skype:hover .ssbp-text{color:#fff}
|
690 |
-
.ssbp--theme-9 .ssbp-li--skype{border-bottom:5px solid #00aff0}.ssbp--theme-9 .ssbp-skype{height:43px !important}
|
691 |
-
.ssbp--theme-9 .ssbp-li--skype:hover{border-bottom:5px solid rgba(0,175,240,0.59)}
|
692 |
-
.ssbp--theme-9 .ssbp-li--skype .ssbp-skype:before{padding:9px 14px 0}.ssbp--theme-10 .ssbp-skype{width:40px !important}
|
693 |
-
.ssbp--theme-10 .ssbp-skype:before{padding:11px 8px 8px}.ssbp-snapchat:before{content:url("../images/snapchat.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
694 |
-
.ssbp--theme-8 .ssbp-snapchat:before{content:url("../images/snapchat-black.svg")}.ssbp--theme-1 .ssbp-snapchat,.ssbp--theme-2 .ssbp-snapchat,.ssbp--theme-3 .ssbp-snapchat,.ssbp--theme-4 .ssbp-snapchat,.ssbp--theme-5 .ssbp-snapchat,.ssbp--theme-10 .ssbp-snapchat:before,.ssbp--theme-11 .ssbp-snapchat{transition:background-color,.5s;background-color:#fffc00;display:block}
|
695 |
-
.ssbp--theme-6 .ssbp-snapchat,.ssbp--theme-7 .ssbp-snapchat{border-color:#fffc00;display:block}
|
696 |
-
.ssbp--theme-8 .ssbp-snapchat,.ssbp--theme-9 .ssbp-snapchat{display:block}.ssbp--theme-6 .ssbp-snapchat:before,.ssbp--theme-7 .ssbp-snapchat:before,.ssbp--theme-9 .ssbp-snapchat:before{content:url("../images/snapchat-hover.svg")}
|
697 |
-
.ssbp--theme-1 .ssbp-snapchat:before,.ssbp--theme-2 .ssbp-snapchat:before,.ssbp--theme-3 .ssbp-snapchat:before,.ssbp--theme-4 .ssbp-snapchat:before,.ssbp--theme-5 .ssbp-snapchat:before,.ssbp--theme-6 .ssbp-snapchat:before,.ssbp--theme-7 .ssbp-snapchat:before{left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
698 |
-
.ssbp--theme-1 .ssbp-snapchat:hover,.ssbp--theme-1 .ssbp-snapchat:focus,.ssbp--theme-1 .ssbp-snapchat:active{color:#fffc00;border-color:#fffc00}
|
699 |
-
.ssbp--theme-6 .ssbp-snapchat:hover,.ssbp--theme-6 .ssbp-snapchat:focus,.ssbp--theme-6 .ssbp-snapchat:active,.ssbp--theme-7 .ssbp-snapchat:hover,.ssbp--theme-7 .ssbp-snapchat:focus,.ssbp--theme-7 .ssbp-snapchat:active{background-color:#fffc00}
|
700 |
-
.ssbp--theme-2 .ssbp-snapchat:hover,.ssbp--theme-2 .ssbp-snapchat:focus,.ssbp--theme-2 .ssbp-snapchat:active,.ssbp--theme-3 .ssbp-snapchat:hover,.ssbp--theme-3 .ssbp-snapchat:focus,.ssbp--theme-3 .ssbp-snapchat:active,.ssbp--theme-10 .ssbp-snapchat:hover:before,.ssbp--theme-10 .ssbp-snapchat:focus:before,.ssbp--theme-10 .ssbp-snapchat:active:before,.ssbp--theme-11 .ssbp-snapchat:hover,.ssbp--theme-11 .ssbp-snapchat:focus,.ssbp--theme-11 .ssbp-snapchat:active{border-color:#b5b320;background-color:#b5b320}
|
701 |
-
.ssbp--theme-1 .ssbp-snapchat:hover:before,.ssbp--theme-1 .ssbp-snapchat:focus:before,.ssbp--theme-1 .ssbp-snapchat:active:before{content:url("../images/snapchat-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
702 |
-
.ssbp--theme-6 .ssbp-snapchat:hover:before,.ssbp--theme-6 .ssbp-snapchat:focus:before,.ssbp--theme-6 .ssbp-snapchat:active:before,.ssbp--theme-7 .ssbp-snapchat:hover:before,.ssbp--theme-7 .ssbp-snapchat:focus:before,.ssbp--theme-7 .ssbp-snapchat:active:before,.ssbp--theme-8 .ssbp-snapchat:hover:before,.ssbp--theme-8 .ssbp-snapchat:focus:before,.ssbp--theme-8 .ssbp-snapchat:active:before{content:url("../images/snapchat.svg")}
|
703 |
-
.ssbp--theme-1 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-2 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-3 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-4 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-5 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-6 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-7 .ssbp-snapchat+.ssbp-each-share{background-color:#fffc00}
|
704 |
-
.ssbp--theme-2 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-2 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-2 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-3 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-3 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-3 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-4 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-4 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-4 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-5 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-5 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-5 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-6 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-6 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-6 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-7 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-7 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-7 .ssbp-btn.ssbp-snapchat:active:before{transform:translate(-50%,-37%) !important;left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%}
|
705 |
-
.ssbp--theme-5 .ssbp-snapchat{background-color:#fffc00;box-shadow:0 8px 0 #b5b320,0 10px 12px rgba(0,0,0,0.33)}
|
706 |
-
.ssbp--theme-5 .ssbp-snapchat:active{box-shadow:0 4px 0 #fffc00,0 5px 6px rgba(0,0,0,0.33)}
|
707 |
-
.ssbp--theme-3 .ssbp-text,.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12.1px;margin-left:0;text-shadow:-1px -1px rgba(0,0,0,0.2);position:absolute;bottom:-20px;left:50%;transform:translate(-50%)}
|
708 |
-
.ssbp--theme-7 .ssbp-li--snapchat .ssbp-text{color:#fffc00}.ssbp--theme-7 .ssbp-li--snapchat:hover .ssbp-text{color:#fff}
|
709 |
-
.ssbp--theme-9 .ssbp-li--snapchat{border-bottom:5px solid #fffc00}.ssbp--theme-9 .ssbp-snapchat{height:43px !important}
|
710 |
-
.ssbp--theme-9 .ssbp-li--snapchat:hover{border-bottom:5px solid rgba(255,252,40,0.59)}
|
711 |
-
.ssbp--theme-9 .ssbp-li--snapchat .ssbp-snapchat:before{padding:9px 14px 0}.ssbp--theme-10 .ssbp-snapchat{width:40px !important}
|
712 |
-
.ssbp--theme-10 .ssbp-snapchat:before{padding:11px 8px 8px}.ssbp-telegram:before{content:url("../images/telegram.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
713 |
-
.ssbp--theme-8 .ssbp-telegram:before{content:url("../images/telegram-black.svg")}.ssbp--theme-1 .ssbp-telegram,.ssbp--theme-2 .ssbp-telegram,.ssbp--theme-3 .ssbp-telegram,.ssbp--theme-4 .ssbp-telegram,.ssbp--theme-5 .ssbp-telegram,.ssbp--theme-10 .ssbp-telegram:before,.ssbp--theme-11 .ssbp-telegram{transition:background-color,.5s;background-color:#37aee2;display:block}
|
714 |
-
.ssbp--theme-6 .ssbp-telegram,.ssbp--theme-7 .ssbp-telegram{border-color:#37aee2;display:block}
|
715 |
-
.ssbp--theme-8 .ssbp-telegram,.ssbp--theme-9 .ssbp-telegram{display:block}.ssbp--theme-6 .ssbp-telegram:before,.ssbp--theme-7 .ssbp-telegram:before,.ssbp--theme-9 .ssbp-telegram:before{content:url("../images/telegram-hover.svg")}
|
716 |
-
.ssbp--theme-1 .ssbp-telegram:before,.ssbp--theme-2 .ssbp-telegram:before,.ssbp--theme-3 .ssbp-telegram:before,.ssbp--theme-4 .ssbp-telegram:before,.ssbp--theme-5 .ssbp-telegram:before,.ssbp--theme-6 .ssbp-telegram:before,.ssbp--theme-7 .ssbp-telegram:before{left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
717 |
-
.ssbp--theme-1 .ssbp-telegram:hover,.ssbp--theme-1 .ssbp-telegram:focus,.ssbp--theme-1 .ssbp-telegram:active{color:#37aee2;border-color:#37aee2}
|
718 |
-
.ssbp--theme-6 .ssbp-telegram:hover,.ssbp--theme-6 .ssbp-telegram:focus,.ssbp--theme-6 .ssbp-telegram:active,.ssbp--theme-7 .ssbp-telegram:hover,.ssbp--theme-7 .ssbp-telegram:focus,.ssbp--theme-7 .ssbp-telegram:active{background-color:#37aee2}
|
719 |
-
.ssbp--theme-2 .ssbp-telegram:hover,.ssbp--theme-2 .ssbp-telegram:focus,.ssbp--theme-2 .ssbp-telegram:active,.ssbp--theme-3 .ssbp-telegram:hover,.ssbp--theme-3 .ssbp-telegram:focus,.ssbp--theme-3 .ssbp-telegram:active,.ssbp--theme-10 .ssbp-telegram:hover:before,.ssbp--theme-10 .ssbp-telegram:focus:before,.ssbp--theme-10 .ssbp-telegram:active:before,.ssbp--theme-11 .ssbp-telegram:hover,.ssbp--theme-11 .ssbp-telegram:focus,.ssbp--theme-11 .ssbp-telegram:active{border-color:#0674a4;background-color:#0674a4}
|
720 |
-
.ssbp--theme-1 .ssbp-telegram:hover:before,.ssbp--theme-1 .ssbp-telegram:focus:before,.ssbp--theme-1 .ssbp-telegram:active:before{content:url("../images/telegram-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
721 |
-
.ssbp--theme-6 .ssbp-telegram:hover:before,.ssbp--theme-6 .ssbp-telegram:focus:before,.ssbp--theme-6 .ssbp-telegram:active:before,.ssbp--theme-7 .ssbp-telegram:hover:before,.ssbp--theme-7 .ssbp-telegram:focus:before,.ssbp--theme-7 .ssbp-telegram:active:before,.ssbp--theme-8 .ssbp-telegram:hover:before,.ssbp--theme-8 .ssbp-telegram:focus:before,.ssbp--theme-8 .ssbp-telegram:active:before{content:url("../images/telegram.svg")}
|
722 |
-
.ssbp--theme-1 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-2 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-3 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-4 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-5 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-6 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-7 .ssbp-telegram+.ssbp-each-share{background-color:#37aee2}
|
723 |
-
.ssbp--theme-2 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-2 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-2 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-3 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-3 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-3 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-4 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-4 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-4 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-5 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-5 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-5 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-6 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-6 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-6 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-7 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-7 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-7 .ssbp-btn.ssbp-telegram:active:before{transform:translate(-50%,-37%) !important;left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%}
|
724 |
-
.ssbp--theme-5 .ssbp-telegram{background-color:#37aee2;box-shadow:0 8px 0 #0674a4,0 10px 12px rgba(0,0,0,0.33)}
|
725 |
-
.ssbp--theme-5 .ssbp-telegram:active{box-shadow:0 4px 0 #37aee2,0 5px 6px rgba(0,0,0,0.33)}
|
726 |
-
.ssbp--theme-3 .ssbp-text,.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12.1px;margin-left:0;text-shadow:-1px -1px rgba(0,0,0,0.2);position:absolute;bottom:-20px;left:50%;transform:translate(-50%)}
|
727 |
-
.ssbp--theme-7 .ssbp-li--telegram .ssbp-text{color:#37aee2}.ssbp--theme-7 .ssbp-li--telegram:hover .ssbp-text{color:#fff}
|
728 |
-
.ssbp--theme-9 .ssbp-li--telegram{border-bottom:5px solid #20779d}.ssbp--theme-9 .ssbp-telegram{height:43px !important}
|
729 |
-
.ssbp--theme-9 .ssbp-li--telegram:hover{border-bottom:5px solid rgba(55,174,226,0.59)}
|
730 |
-
.ssbp--theme-9 .ssbp-li--telegram .ssbp-telegram:before{padding:9px 14px 0}.ssbp--theme-10 .ssbp-telegram{width:40px !important}
|
731 |
-
.ssbp--theme-10 .ssbp-telegram:before{padding:11px 8px 8px}.ssbp-weibo:before{content:url("../images/weibo.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
732 |
-
.ssbp--theme-8 .ssbp-weibo:before{content:url("../images/weibo-black.svg")}.ssbp--theme-1 .ssbp-weibo,.ssbp--theme-2 .ssbp-weibo,.ssbp--theme-3 .ssbp-weibo,.ssbp--theme-4 .ssbp-weibo,.ssbp--theme-5 .ssbp-weibo,.ssbp--theme-10 .ssbp-weibo:before,.ssbp--theme-11 .ssbp-weibo{transition:background-color,.5s;background-color:#df2029;display:block}
|
733 |
-
.ssbp--theme-6 .ssbp-weibo,.ssbp--theme-7 .ssbp-weibo{border-color:#df2029;display:block}
|
734 |
-
.ssbp--theme-8 .ssbp-weibo,.ssbp--theme-9 .ssbp-weibo{display:block}.ssbp--theme-6 .ssbp-weibo:before,.ssbp--theme-7 .ssbp-weibo:before,.ssbp--theme-9 .ssbp-weibo:before{content:url("../images/weibo-hover.svg")}
|
735 |
-
.ssbp--theme-1 .ssbp-weibo:before,.ssbp--theme-2 .ssbp-weibo:before,.ssbp--theme-3 .ssbp-weibo:before,.ssbp--theme-4 .ssbp-weibo:before,.ssbp--theme-5 .ssbp-weibo:before,.ssbp--theme-6 .ssbp-weibo:before,.ssbp--theme-7 .ssbp-weibo:before{left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
736 |
-
.ssbp--theme-1 .ssbp-weibo:hover,.ssbp--theme-1 .ssbp-weibo:focus,.ssbp--theme-1 .ssbp-weibo:active{color:#df2029;border-color:#df2029}
|
737 |
-
.ssbp--theme-6 .ssbp-weibo:hover,.ssbp--theme-6 .ssbp-weibo:focus,.ssbp--theme-6 .ssbp-weibo:active,.ssbp--theme-7 .ssbp-weibo:hover,.ssbp--theme-7 .ssbp-weibo:focus,.ssbp--theme-7 .ssbp-weibo:active{background-color:#df2029}
|
738 |
-
.ssbp--theme-2 .ssbp-weibo:hover,.ssbp--theme-2 .ssbp-weibo:focus,.ssbp--theme-2 .ssbp-weibo:active,.ssbp--theme-3 .ssbp-weibo:hover,.ssbp--theme-3 .ssbp-weibo:focus,.ssbp--theme-3 .ssbp-weibo:active,.ssbp--theme-10 .ssbp-weibo:hover:before,.ssbp--theme-10 .ssbp-weibo:focus:before,.ssbp--theme-10 .ssbp-weibo:active:before,.ssbp--theme-11 .ssbp-weibo:hover,.ssbp--theme-11 .ssbp-weibo:focus,.ssbp--theme-11 .ssbp-weibo:active{border-color:#ad191f;background-color:#ad191f}
|
739 |
-
.ssbp--theme-1 .ssbp-weibo:hover:before,.ssbp--theme-1 .ssbp-weibo:focus:before,.ssbp--theme-1 .ssbp-weibo:active:before{content:url("../images/weibo-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
740 |
-
.ssbp--theme-6 .ssbp-weibo:hover:before,.ssbp--theme-6 .ssbp-weibo:focus:before,.ssbp--theme-6 .ssbp-weibo:active:before,.ssbp--theme-7 .ssbp-weibo:hover:before,.ssbp--theme-7 .ssbp-weibo:focus:before,.ssbp--theme-7 .ssbp-weibo:active:before,.ssbp--theme-8 .ssbp-weibo:hover:before,.ssbp--theme-8 .ssbp-weibo:focus:before,.ssbp--theme-8 .ssbp-weibo:active:before{content:url("../images/weibo.svg")}
|
741 |
-
.ssbp--theme-1 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-2 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-3 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-4 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-5 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-6 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-7 .ssbp-weibo+.ssbp-each-share{background-color:#df2029}
|
742 |
-
.ssbp--theme-2 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-2 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-2 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-3 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-3 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-3 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-4 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-4 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-4 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-5 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-5 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-5 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-6 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-6 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-6 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-7 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-7 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-7 .ssbp-btn.ssbp-weibo:active:before{transform:translate(-50%,-37%) !important;left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%}
|
743 |
-
.ssbp--theme-5 .ssbp-weibo{background-color:#df2029;box-shadow:0 8px 0 #ad191f,0 10px 12px rgba(0,0,0,0.33)}
|
744 |
-
.ssbp--theme-5 .ssbp-weibo:active{box-shadow:0 4px 0 #ad191f,0 5px 6px rgba(0,0,0,0.33)}
|
745 |
-
.ssbp--theme-3 .ssbp-text,.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12.1px;margin-left:0;text-shadow:-1px -1px rgba(0,0,0,0.2);position:absolute;bottom:-20px;left:50%;transform:translate(-50%)}
|
746 |
-
.ssbp--theme-7 .ssbp-li--weibo .ssbp-text{color:#df2029}.ssbp--theme-7 .ssbp-li--weibo:hover .ssbp-text{color:#fff}
|
747 |
-
.ssbp--theme-9 .ssbp-li--weibo{border-bottom:5px solid #df2029}.ssbp--theme-9 .ssbp-weibo{height:43px !important}
|
748 |
-
.ssbp--theme-9 .ssbp-li--weibo:hover{border-bottom:5px solid rgba(223,32,41,0.61)}
|
749 |
-
.ssbp--theme-9 .ssbp-li--weibo .ssbp-weibo:before{padding:9px 14px 0}.ssbp--theme-10 .ssbp-weibo{width:40px !important}
|
750 |
-
.ssbp--theme-10 .ssbp-weibo:before{padding:11px 8px 8px}
|
5 |
.ssbp-chevron-up:before,.ssbp--state-hidden .ssbp-toggle-switch:before{content:"\e615"}
|
6 |
.ssbp-chevron-right:before,.ssbp--fixed-right .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-left .ssbp-toggle-switch:before{content:"\e616"}
|
7 |
.ssbp-chevron-left:before,.ssbp--fixed-left .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-right .ssbp-toggle-switch:before{content:"\e617"}
|
8 |
+
.ssbp-wrap *,.ssbp-wrap *:before,.ssbp-wrap *:after{box-sizing:border-box}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
.ssbp-input-url-div,.ssbp-total-shares,.ssba-hide-button.ssbp-each-share,.ssbp-toggle-switch,.ssbp-text{display:none}
|
10 |
.ssbp-wrap{position:relative;display:inline-block;padding:0;font-size:0;color:#272727;z-index:0 !important}
|
11 |
.ssbp-wrap.ssbp--centred{display:block;text-align:center}.ssbp-wrap.ssbp--aligned-right{display:block;text-align:right}
|
35 |
.ssbp--state-hidden.ssbp--fixed-bottom .ssbp-container{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}
|
36 |
.ssbp--state-hidden.ssbp--fixed-left .ssbp-container{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}
|
37 |
.ssbp--state-hidden.ssbp--fixed-right .ssbp-container{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%)}
|
38 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
.ssbp-share-text{font-weight:normal;margin:0 0 10px 0;font-size:12px;color:#4582ec}
|
40 |
#classic-share-buttons blockquote.yellow{border-left:5px solid #ded400;font-weight:bold}
|
41 |
#classic-share-buttons blockquote.yellow .notice-dismiss{position:absolute;right:-24px}
|
42 |
+
#classic-share-buttons blockquote.yellow p{position:relative}
|
43 |
+
|
|
|
|
|
|
|
|
|
|
|
44 |
@-webkit-keyframes spin{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}
|
45 |
}@keyframes spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
|
46 |
}.ssbp-spinner:before{font-family:'ssbp';content:"\e614"}
|
52 |
.ssbp-chevron-up:before,.ssbp--state-hidden .ssbp-toggle-switch:before{content:"\e615"}
|
53 |
.ssbp-chevron-right:before,.ssbp--fixed-right .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-left .ssbp-toggle-switch:before{content:"\e616"}
|
54 |
.ssbp-chevron-left:before,.ssbp--fixed-left .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-right .ssbp-toggle-switch:before{content:"\e617"}
|
55 |
+
.ssbp-simplesharebuttons:before{content:"\e611"}.ssbp-ellipsis:before{content:"\e612"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
.ssbp-x:before{content:"\e613"}@media print{.ssbp-wrap{display:none !important}
|
57 |
}.ssbp-wrap *,.ssbp-wrap *:before,.ssbp-wrap *:after{box-sizing:border-box}.ssbp-input-url-div,.ssbp-total-shares,.ssba-hide-button.ssbp-each-share,.ssbp-toggle-switch,.ssbp-text{display:none}
|
58 |
.ssbp-wrap{position:relative;display:inline-block;padding:0;font-size:0;color:#272727}
|
82 |
.ssbp--state-hidden.ssbp--fixed-bottom .ssbp-container{-webkit-transform:translateY(100%);transform:translateY(100%)}
|
83 |
.ssbp--state-hidden.ssbp--fixed-left .ssbp-container{-webkit-transform:translateX(-100%);transform:translateX(-100%)}
|
84 |
.ssbp--state-hidden.ssbp--fixed-right .ssbp-container{-webkit-transform:translateX(100%);transform:translateX(100%)}
|
85 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
@-webkit-keyframes ripple-out{100%{visibility:visible;top:-1em;right:-1em;bottom:-1em;left:-1em;opacity:0}
|
87 |
+
}@keyframes ripple-out{100%{visibility:visible;top:-1em;right:-1em;bottom:-1em;left:-1em;opacity:0}}
|
88 |
+
|
89 |
+
.active.in{position:relative;z-index:3}#share-bar .ssbp--theme-11 .ssbp-btn{margin:0 5px 0}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
.accor-wrap{margin:1rem 0 0;display:inline-block;width:100%}.accor-wrap .accor-tab{background:#4582ec;padding:.5rem;border-radius:5px;color:#fff}
|
91 |
.accor-wrap .well{display:inline-block;width:100%}.accor-wrap .well h3{margin:1rem 0}
|
92 |
.accor-wrap .well .col-md-12:first-of-type h3{margin-top:0}.accor-wrap .accor-content{display:none}
|
103 |
#ssba-copy-shortcode{width:6rem;padding:1.1rem;margin:-4px -6px 0}.whatsapp-message .ssbp-whatsapp{padding:1rem}
|
104 |
.whatsapp-message{background:#f7f7f7;padding:1rem;text-align:center}#ssba-preview-2 .ssbp-list li{margin-left:0 !important;margin-right:0 !important}
|
105 |
#ssba-preview-2 .ssbp-list li:first-of-type{margin-top:0 !important}.right li .ssbp-each-share{left:unset;right:100%;margin-right:-12px;margin-left:0}
|
106 |
+
.ssbp-container:not(.ssba-preview-content) .ssbp-list .ssbp-btn svg { height: 20px; width: 20px; }
|
107 |
+
.ssbp-container:not(.ssba-preview-content) .ssbp-list .ssbp-btn { margin-right: .5rem; cursor: pointer; }
|
108 |
+
.ssbp-container:not(.ssba-preview-content) .ssbp-list .ssbp-btn:hover {filter: brightness(1.2)}
|
109 |
+
|
110 |
+
.ssbp-btn .color-icon svg { display: none; }
|
111 |
+
.ssbp-btn svg,
|
112 |
+
.ssbp-btn img { height: 24px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 24px; }
|
113 |
+
.ssbp-btn { position: relative; transition: all .3s; }
|
114 |
+
|
115 |
+
.ssbp--theme-1 .ssbp-btn,
|
116 |
+
.ssbp--theme-6 .ssbp-btn { border-radius: 50%; }
|
117 |
+
.ssbp--theme-1 .ssbp-btn:hover span:not(.color-icon) svg { display: none; }
|
118 |
+
|
119 |
+
.ssbp--theme-2 .ssbp-btn { transition: all .3s; }
|
120 |
+
.ssbp--theme-2 .ssbp-btn:hover,
|
121 |
+
.ssbp--theme-3 .ssbp-btn:hover,
|
122 |
+
.ssbp--theme-4 .ssbp-btn:hover,
|
123 |
+
.ssbp--theme-10 .ssbp-btn:hover,
|
124 |
+
.ssbp--theme-11 .ssbp-btn:hover { filter: saturate(.5) }
|
125 |
+
|
126 |
+
.ssbp--theme-3 .ssbp-btn .ssbp-text,
|
127 |
+
.ssbp--theme-7 .ssbp-btn .ssbp-text {display: block;position: absolute;bottom: -21px;font-size: 13px;text-align: center;left: 50%;transform: translateX(-50%);text-shadow: 0 0 1px #8a8a8a;color: white;}
|
128 |
+
|
129 |
+
.ssbp--theme-4 .ssbp-btn,
|
130 |
+
.ssbp--theme-11 .ssbp-btn { border-radius: .5rem;}
|
131 |
+
|
132 |
+
.ssbp--theme-5 .ssbp-btn { box-shadow: 0 10px 12px rgb(0 0 0 / 33%) }
|
133 |
+
.ssbp--theme-5 .ssbp-btn:before { box-shadow: 0 8px 0; filter:brightness(.8); position: absolute; content: ''; bottom: 1px; left: 0; width: 100%; height: 8px;}
|
134 |
+
|
135 |
+
.ssbp--theme-6 .ssbp-btn:not(:hover) span:not(.color-icon) svg,
|
136 |
+
.ssbp--theme-7 .ssbp-btn:not(:hover) span:not(.color-icon) svg,
|
137 |
+
.ssbp--theme-9 .ssbp-btn img:not(.color-icon) { display:none; }
|
138 |
+
.ssbp--theme-6 .ssbp-btn:not(:hover) .color-icon svg,
|
139 |
+
.ssbp--theme-7 .ssbp-btn:not(:hover) .color-icon svg,
|
140 |
+
.ssbp--theme-9 .ssbp-btn .color-icon svg,
|
141 |
+
.ssbp--theme-1 .ssbp-btn:hover .color-icon svg { display: block; height: 20px; width: 20px; }
|
142 |
+
|
143 |
+
.ssbp--theme-1 .ssbp-btn:hover,
|
144 |
+
.ssbp--theme-6 .ssbp-btn:not(:hover),
|
145 |
+
.ssbp--theme-7 .ssbp-btn:not(:hover),
|
146 |
+
.ssbp--theme-8 .ssbp-btn { background-color: transparent!important; border: 2px solid; }
|
147 |
+
.ssbp--theme-8 .ssbp-btn { border-color: black; }
|
148 |
+
.ssbp--theme-8 .ssbp-btn { filter: saturate( 0 ) brightness( 0 ); }
|
149 |
+
.ssbp--theme-8 .ssbp-btn:hover { filter: saturate(0); background-color: black!important; }
|
150 |
+
|
151 |
+
.ssbp--theme-9 .ssbp-btn { background-color: transparent!important; border-bottom: 3px solid; }
|
152 |
+
.ssbp--theme-9 .ssbp-btn:hover { filter: brightness(1.4); }
|
153 |
+
|
154 |
+
.ssbp--theme-10 .ssbp-btn svg { height: unset!important; }
|
155 |
+
.ssbp--theme-10 .ssbp-btn,
|
156 |
+
.ssbp--theme-11 .ssbp-btn { height: auto!important; width: auto!important; padding: .5rem 1rem; }
|
157 |
+
.ssbp--theme-10 .ssbp-btn svg { position: unset; transform: none; padding: 1.5rem 0; }
|
158 |
+
|
159 |
+
.ssbp--theme-11 .ssbp-btn svg { display: none; }
|
160 |
+
.ssbp--theme-11 .ssbp-btn .ssbp-text,
|
161 |
+
.ssbp--theme-3 .ssbp-btn .ssbp-text { color: white!important; display: block; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/admin.css
CHANGED
@@ -30,6 +30,7 @@
|
|
30 |
padding: 15px;
|
31 |
width: 295px;
|
32 |
text-align: center;
|
|
|
33 |
}
|
34 |
|
35 |
.ssba-review-us #close-review-us {
|
30 |
padding: 15px;
|
31 |
width: 295px;
|
32 |
text-align: center;
|
33 |
+
z-index: 999;
|
34 |
}
|
35 |
|
36 |
.ssba-review-us #close-review-us {
|
css/ssba.css
CHANGED
@@ -1,14 +1,3 @@
|
|
1 |
-
.ssbp-line:before{content:url("../images/line.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
2 |
-
.ssbp--theme-1 .ssbp-line{background-color:#00c300;display:block}.ssbp--theme-1 .ssbp-line:before{left:50%;position:absolute;top:50%;padding-top:0;width:86%;height:100%;transform:translate(-50%,-37%)}
|
3 |
-
.ssbp--theme-1 .ssbp-line:hover,.ssbp--theme-1 .ssbp-line:focus,.ssbp--theme-1 .ssbp-line:active{color:#00c300;border-color:#00c300}
|
4 |
-
.ssbp--theme-1 .ssbp-line:hover:before,.ssbp--theme-1 .ssbp-line:focus:before,.ssbp--theme-1 .ssbp-line:active:before{content:url("../images/line-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:86%;height:100%;transform:translate(-50%,-37%)}
|
5 |
-
.ssbp--theme-1 .ssbp-line+.ssbp-each-share{background-color:#00c300}.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
6 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
7 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
8 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
9 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
10 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 12px !important;display:table-cell !important;width:auto;height:auto}
|
11 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
12 |
@-webkit-keyframes spin{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}
|
13 |
}@keyframes spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
|
14 |
}.ssbp-spinner:before{font-family:'ssbp';content:"\e614"}
|
@@ -20,19 +9,8 @@
|
|
20 |
.ssbp-chevron-up:before,.ssbp--state-hidden .ssbp-toggle-switch:before{content:"\e615"}
|
21 |
.ssbp-chevron-right:before,.ssbp--fixed-right .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-left .ssbp-toggle-switch:before{content:"\e616"}
|
22 |
.ssbp-chevron-left:before,.ssbp--fixed-left .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-right .ssbp-toggle-switch:before{content:"\e617"}
|
23 |
-
.ssbp-simplesharebuttons:before{content:"\e611"}
|
24 |
-
.ssbp-
|
25 |
-
.ssbp-buffer:before{content:"\e60d"}.ssbp-close:before{content:"\e614"}
|
26 |
-
.ssbp-twitter:before{content:"\e605"}.ssbp-reddit:before{content:"\e606"}
|
27 |
-
.ssbp-flattr:before{content:"\e607"}.ssbp-tumblr:before{content:"\e608"}
|
28 |
-
.ssbp-linkedin:before{content:"\e609"}.ssbp-google:before{content:"\e60a"}
|
29 |
-
.ssbp-xing:before{content:"\e610"}.ssbp-facebook:before{content:"\e60e"}
|
30 |
-
.ssbp-facebook_save:before{content:"\e900"}.ssbp-facebook-messenger:before{content:"\e611"}
|
31 |
-
.ssbp-vk:before{content:"\e600"}.ssbp-stumbleupon:before{content:"\e601"}
|
32 |
-
.ssbp-print:before{content:"\e602"}.ssbp-pinterest:before{content:"\e603"}
|
33 |
-
.ssbp-email:before{content:"\e604"}.ssbp-ellipsis:before{content:"\e612"}
|
34 |
-
.ssbp-x:before{content:"\e613"}@media print{.ssbp-wrap{display:none !important}
|
35 |
-
}.ssbp-wrap *,.ssbp-wrap *:before,.ssbp-wrap *:after{box-sizing:border-box}.ssbp-input-url-div,.ssbp-total-shares,.ssba-hide-button.ssbp-each-share,.ssbp-toggle-switch,.ssbp-text{display:none}
|
36 |
.ssbp-wrap{color:#272727;display:block;font-size:0;padding:0;position:relative;width:fit-content}
|
37 |
.ssbp-wrap.ssbp--centred{display:block;text-align:center}.ssbp-wrap.ssbp--aligned-right{display:block;text-align:right}
|
38 |
.ssbp-wrap.ssbp--aligned-right .ssbp-container{display:inline}.ssbp-wrap .ssbp-container{width:fit-content}
|
@@ -60,616 +38,76 @@
|
|
60 |
.ssbp--state-hidden.ssbp--fixed-bottom .ssbp-container{-webkit-transform:translateY(100%);transform:translateY(100%)}
|
61 |
.ssbp--state-hidden.ssbp--fixed-left .ssbp-container{-webkit-transform:translateX(-100%);transform:translateX(-100%)}
|
62 |
.ssbp--state-hidden.ssbp--fixed-right .ssbp-container{-webkit-transform:translateX(100%);transform:translateX(100%)}
|
63 |
-
|
64 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
65 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
66 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
67 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
68 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 12px !important;display:table-cell !important;width:auto;height:auto}
|
69 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
70 |
@-webkit-keyframes ripple-out{100%{visibility:visible;top:-1em;right:-1em;bottom:-1em;left:-1em;opacity:0}
|
71 |
}@keyframes ripple-out{100%{visibility:visible;top:-1em;right:-1em;bottom:-1em;left:-1em;opacity:0}
|
72 |
-
}
|
73 |
-
|
74 |
-
.ssbp--theme-1 .ssbp-btn:hover,.ssbp--theme-1 .ssbp-btn:focus,.ssbp--theme-1 .ssbp-btn:active{background-color:#fff;z-index:10}
|
75 |
-
.ssbp--theme-1 .ssbp-btn:visited{color:#fff}.ssbp--theme-1 .ssbp-btn:before{-webkit-transition:-webkit-transform .25s;transition:transform .25s}
|
76 |
-
.ssbp--theme-1 .ssbp-btn:active:before{-webkit-transform:scale(1.2);transform:scale(1.2)}
|
77 |
-
.ssbp--theme-1 .ssbp-btn:after{content:'';visibility:hidden;position:absolute;border:1px solid #fff;border-radius:50%;top:-1px;right:-1px;bottom:-1px;left:-1px;pointer-events:none;-webkit-animation-duration:.5s;animation-duration:.5s}
|
78 |
-
.ssbp--theme-1 .ssbp-btn:hover:after{-webkit-animation-name:ripple-out;animation-name:ripple-out}
|
79 |
-
.ssbp--theme-1[data-ssbp-counts="true"] .ssbp-list li{margin-left:13.2px}
|
80 |
-
.ssbp--theme-1[data-ssbp-counts="true"] .ssbp-list li:first-of-type{margin-left:0}
|
81 |
-
.ssbp--theme-1 .ssbp-buffer{background-color:#272727}.ssbp--theme-1 .ssbp-buffer:hover,.ssbp--theme-1 .ssbp-buffer:focus,.ssbp--theme-1 .ssbp-buffer:active{color:#272727;border-color:#272727}
|
82 |
-
.ssbp--theme-1 .ssbp-buffer+.ssbp-each-share{background-color:#272727}.ssbp--theme-1 .ssbp-diggit{background-color:#14589e}
|
83 |
-
.ssbp--theme-1 .ssbp-diggit:hover,.ssbp--theme-1 .ssbp-diggit:focus,.ssbp--theme-1 .ssbp-diggit:active{color:#14589e;border-color:#14589e}
|
84 |
-
.ssbp--theme-1 .ssbp-diggit+.ssbp-each-share{background-color:#14589e}.ssbp--theme-1 .ssbp-email{background-color:#787878}
|
85 |
-
.ssbp--theme-1 .ssbp-email:hover,.ssbp--theme-1 .ssbp-email:focus,.ssbp--theme-1 .ssbp-email:active{color:#787878;border-color:#787878}
|
86 |
-
.ssbp--theme-1 .ssbp-email+.ssbp-each-share{background-color:#787878}.ssbp--theme-1 .ssbp-ellipsis{background-color:#4582ec}
|
87 |
-
.ssbp--theme-1 .ssbp-ellipsis:hover,.ssbp--theme-1 .ssbp-ellipsis:focus,.ssbp--theme-1 .ssbp-ellipsis:active{color:#4582ec;border-color:#4582ec}
|
88 |
-
.ssbp--theme-1 .ssbp-ellipsis+.ssbp-each-share{background-color:#4582ec}.ssbp--theme-1 .ssbp-facebook{background-color:#3b5998}
|
89 |
-
.ssbp--theme-1 .ssbp-facebook:hover,.ssbp--theme-1 .ssbp-facebook:focus,.ssbp--theme-1 .ssbp-facebook:active{color:#3b5998;border-color:#3b5998}
|
90 |
-
.ssbp--theme-1 .ssbp-facebook+.ssbp-each-share{background-color:#3b5998}.ssbp--theme-1 .ssbp-facebook_save{background-color:#3b5998}
|
91 |
-
.ssbp--theme-1 .ssbp-facebook_save:hover,.ssbp--theme-1 .ssbp-facebook_save:focus,.ssbp--theme-1 .ssbp-facebook_save:active{color:#3b5998;border-color:#3b5998}
|
92 |
-
.ssbp--theme-1 .ssbp-facebook_save+.ssbp-each-share{background-color:#3b5998}.ssbp--theme-1 .ssbp-facebook-messenger{background-color:#0084ff}
|
93 |
-
.ssbp--theme-1 .ssbp-facebook-messenger:hover,.ssbp--theme-1 .ssbp-facebook-messenger:focus,.ssbp--theme-1 .ssbp-facebook-messenger:active{color:#0084ff;border-color:#0084ff}
|
94 |
-
.ssbp--theme-1 .ssbp-facebook-messenger+.ssbp-each-share{background-color:#0084ff}
|
95 |
-
.ssbp--theme-1 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-1 .ssbp-flattr:hover,.ssbp--theme-1 .ssbp-flattr:focus,.ssbp--theme-1 .ssbp-flattr:active{color:#f67c1a;border-color:#f67c1a}
|
96 |
-
.ssbp--theme-1 .ssbp-flattr+.ssbp-each-share{background-color:#f67c1a}.ssbp--theme-1 .ssbp-google{background-color:#dc4e41}
|
97 |
-
.ssbp--theme-1 .ssbp-google:hover,.ssbp--theme-1 .ssbp-google:focus,.ssbp--theme-1 .ssbp-google:active{color:#dc4e41;border-color:#dc4e41}
|
98 |
-
.ssbp--theme-1 .ssbp-google+.ssbp-each-share{background-color:#dc4e41}.ssbp--theme-1 .ssbp-linkedin{background-color:#007bb6}
|
99 |
-
.ssbp--theme-1 .ssbp-linkedin:hover,.ssbp--theme-1 .ssbp-linkedin:focus,.ssbp--theme-1 .ssbp-linkedin:active{color:#007bb6;border-color:#007bb6}
|
100 |
-
.ssbp--theme-1 .ssbp-linkedin+.ssbp-each-share{background-color:#007bb6}.ssbp--theme-1 .ssbp-pinterest{background-color:#ce1a19}
|
101 |
-
.ssbp--theme-1 .ssbp-pinterest:hover,.ssbp--theme-1 .ssbp-pinterest:focus,.ssbp--theme-1 .ssbp-pinterest:active{color:#ce1a19;border-color:#ce1a19}
|
102 |
-
.ssbp--theme-1 .ssbp-pinterest+.ssbp-each-share{background-color:#ce1a19}.ssbp--theme-1 .ssbp-print{background-color:#1f6b43}
|
103 |
-
.ssbp--theme-1 .ssbp-print:hover,.ssbp--theme-1 .ssbp-print:focus,.ssbp--theme-1 .ssbp-print:active{color:#1f6b43;border-color:#1f6b43}
|
104 |
-
.ssbp--theme-1 .ssbp-print+.ssbp-each-share{background-color:#1f6b43}.ssbp--theme-1 .ssbp-reddit{background-color:#ff4500}
|
105 |
-
.ssbp--theme-1 .ssbp-reddit:hover,.ssbp--theme-1 .ssbp-reddit:focus,.ssbp--theme-1 .ssbp-reddit:active{color:#ff4500;border-color:#ff4500}
|
106 |
-
.ssbp--theme-1 .ssbp-reddit+.ssbp-each-share{background-color:#ff4500}.ssbp--theme-1 .ssbp-simplesharebuttons{background-color:#4582ec}
|
107 |
-
.ssbp--theme-1 .ssbp-simplesharebuttons:hover,.ssbp--theme-1 .ssbp-simplesharebuttons:focus,.ssbp--theme-1 .ssbp-simplesharebuttons:active{color:#4582ec;border-color:#4582ec}
|
108 |
-
.ssbp--theme-1 .ssbp-simplesharebuttons+.ssbp-each-share{background-color:#4582ec}
|
109 |
-
.ssbp--theme-1 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-1 .ssbp-stumbleupon:hover,.ssbp--theme-1 .ssbp-stumbleupon:focus,.ssbp--theme-1 .ssbp-stumbleupon:active{color:#eb4924;border-color:#eb4924}
|
110 |
-
.ssbp--theme-1 .ssbp-stumbleupon+.ssbp-each-share{background-color:#eb4924}.ssbp--theme-1 .ssbp-tumblr{background-color:#2c4762}
|
111 |
-
.ssbp--theme-1 .ssbp-tumblr:hover,.ssbp--theme-1 .ssbp-tumblr:focus,.ssbp--theme-1 .ssbp-tumblr:active{color:#2c4762;border-color:#2c4762}
|
112 |
-
.ssbp--theme-1 .ssbp-tumblr+.ssbp-each-share{background-color:#2c4762}.ssbp--theme-1 .ssbp-twitter{background-color:#00a9f1}
|
113 |
-
.ssbp--theme-1 .ssbp-twitter:hover,.ssbp--theme-1 .ssbp-twitter:focus,.ssbp--theme-1 .ssbp-twitter:active{color:#00a9f1;border-color:#00a9f1}
|
114 |
-
.ssbp--theme-1 .ssbp-twitter+.ssbp-each-share{background-color:#00a9f1}.ssbp--theme-1 .ssbp-vk{background-color:#45668e}
|
115 |
-
.ssbp--theme-1 .ssbp-vk:hover,.ssbp--theme-1 .ssbp-vk:focus,.ssbp--theme-1 .ssbp-vk:active{color:#45668e;border-color:#45668e}
|
116 |
-
.ssbp--theme-1 .ssbp-vk+.ssbp-each-share{background-color:#45668e}.ssbp--theme-1 .ssbp-whatsapp{background-color:#34af23}
|
117 |
-
.ssbp--theme-1 .ssbp-whatsapp:hover,.ssbp--theme-1 .ssbp-whatsapp:focus,.ssbp--theme-1 .ssbp-whatsapp:active{color:#34af23;border-color:#34af23}
|
118 |
-
.ssbp--theme-1 .ssbp-whatsapp+.ssbp-each-share{background-color:#34af23}.ssbp--theme-1 .ssbp-yummly{background-color:#e16120}
|
119 |
-
.ssbp--theme-1 .ssbp-yummly:hover,.ssbp--theme-1 .ssbp-yummly:focus,.ssbp--theme-1 .ssbp-yummly:active{color:#e16120;border-color:#e16120}
|
120 |
-
.ssbp--theme-1 .ssbp-yummly+.ssbp-each-share{background-color:#e16120}.ssbp--theme-1 .ssbp-xing{background-color:#026466}
|
121 |
-
.ssbp--theme-1 .ssbp-xing:hover,.ssbp--theme-1 .ssbp-xing:focus,.ssbp--theme-1 .ssbp-xing:active{color:#026466;border-color:#026466}
|
122 |
-
.ssbp--theme-1 .ssbp-xing+.ssbp-each-share{background-color:#026466}.ssbp--theme-1 .ssbp-each-share{position:absolute;top:0;left:100%;z-index:11;margin-left:-12px;padding:2px;border-radius:6px;font-size:10px;color:#FFF}
|
123 |
-
.ssbp--theme-1.ssbp--fixed-right .ssbp-each-share{left:auto;right:100%;margin-left:0;margin-right:-12px}
|
124 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
125 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
126 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
127 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
128 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
129 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centered .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
130 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
131 |
-
.ssbp--theme-2 .ssbp-list li{overflow:hidden;margin:0}.ssbp--theme-2 .ssbp-btn{width:3em;height:3em;line-height:3em;position:relative;color:#fff;-webkit-transition:.25s;transition:.25s;border-bottom:0}
|
132 |
-
.ssbp--theme-2 .ssbp-btn:before{-webkit-transition:.25s;transition:.25s}.ssbp--theme-2 .ssbp-btn+.ssbp-each-share{position:absolute;z-index:10;bottom:0;left:0;right:0;-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:.25s;transition:.25s}
|
133 |
-
.ssbp--theme-2 .ssbp-btn:hover,.ssbp--theme-2 .ssbp-btn:focus,.ssbp--theme-2 .ssbp-btn:active,.ssbp--theme-2 .ssbp-btn:visited{z-index:10;color:#fff}
|
134 |
-
.ssbp--theme-2 .ssbp-btn:hover:before,.ssbp--theme-2 .ssbp-btn:focus:before,.ssbp--theme-2 .ssbp-btn:active:before,.ssbp--theme-2 .ssbp-btn:visited:before{-webkit-transform:none !important;transform:none !important}
|
135 |
-
.ssbp--theme-2 .ssbp-btn:hover+.ssbp-each-share,.ssbp--theme-2 .ssbp-btn:focus+.ssbp-each-share,.ssbp--theme-2 .ssbp-btn:active+.ssbp-each-share,.ssbp--theme-2 .ssbp-btn:visited+.ssbp-each-share{-webkit-transform:translateY(100%);transform:translateY(100%)}
|
136 |
-
.ssbp--theme-2 .ssbp-btn:active{-webkit-transform:scale(1.2);transform:scale(1.2)}
|
137 |
-
.ssbp--theme-2[data-ssbp-counts="true"] .ssbp-btn:before{-webkit-transform:translateY(-0.25em) scale(0.75);transform:translateY(-0.25em) scale(0.75)}
|
138 |
-
.ssbp--theme-2 .ssbp-buffer{background-color:#272727}.ssbp--theme-2 .ssbp-buffer:hover,.ssbp--theme-2 .ssbp-buffer:focus,.ssbp--theme-2 .ssbp-buffer:active{background-color:#0e0e0e}
|
139 |
-
.ssbp--theme-2 .ssbp-diggit{background-color:#14589e}.ssbp--theme-2 .ssbp-diggit:hover,.ssbp--theme-2 .ssbp-diggit:focus,.ssbp--theme-2 .ssbp-diggit:active{background-color:#0e3f71}
|
140 |
-
.ssbp--theme-2 .ssbp-email{background-color:#787878}.ssbp--theme-2 .ssbp-email:hover,.ssbp--theme-2 .ssbp-email:focus,.ssbp--theme-2 .ssbp-email:active{background-color:#5f5f5f}
|
141 |
-
.ssbp--theme-2 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-2 .ssbp-ellipsis:hover,.ssbp--theme-2 .ssbp-ellipsis:focus,.ssbp--theme-2 .ssbp-ellipsis:active{background-color:#1863e6}
|
142 |
-
.ssbp--theme-2 .ssbp-facebook{background-color:#3b5998}.ssbp--theme-2 .ssbp-facebook:hover,.ssbp--theme-2 .ssbp-facebook:focus,.ssbp--theme-2 .ssbp-facebook:active{background-color:#2d4373}
|
143 |
-
.ssbp--theme-2 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-2 .ssbp-facebook_save:hover,.ssbp--theme-2 .ssbp-facebook_save:focus,.ssbp--theme-2 .ssbp-facebook_save:active{background-color:#2d4373}
|
144 |
-
.ssbp--theme-2 .ssbp-facebook-messenger{background-color:#0084ff}.ssbp--theme-2 .ssbp-facebook-messenger:hover,.ssbp--theme-2 .ssbp-facebook-messenger:focus,.ssbp--theme-2 .ssbp-facebook-messenger:active{background-color:#006acc}
|
145 |
-
.ssbp--theme-2 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-2 .ssbp-flattr:hover,.ssbp--theme-2 .ssbp-flattr:focus,.ssbp--theme-2 .ssbp-flattr:active{background-color:#d56308}
|
146 |
-
.ssbp--theme-2 .ssbp-google{background-color:#dc4e41}.ssbp--theme-2 .ssbp-google:hover,.ssbp--theme-2 .ssbp-google:focus,.ssbp--theme-2 .ssbp-google:active{background-color:#c63224}
|
147 |
-
.ssbp--theme-2 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-2 .ssbp-linkedin:hover,.ssbp--theme-2 .ssbp-linkedin:focus,.ssbp--theme-2 .ssbp-linkedin:active{background-color:#005983}
|
148 |
-
.ssbp--theme-2 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-2 .ssbp-pinterest:hover,.ssbp--theme-2 .ssbp-pinterest:focus,.ssbp--theme-2 .ssbp-pinterest:active{background-color:#a11413}
|
149 |
-
.ssbp--theme-2 .ssbp-print{background-color:#1f6b43}.ssbp--theme-2 .ssbp-print:hover,.ssbp--theme-2 .ssbp-print:focus,.ssbp--theme-2 .ssbp-print:active{background-color:#14432a}
|
150 |
-
.ssbp--theme-2 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-2 .ssbp-reddit:hover,.ssbp--theme-2 .ssbp-reddit:focus,.ssbp--theme-2 .ssbp-reddit:active{background-color:#cc3700}
|
151 |
-
.ssbp--theme-2 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-2 .ssbp-simplesharebuttons:hover,.ssbp--theme-2 .ssbp-simplesharebuttons:focus,.ssbp--theme-2 .ssbp-simplesharebuttons:active{background-color:#1863e6}
|
152 |
-
.ssbp--theme-2 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-2 .ssbp-stumbleupon:hover,.ssbp--theme-2 .ssbp-stumbleupon:focus,.ssbp--theme-2 .ssbp-stumbleupon:active{background-color:#ca3412}
|
153 |
-
.ssbp--theme-2 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-2 .ssbp-tumblr:hover,.ssbp--theme-2 .ssbp-tumblr:focus,.ssbp--theme-2 .ssbp-tumblr:active{background-color:#1c2e3f}
|
154 |
-
.ssbp--theme-2 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-2 .ssbp-twitter:hover,.ssbp--theme-2 .ssbp-twitter:focus,.ssbp--theme-2 .ssbp-twitter:active{background-color:#0085be}
|
155 |
-
.ssbp--theme-2 .ssbp-vk{background-color:#45668e}.ssbp--theme-2 .ssbp-vk:hover,.ssbp--theme-2 .ssbp-vk:focus,.ssbp--theme-2 .ssbp-vk:active{background-color:#344d6c}
|
156 |
-
.ssbp--theme-2 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-2 .ssbp-whatsapp:hover,.ssbp--theme-2 .ssbp-whatsapp:focus,.ssbp--theme-2 .ssbp-whatsapp:active{background-color:#27851b}
|
157 |
-
.ssbp--theme-2 .ssbp-yummly{background-color:#e16120}.ssbp--theme-2 .ssbp-yummly:hover,.ssbp--theme-2 .ssbp-yummly:focus,.ssbp--theme-2 .ssbp-yummly:active{background-color:#b64d18}
|
158 |
-
.ssbp--theme-2 .ssbp-xing{background-color:#026466}.ssbp--theme-2 .ssbp-xing:hover,.ssbp--theme-2 .ssbp-xing:focus,.ssbp--theme-2 .ssbp-xing:active{background-color:#013334}
|
159 |
-
.ssbp--theme-2 .ssbp-each-share{padding:2px;background-color:rgba(0,0,0,0.1);font-size:10px;text-align:center;color:#FFF}
|
160 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
161 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
162 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
163 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
164 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
165 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
166 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
167 |
-
.ssbp--theme-3 .ssbp-list li{margin:0;margin-bottom:1rem}.ssbp--theme-3 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12px;margin-left:.5em;text-shadow:-1px -1px rgba(0,0,0,0.2)}
|
168 |
-
.ssbp--theme-3 .ssbp-btn{display:block;padding:.5em 1em;color:#fff;text-shadow:-1px -1px rgba(0,0,0,0.2);-webkit-transition:background-color .25s;transition:background-color .25s;border-bottom:0}
|
169 |
-
.ssbp--theme-3 .ssbp-btn:before{vertical-align:middle}.ssbp--theme-3 .ssbp-btn:active{box-shadow:inset 0 0 .5em rgba(0,0,0,0.33)}
|
170 |
-
.ssbp--theme-3 .ssbp-btn:hover,.ssbp--theme-3 .ssbp-btn:focus,.ssbp--theme-3 .ssbp-btn:active,.ssbp--theme-3 .ssbp-btn:visited{color:#fff}
|
171 |
-
.ssbp--theme-3 .ssbp-buffer{background-color:#272727}.ssbp--theme-3 .ssbp-buffer:hover,.ssbp--theme-3 .ssbp-buffer:focus,.ssbp--theme-3 .ssbp-buffer:active,.ssbp--theme-3 .ssbp-buffer+.ssbp-each-share{background-color:#0e0e0e}
|
172 |
-
.ssbp--theme-3 .ssbp-diggit{background-color:#14589e}.ssbp--theme-3 .ssbp-diggit:hover,.ssbp--theme-3 .ssbp-diggit:focus,.ssbp--theme-3 .ssbp-diggit:active,.ssbp--theme-3 .ssbp-diggit+.ssbp-each-share{background-color:#0e3f71}
|
173 |
-
.ssbp--theme-3 .ssbp-email{background-color:#787878}.ssbp--theme-3 .ssbp-email:hover,.ssbp--theme-3 .ssbp-email:focus,.ssbp--theme-3 .ssbp-email:active,.ssbp--theme-3 .ssbp-email+.ssbp-each-share{background-color:#5f5f5f}
|
174 |
-
.ssbp--theme-3 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-3 .ssbp-ellipsis:hover,.ssbp--theme-3 .ssbp-ellipsis:focus,.ssbp--theme-3 .ssbp-ellipsis:active,.ssbp--theme-3 .ssbp-ellipsis+.ssbp-each-share{background-color:#1863e6}
|
175 |
-
.ssbp--theme-3 .ssbp-facebook{background-color:#3b5998}.ssbp--theme-3 .ssbp-facebook:hover,.ssbp--theme-3 .ssbp-facebook:focus,.ssbp--theme-3 .ssbp-facebook:active,.ssbp--theme-3 .ssbp-facebook+.ssbp-each-share{background-color:#2d4373}
|
176 |
-
.ssbp--theme-3 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-3 .ssbp-facebook_save:hover,.ssbp--theme-3 .ssbp-facebook_save:focus,.ssbp--theme-3 .ssbp-facebook_save:active,.ssbp--theme-3 .ssbp-facebook_save+.ssbp-each-share{background-color:#2d4373}
|
177 |
-
.ssbp--theme-3 .ssbp-facebook-messenger{background-color:#0084ff}.ssbp--theme-3 .ssbp-facebook-messenger:hover,.ssbp--theme-3 .ssbp-facebook-messenger:focus,.ssbp--theme-3 .ssbp-facebook-messenger:active,.ssbp--theme-3 .ssbp-facebook-messenger+.ssbp-each-share{background-color:#006acc}
|
178 |
-
.ssbp--theme-3 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-3 .ssbp-flattr:hover,.ssbp--theme-3 .ssbp-flattr:focus,.ssbp--theme-3 .ssbp-flattr:active,.ssbp--theme-3 .ssbp-flattr+.ssbp-each-share{background-color:#d56308}
|
179 |
-
.ssbp--theme-3 .ssbp-google{background-color:#dc4e41}.ssbp--theme-3 .ssbp-google:hover,.ssbp--theme-3 .ssbp-google:focus,.ssbp--theme-3 .ssbp-google:active,.ssbp--theme-3 .ssbp-google+.ssbp-each-share{background-color:#c63224}
|
180 |
-
.ssbp--theme-3 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-3 .ssbp-linkedin:hover,.ssbp--theme-3 .ssbp-linkedin:focus,.ssbp--theme-3 .ssbp-linkedin:active,.ssbp--theme-3 .ssbp-linkedin+.ssbp-each-share{background-color:#005983}
|
181 |
-
.ssbp--theme-3 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-3 .ssbp-pinterest:hover,.ssbp--theme-3 .ssbp-pinterest:focus,.ssbp--theme-3 .ssbp-pinterest:active,.ssbp--theme-3 .ssbp-pinterest+.ssbp-each-share{background-color:#a11413}
|
182 |
-
.ssbp--theme-3 .ssbp-print{background-color:#1f6b43}.ssbp--theme-3 .ssbp-print:hover,.ssbp--theme-3 .ssbp-print:focus,.ssbp--theme-3 .ssbp-print:active,.ssbp--theme-3 .ssbp-print+.ssbp-each-share{background-color:#14432a}
|
183 |
-
.ssbp--theme-3 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-3 .ssbp-reddit:hover,.ssbp--theme-3 .ssbp-reddit:focus,.ssbp--theme-3 .ssbp-reddit:active,.ssbp--theme-3 .ssbp-reddit+.ssbp-each-share{background-color:#cc3700}
|
184 |
-
.ssbp--theme-3 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-3 .ssbp-simplesharebuttons:hover,.ssbp--theme-3 .ssbp-simplesharebuttons:focus,.ssbp--theme-3 .ssbp-simplesharebuttons:active,.ssbp--theme-3 .ssbp-simplesharebuttons+.ssbp-each-share{background-color:#1863e6}
|
185 |
-
.ssbp--theme-3 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-3 .ssbp-stumbleupon:hover,.ssbp--theme-3 .ssbp-stumbleupon:focus,.ssbp--theme-3 .ssbp-stumbleupon:active,.ssbp--theme-3 .ssbp-stumbleupon+.ssbp-each-share{background-color:#ca3412}
|
186 |
-
.ssbp--theme-3 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-3 .ssbp-tumblr:hover,.ssbp--theme-3 .ssbp-tumblr:focus,.ssbp--theme-3 .ssbp-tumblr:active,.ssbp--theme-3 .ssbp-tumblr+.ssbp-each-share{background-color:#1c2e3f}
|
187 |
-
.ssbp--theme-3 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-3 .ssbp-twitter:hover,.ssbp--theme-3 .ssbp-twitter:focus,.ssbp--theme-3 .ssbp-twitter:active,.ssbp--theme-3 .ssbp-twitter+.ssbp-each-share{background-color:#0085be}
|
188 |
-
.ssbp--theme-3 .ssbp-vk{background-color:#45668e}.ssbp--theme-3 .ssbp-vk:hover,.ssbp--theme-3 .ssbp-vk:focus,.ssbp--theme-3 .ssbp-vk:active,.ssbp--theme-3 .ssbp-vk+.ssbp-each-share{background-color:#344d6c}
|
189 |
-
.ssbp--theme-3 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-3 .ssbp-whatsapp:hover,.ssbp--theme-3 .ssbp-whatsapp:focus,.ssbp--theme-3 .ssbp-whatsapp:active,.ssbp--theme-3 .ssbp-whatsapp+.ssbp-each-share{background-color:#27851b}
|
190 |
-
.ssbp--theme-3 .ssbp-yummly{background-color:#e16120}.ssbp--theme-3 .ssbp-yummly:hover,.ssbp--theme-3 .ssbp-yummly:focus,.ssbp--theme-3 .ssbp-yummly:active,.ssbp--theme-3 .ssbp-yummly+.ssbp-each-share{background-color:#b64d18}
|
191 |
-
.ssbp--theme-3 .ssbp-xing{background-color:#026466}.ssbp--theme-3 .ssbp-xing:hover,.ssbp--theme-3 .ssbp-xing:focus,.ssbp--theme-3 .ssbp-xing:active,.ssbp--theme-3 .ssbp-xing+.ssbp-each-share{background-color:#013334}
|
192 |
-
.ssbp--theme-3 .ssbp-each-share{padding:2px;font-size:10px;text-align:center;color:#FFF}
|
193 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
194 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
195 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
196 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
197 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
198 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 12px !important;display:table-cell !important;width:auto;height:auto}
|
199 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
200 |
-
.ssbp--theme-4[class*="ssbp--fixed"] .ssbp-container{background-color:rgba(255,255,255,0.8);padding:8px}
|
201 |
-
.ssbp--theme-4 .ssbp-btn{width:3em;height:3em;line-height:3em;border-radius:7.5px;color:#fff;-webkit-transition:background-color .25s;transition:background-color .25s;box-shadow:inset 0 -1.5em 2em rgba(255,255,255,0.1);border-bottom:0}
|
202 |
-
.ssbp--theme-4 .ssbp-btn:hover,.ssbp--theme-4 .ssbp-btn:focus,.ssbp--theme-4 .ssbp-btn:active{box-shadow:inset 0 -1.5em 2em rgba(255,255,255,0.1),inset 0 0 3.5em rgba(0,0,0,0.33)}
|
203 |
-
.ssbp--theme-4 .ssbp-btn:hover,.ssbp--theme-4 .ssbp-btn:focus,.ssbp--theme-4 .ssbp-btn:active,.ssbp--theme-4 .ssbp-btn:visited{color:#fff}
|
204 |
-
.ssbp--theme-4 .ssbp-list li{margin-left:12px}.ssbp--theme-4 .ssbp-buffer{background-color:#272727}
|
205 |
-
.ssbp--theme-4 .ssbp-diggit{background-color:#14589e}.ssbp--theme-4 .ssbp-email{background-color:#787878}
|
206 |
-
.ssbp--theme-4 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-4 .ssbp-facebook{background-color:#3b5998}
|
207 |
-
.ssbp--theme-4 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-4 .ssbp-facebook-messenger{background-color:#0084ff}
|
208 |
-
.ssbp--theme-4 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-4 .ssbp-google{background-color:#dc4e41}
|
209 |
-
.ssbp--theme-4 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-4 .ssbp-pinterest{background-color:#ce1a19}
|
210 |
-
.ssbp--theme-4 .ssbp-print{background-color:#1f6b43}.ssbp--theme-4 .ssbp-reddit{background-color:#ff4500}
|
211 |
-
.ssbp--theme-4 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-4 .ssbp-stumbleupon{background-color:#eb4924}
|
212 |
-
.ssbp--theme-4 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-4 .ssbp-twitter{background-color:#00a9f1}
|
213 |
-
.ssbp--theme-4 .ssbp-vk{background-color:#45668e}.ssbp--theme-4 .ssbp-whatsapp{background-color:#34af23}
|
214 |
-
.ssbp--theme-4 .ssbp-yummly{background-color:#e16120}.ssbp--theme-4 .ssbp-xing{background-color:#026466}
|
215 |
-
.ssbp--theme-4 .ssbp-each-share{position:absolute;bottom:100%;right:0;z-index:11;min-width:1.25em;margin-right:-6px;margin-bottom:-8px;padding:2px 4px;border-radius:8px;background-color:#f22121;font-size:10px;color:#FFF;text-align:center}
|
216 |
-
.ssbp--theme-4.ssbp--fixed-right .ssbp-each-share{left:auto;right:100%;margin-left:0;margin-right:-16px}
|
217 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
218 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
219 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
220 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
221 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
222 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
223 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
224 |
-
.ssbp--theme-5 .ssbp-btn{width:4em;height:3em;line-height:3em;margin-bottom:8px;color:#fff;-webkit-transition:.25s;transition:.25s;border-bottom:0}
|
225 |
-
.ssbp--theme-5 .ssbp-btn:active{-webkit-transform:translateY(4px);transform:translateY(4px)}
|
226 |
-
.ssbp--theme-5 .ssbp-btn:hover,.ssbp--theme-5 .ssbp-btn:focus,.ssbp--theme-5 .ssbp-btn:active,.ssbp--theme-5 .ssbp-btn:visited{color:#fff}
|
227 |
-
.ssbp--theme-5.ssbp--stacked .ssbp-list li,.ssbp--theme-5.ssbp-wrap.ssbp--fixed-left .ssbp-list li,.ssbp--theme-5.ssbp-wrap.ssbp--fixed-right .ssbp-list li{margin-top:0}
|
228 |
-
.ssbp--theme-5 .ssbp-buffer{background-color:#272727;box-shadow:0 8px 0 #0e0e0e,0 10px 12px rgba(0,0,0,0.33)}
|
229 |
-
.ssbp--theme-5 .ssbp-buffer:active{box-shadow:0 4px 0 #0e0e0e,0 5px 6px rgba(0,0,0,0.33)}
|
230 |
-
.ssbp--theme-5 .ssbp-diggit{background-color:#14589e;box-shadow:0 8px 0 #0e3f71,0 10px 12px rgba(0,0,0,0.33)}
|
231 |
-
.ssbp--theme-5 .ssbp-diggit:active{box-shadow:0 4px 0 #0e3f71,0 5px 6px rgba(0,0,0,0.33)}
|
232 |
-
.ssbp--theme-5 .ssbp-email{background-color:#787878;box-shadow:0 8px 0 #5f5f5f,0 10px 12px rgba(0,0,0,0.33)}
|
233 |
-
.ssbp--theme-5 .ssbp-email:active{box-shadow:0 4px 0 #5f5f5f,0 5px 6px rgba(0,0,0,0.33)}
|
234 |
-
.ssbp--theme-5 .ssbp-ellipsis{background-color:#4582ec;box-shadow:0 8px 0 #1863e6,0 10px 12px rgba(0,0,0,0.33)}
|
235 |
-
.ssbp--theme-5 .ssbp-ellipsis:active{box-shadow:0 4px 0 #1863e6,0 5px 6px rgba(0,0,0,0.33)}
|
236 |
-
.ssbp--theme-5 .ssbp-facebook{background-color:#3b5998;box-shadow:0 8px 0 #2d4373,0 10px 12px rgba(0,0,0,0.33)}
|
237 |
-
.ssbp--theme-5 .ssbp-facebook:active{box-shadow:0 4px 0 #2d4373,0 5px 6px rgba(0,0,0,0.33)}
|
238 |
-
.ssbp--theme-5 .ssbp-facebook_save{background-color:#3b5998;box-shadow:0 8px 0 #2d4373,0 10px 12px rgba(0,0,0,0.33)}
|
239 |
-
.ssbp--theme-5 .ssbp-facebook_save:active{box-shadow:0 4px 0 #2d4373,0 5px 6px rgba(0,0,0,0.33)}
|
240 |
-
.ssbp--theme-5 .ssbp-facebook-messenger{background-color:#0084ff;box-shadow:0 8px 0 #006acc,0 10px 12px rgba(0,0,0,0.33)}
|
241 |
-
.ssbp--theme-5 .ssbp-facebook-messenger:active{box-shadow:0 4px 0 #006acc,0 5px 6px rgba(0,0,0,0.33)}
|
242 |
-
.ssbp--theme-5 .ssbp-flattr{background-color:#f67c1a;box-shadow:0 8px 0 #d56308,0 10px 12px rgba(0,0,0,0.33)}
|
243 |
-
.ssbp--theme-5 .ssbp-flattr:active{box-shadow:0 4px 0 #d56308,0 5px 6px rgba(0,0,0,0.33)}
|
244 |
-
.ssbp--theme-5 .ssbp-google{background-color:#dc4e41;box-shadow:0 8px 0 #c63224,0 10px 12px rgba(0,0,0,0.33)}
|
245 |
-
.ssbp--theme-5 .ssbp-google:active{box-shadow:0 4px 0 #c63224,0 5px 6px rgba(0,0,0,0.33)}
|
246 |
-
.ssbp--theme-5 .ssbp-linkedin{background-color:#007bb6;box-shadow:0 8px 0 #005983,0 10px 12px rgba(0,0,0,0.33)}
|
247 |
-
.ssbp--theme-5 .ssbp-linkedin:active{box-shadow:0 4px 0 #005983,0 5px 6px rgba(0,0,0,0.33)}
|
248 |
-
.ssbp--theme-5 .ssbp-pinterest{background-color:#ce1a19;box-shadow:0 8px 0 #a11413,0 10px 12px rgba(0,0,0,0.33)}
|
249 |
-
.ssbp--theme-5 .ssbp-pinterest:active{box-shadow:0 4px 0 #a11413,0 5px 6px rgba(0,0,0,0.33)}
|
250 |
-
.ssbp--theme-5 .ssbp-print{background-color:#1f6b43;box-shadow:0 8px 0 #14432a,0 10px 12px rgba(0,0,0,0.33)}
|
251 |
-
.ssbp--theme-5 .ssbp-print:active{box-shadow:0 4px 0 #14432a,0 5px 6px rgba(0,0,0,0.33)}
|
252 |
-
.ssbp--theme-5 .ssbp-reddit{background-color:#ff4500;box-shadow:0 8px 0 #cc3700,0 10px 12px rgba(0,0,0,0.33)}
|
253 |
-
.ssbp--theme-5 .ssbp-reddit:active{box-shadow:0 4px 0 #cc3700,0 5px 6px rgba(0,0,0,0.33)}
|
254 |
-
.ssbp--theme-5 .ssbp-simplesharebuttons{background-color:#4582ec;box-shadow:0 8px 0 #1863e6,0 10px 12px rgba(0,0,0,0.33)}
|
255 |
-
.ssbp--theme-5 .ssbp-simplesharebuttons:active{box-shadow:0 4px 0 #1863e6,0 5px 6px rgba(0,0,0,0.33)}
|
256 |
-
.ssbp--theme-5 .ssbp-stumbleupon{background-color:#eb4924;box-shadow:0 8px 0 #ca3412,0 10px 12px rgba(0,0,0,0.33)}
|
257 |
-
.ssbp--theme-5 .ssbp-stumbleupon:active{box-shadow:0 4px 0 #ca3412,0 5px 6px rgba(0,0,0,0.33)}
|
258 |
-
.ssbp--theme-5 .ssbp-tumblr{background-color:#2c4762;box-shadow:0 8px 0 #1c2e3f,0 10px 12px rgba(0,0,0,0.33)}
|
259 |
-
.ssbp--theme-5 .ssbp-tumblr:active{box-shadow:0 4px 0 #1c2e3f,0 5px 6px rgba(0,0,0,0.33)}
|
260 |
-
.ssbp--theme-5 .ssbp-twitter{background-color:#00a9f1;box-shadow:0 8px 0 #0085be,0 10px 12px rgba(0,0,0,0.33)}
|
261 |
-
.ssbp--theme-5 .ssbp-twitter:active{box-shadow:0 4px 0 #0085be,0 5px 6px rgba(0,0,0,0.33)}
|
262 |
-
.ssbp--theme-5 .ssbp-vk{background-color:#45668e;box-shadow:0 8px 0 #344d6c,0 10px 12px rgba(0,0,0,0.33)}
|
263 |
-
.ssbp--theme-5 .ssbp-vk:active{box-shadow:0 4px 0 #344d6c,0 5px 6px rgba(0,0,0,0.33)}
|
264 |
-
.ssbp--theme-5 .ssbp-whatsapp{background-color:#34af23;box-shadow:0 8px 0 #27851b,0 10px 12px rgba(0,0,0,0.33)}
|
265 |
-
.ssbp--theme-5 .ssbp-whatsapp:active{box-shadow:0 4px 0 #27851b,0 5px 6px rgba(0,0,0,0.33)}
|
266 |
-
.ssbp--theme-5 .ssbp-yummly{background-color:#e16120;box-shadow:0 8px 0 #b64d18,0 10px 12px rgba(0,0,0,0.33)}
|
267 |
-
.ssbp--theme-5 .ssbp-yummly:active{box-shadow:0 4px 0 #b64d18,0 5px 6px rgba(0,0,0,0.33)}
|
268 |
-
.ssbp--theme-5 .ssbp-xing{background-color:#026466;box-shadow:0 8px 0 #013334,0 10px 12px rgba(0,0,0,0.33)}
|
269 |
-
.ssbp--theme-5 .ssbp-xing:active{box-shadow:0 4px 0 #013334,0 5px 6px rgba(0,0,0,0.33)}
|
270 |
-
.ssbp--theme-5 .ssbp-each-share{padding-top:3px;text-align:center;font-size:12px}
|
271 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
272 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
273 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
274 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
275 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
276 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 12px !important;display:table-cell !important;width:auto;height:auto}
|
277 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
278 |
-
.ssbp--theme-6[class*="ssbp--fixed"] .ssbp-container{background-color:rgba(255,255,255,0.8);padding:6px}
|
279 |
-
.ssbp--theme-6 .ssbp-btn{width:3em;height:3em;line-height:3em;border:2px solid #fff;border-radius:50%;background-color:#fff;-webkit-transition:.25s;transition:.25s}
|
280 |
-
.ssbp--theme-6 .ssbp-btn:hover,.ssbp--theme-6 .ssbp-btn:focus,.ssbp--theme-6 .ssbp-btn:active{color:#fff}
|
281 |
-
.ssbp--theme-6 .ssbp-list li{margin-left:12px}.ssbp--theme-6 .ssbp-buffer{border-color:#272727;color:#272727}
|
282 |
-
.ssbp--theme-6 .ssbp-buffer:hover,.ssbp--theme-6 .ssbp-buffer:focus,.ssbp--theme-6 .ssbp-buffer:active{background-color:#272727}
|
283 |
-
.ssbp--theme-6 .ssbp-buffer+.ssbp-each-share{color:#272727;border-color:#272727}.ssbp--theme-6 .ssbp-diggit{border-color:#14589e;color:#14589e}
|
284 |
-
.ssbp--theme-6 .ssbp-diggit:hover,.ssbp--theme-6 .ssbp-diggit:focus,.ssbp--theme-6 .ssbp-diggit:active{background-color:#14589e}
|
285 |
-
.ssbp--theme-6 .ssbp-diggit+.ssbp-each-share{color:#14589e;border-color:#14589e}.ssbp--theme-6 .ssbp-email{border-color:#787878;color:#787878}
|
286 |
-
.ssbp--theme-6 .ssbp-email:hover,.ssbp--theme-6 .ssbp-email:focus,.ssbp--theme-6 .ssbp-email:active{background-color:#787878}
|
287 |
-
.ssbp--theme-6 .ssbp-email+.ssbp-each-share{color:#787878;border-color:#787878}.ssbp--theme-6 .ssbp-ellipsis{border-color:#4582ec;color:#4582ec}
|
288 |
-
.ssbp--theme-6 .ssbp-ellipsis:hover,.ssbp--theme-6 .ssbp-ellipsis:focus,.ssbp--theme-6 .ssbp-ellipsis:active{background-color:#4582ec}
|
289 |
-
.ssbp--theme-6 .ssbp-ellipsis+.ssbp-each-share{color:#4582ec;border-color:#4582ec}
|
290 |
-
.ssbp--theme-6 .ssbp-facebook{border-color:#3b5998;color:#3b5998}.ssbp--theme-6 .ssbp-facebook:hover,.ssbp--theme-6 .ssbp-facebook:focus,.ssbp--theme-6 .ssbp-facebook:active{background-color:#3b5998}
|
291 |
-
.ssbp--theme-6 .ssbp-facebook+.ssbp-each-share{color:#3b5998;border-color:#3b5998}
|
292 |
-
.ssbp--theme-6 .ssbp-facebook_save{border-color:#3b5998;color:#3b5998}.ssbp--theme-6 .ssbp-facebook_save:hover,.ssbp--theme-6 .ssbp-facebook_save:focus,.ssbp--theme-6 .ssbp-facebook_save:active{background-color:#3b5998}
|
293 |
-
.ssbp--theme-6 .ssbp-facebook_save+.ssbp-each-share{color:#3b5998;border-color:#3b5998}
|
294 |
-
.ssbp--theme-6 .ssbp-facebook-messenger{border-color:#0084ff;color:#0084ff}.ssbp--theme-6 .ssbp-facebook-messenger:hover,.ssbp--theme-6 .ssbp-facebook-messenger:focus,.ssbp--theme-6 .ssbp-facebook-messenger:active{background-color:#0084ff}
|
295 |
-
.ssbp--theme-6 .ssbp-facebook-messenger+.ssbp-each-share{color:#0084ff;border-color:#0084ff}
|
296 |
-
.ssbp--theme-6 .ssbp-flattr{border-color:#f67c1a;color:#f67c1a}.ssbp--theme-6 .ssbp-flattr:hover,.ssbp--theme-6 .ssbp-flattr:focus,.ssbp--theme-6 .ssbp-flattr:active{background-color:#f67c1a}
|
297 |
-
.ssbp--theme-6 .ssbp-flattr+.ssbp-each-share{color:#f67c1a;border-color:#f67c1a}.ssbp--theme-6 .ssbp-google{border-color:#dc4e41;color:#dc4e41}
|
298 |
-
.ssbp--theme-6 .ssbp-google:hover,.ssbp--theme-6 .ssbp-google:focus,.ssbp--theme-6 .ssbp-google:active{background-color:#dc4e41}
|
299 |
-
.ssbp--theme-6 .ssbp-google+.ssbp-each-share{color:#dc4e41;border-color:#dc4e41}.ssbp--theme-6 .ssbp-linkedin{border-color:#007bb6;color:#007bb6}
|
300 |
-
.ssbp--theme-6 .ssbp-linkedin:hover,.ssbp--theme-6 .ssbp-linkedin:focus,.ssbp--theme-6 .ssbp-linkedin:active{background-color:#007bb6}
|
301 |
-
.ssbp--theme-6 .ssbp-linkedin+.ssbp-each-share{color:#007bb6;border-color:#007bb6}
|
302 |
-
.ssbp--theme-6 .ssbp-pinterest{border-color:#ce1a19;color:#ce1a19}.ssbp--theme-6 .ssbp-pinterest:hover,.ssbp--theme-6 .ssbp-pinterest:focus,.ssbp--theme-6 .ssbp-pinterest:active{background-color:#ce1a19}
|
303 |
-
.ssbp--theme-6 .ssbp-pinterest+.ssbp-each-share{color:#ce1a19;border-color:#ce1a19}
|
304 |
-
.ssbp--theme-6 .ssbp-print{border-color:#1f6b43;color:#1f6b43}.ssbp--theme-6 .ssbp-print:hover,.ssbp--theme-6 .ssbp-print:focus,.ssbp--theme-6 .ssbp-print:active{background-color:#1f6b43}
|
305 |
-
.ssbp--theme-6 .ssbp-print+.ssbp-each-share{color:#1f6b43;border-color:#1f6b43}.ssbp--theme-6 .ssbp-reddit{border-color:#ff4500;color:#ff4500}
|
306 |
-
.ssbp--theme-6 .ssbp-reddit:hover,.ssbp--theme-6 .ssbp-reddit:focus,.ssbp--theme-6 .ssbp-reddit:active{background-color:#ff4500}
|
307 |
-
.ssbp--theme-6 .ssbp-reddit+.ssbp-each-share{color:#ff4500;border-color:#ff4500}.ssbp--theme-6 .ssbp-simplesharebuttons{border-color:#4582ec;color:#4582ec}
|
308 |
-
.ssbp--theme-6 .ssbp-simplesharebuttons:hover,.ssbp--theme-6 .ssbp-simplesharebuttons:focus,.ssbp--theme-6 .ssbp-simplesharebuttons:active{background-color:#4582ec}
|
309 |
-
.ssbp--theme-6 .ssbp-simplesharebuttons+.ssbp-each-share{color:#4582ec;border-color:#4582ec}
|
310 |
-
.ssbp--theme-6 .ssbp-stumbleupon{border-color:#eb4924;color:#eb4924}.ssbp--theme-6 .ssbp-stumbleupon:hover,.ssbp--theme-6 .ssbp-stumbleupon:focus,.ssbp--theme-6 .ssbp-stumbleupon:active{background-color:#eb4924}
|
311 |
-
.ssbp--theme-6 .ssbp-stumbleupon+.ssbp-each-share{color:#eb4924;border-color:#eb4924}
|
312 |
-
.ssbp--theme-6 .ssbp-tumblr{border-color:#2c4762;color:#2c4762}.ssbp--theme-6 .ssbp-tumblr:hover,.ssbp--theme-6 .ssbp-tumblr:focus,.ssbp--theme-6 .ssbp-tumblr:active{background-color:#2c4762}
|
313 |
-
.ssbp--theme-6 .ssbp-tumblr+.ssbp-each-share{color:#2c4762;border-color:#2c4762}.ssbp--theme-6 .ssbp-twitter{border-color:#00a9f1;color:#00a9f1}
|
314 |
-
.ssbp--theme-6 .ssbp-twitter:hover,.ssbp--theme-6 .ssbp-twitter:focus,.ssbp--theme-6 .ssbp-twitter:active{background-color:#00a9f1}
|
315 |
-
.ssbp--theme-6 .ssbp-twitter+.ssbp-each-share{color:#00a9f1;border-color:#00a9f1}
|
316 |
-
.ssbp--theme-6 .ssbp-vk{border-color:#45668e;color:#45668e}.ssbp--theme-6 .ssbp-vk:hover,.ssbp--theme-6 .ssbp-vk:focus,.ssbp--theme-6 .ssbp-vk:active{background-color:#45668e}
|
317 |
-
.ssbp--theme-6 .ssbp-vk+.ssbp-each-share{color:#45668e;border-color:#45668e}.ssbp--theme-6 .ssbp-whatsapp{border-color:#34af23;color:#34af23}
|
318 |
-
.ssbp--theme-6 .ssbp-whatsapp:hover,.ssbp--theme-6 .ssbp-whatsapp:focus,.ssbp--theme-6 .ssbp-whatsapp:active{background-color:#34af23}
|
319 |
-
.ssbp--theme-6 .ssbp-whatsapp+.ssbp-each-share{color:#34af23;border-color:#34af23}
|
320 |
-
.ssbp--theme-6 .ssbp-yummly{border-color:#e16120;color:#e16120}.ssbp--theme-6 .ssbp-yummly:hover,.ssbp--theme-6 .ssbp-yummly:focus,.ssbp--theme-6 .ssbp-yummly:active{background-color:#e16120}
|
321 |
-
.ssbp--theme-6 .ssbp-yummly+.ssbp-each-share{color:#e16120;border-color:#e16120}.ssbp--theme-6 .ssbp-xing{border-color:#026466;color:#026466}
|
322 |
-
.ssbp--theme-6 .ssbp-xing:hover,.ssbp--theme-6 .ssbp-xing:focus,.ssbp--theme-6 .ssbp-xing:active{background-color:#026466}
|
323 |
-
.ssbp--theme-6 .ssbp-xing+.ssbp-each-share{color:#026466;border-color:#026466}.ssbp--theme-6 .ssbp-each-share{position:absolute;top:0;left:100%;z-index:11;margin-left:-12px;padding:2px;border:1px solid #fff;background-color:#fff;border-radius:6px;font-size:10px;color:#FFF}
|
324 |
-
.ssbp--theme-6.ssbp--fixed-right .ssbp-each-share{left:auto;right:100%;margin-left:0;margin-right:-12px}
|
325 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
326 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
327 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
328 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
329 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
330 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 6px !important;display:table-cell !important;width:auto;height:auto}
|
331 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
332 |
-
.ssbp--theme-7 .ssbp-list li{margin-left:6px;margin-bottom:1.5rem}.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12px;margin-left:.5em}
|
333 |
-
.ssbp--theme-7 .ssbp-btn{display:block;padding:.5em 1em;border:2px solid #fff;color:#fff;background-color:#fff;-webkit-transition:background-color .25s;transition:background-color .25s}
|
334 |
-
.ssbp--theme-7 .ssbp-btn:before{vertical-align:middle}.ssbp--theme-7 .ssbp-buffer{border-color:#272727;color:#272727}
|
335 |
-
.ssbp--theme-7 .ssbp-buffer:visited{color:#272727}.ssbp--theme-7 .ssbp-buffer:hover,.ssbp--theme-7 .ssbp-buffer:focus,.ssbp--theme-7 .ssbp-buffer:active{background-color:#272727;border-bottom:2px #272727 solid;color:#fff}
|
336 |
-
.ssbp--theme-7 .ssbp-buffer+.ssbp-each-share{color:#272727}.ssbp--theme-7 .ssbp-diggit{border-color:#14589e;color:#14589e}
|
337 |
-
.ssbp--theme-7 .ssbp-diggit:visited{color:#14589e}.ssbp--theme-7 .ssbp-diggit:hover,.ssbp--theme-7 .ssbp-diggit:focus,.ssbp--theme-7 .ssbp-diggit:active{background-color:#14589e;border-bottom:2px #14589e solid;color:#fff}
|
338 |
-
.ssbp--theme-7 .ssbp-diggit+.ssbp-each-share{color:#14589e}.ssbp--theme-7 .ssbp-email{border-color:#787878;color:#787878}
|
339 |
-
.ssbp--theme-7 .ssbp-email:visited{color:#787878}.ssbp--theme-7 .ssbp-email:hover,.ssbp--theme-7 .ssbp-email:focus,.ssbp--theme-7 .ssbp-email:active{background-color:#787878;border-bottom:2px #787878 solid;color:#fff}
|
340 |
-
.ssbp--theme-7 .ssbp-email+.ssbp-each-share{color:#787878}.ssbp--theme-7 .ssbp-ellipsis{border-color:#4582ec;color:#4582ec}
|
341 |
-
.ssbp--theme-7 .ssbp-ellipsis:visited{color:#4582ec}.ssbp--theme-7 .ssbp-ellipsis:hover,.ssbp--theme-7 .ssbp-ellipsis:focus,.ssbp--theme-7 .ssbp-ellipsis:active{background-color:#4582ec;border-bottom:2px #4582ec solid;color:#fff}
|
342 |
-
.ssbp--theme-7 .ssbp-ellipsis+.ssbp-each-share{color:#4582ec}.ssbp--theme-7 .ssbp-facebook{border-color:#3b5998;color:#3b5998}
|
343 |
-
.ssbp--theme-7 .ssbp-facebook:visited{color:#3b5998}.ssbp--theme-7 .ssbp-facebook:hover,.ssbp--theme-7 .ssbp-facebook:focus,.ssbp--theme-7 .ssbp-facebook:active{background-color:#3b5998;border-bottom:2px #3b5998 solid;color:#fff}
|
344 |
-
.ssbp--theme-7 .ssbp-facebook+.ssbp-each-share{color:#3b5998}.ssbp--theme-7 .ssbp-facebook_save{border-color:#3b5998;color:#3b5998}
|
345 |
-
.ssbp--theme-7 .ssbp-facebook_save:visited{color:#3b5998}.ssbp--theme-7 .ssbp-facebook_save:hover,.ssbp--theme-7 .ssbp-facebook_save:focus,.ssbp--theme-7 .ssbp-facebook_save:active{background-color:#3b5998;border-bottom:2px #3b5998 solid;color:#fff}
|
346 |
-
.ssbp--theme-7 .ssbp-facebook_save+.ssbp-each-share{color:#3b5998}.ssbp--theme-7 .ssbp-facebook-messenger{border-color:#0084ff;color:#0084ff}
|
347 |
-
.ssbp--theme-7 .ssbp-facebook-messenger:visited{color:#0084ff}.ssbp--theme-7 .ssbp-facebook-messenger:hover,.ssbp--theme-7 .ssbp-facebook-messenger:focus,.ssbp--theme-7 .ssbp-facebook-messenger:active{background-color:#0084ff;border-bottom:2px #0084ff solid;color:#fff}
|
348 |
-
.ssbp--theme-7 .ssbp-facebook-messenger+.ssbp-each-share{color:#0084ff}.ssbp--theme-7 .ssbp-flattr{border-color:#f67c1a;color:#f67c1a}
|
349 |
-
.ssbp--theme-7 .ssbp-flattr:visited{color:#f67c1a}.ssbp--theme-7 .ssbp-flattr:hover,.ssbp--theme-7 .ssbp-flattr:focus,.ssbp--theme-7 .ssbp-flattr:active{background-color:#f67c1a;border-bottom:2px #f67c1a solid;color:#fff}
|
350 |
-
.ssbp--theme-7 .ssbp-flattr+.ssbp-each-share{color:#f67c1a}.ssbp--theme-7 .ssbp-google{border-color:#dc4e41;color:#dc4e41}
|
351 |
-
.ssbp--theme-7 .ssbp-google:visited{color:#dc4e41}.ssbp--theme-7 .ssbp-google:hover,.ssbp--theme-7 .ssbp-google:focus,.ssbp--theme-7 .ssbp-google:active{background-color:#dc4e41;border-bottom:2px #dc4e41 solid;color:#fff}
|
352 |
-
.ssbp--theme-7 .ssbp-google+.ssbp-each-share{color:#dc4e41}.ssbp--theme-7 .ssbp-linkedin{border-color:#007bb6;color:#007bb6}
|
353 |
-
.ssbp--theme-7 .ssbp-linkedin:visited{color:#007bb6}.ssbp--theme-7 .ssbp-linkedin:hover,.ssbp--theme-7 .ssbp-linkedin:focus,.ssbp--theme-7 .ssbp-linkedin:active{background-color:#007bb6;border-bottom:2px #007bb6 solid;color:#fff}
|
354 |
-
.ssbp--theme-7 .ssbp-linkedin+.ssbp-each-share{color:#007bb6}.ssbp--theme-7 .ssbp-pinterest{border-color:#ce1a19;color:#ce1a19}
|
355 |
-
.ssbp--theme-7 .ssbp-pinterest:visited{color:#ce1a19}.ssbp--theme-7 .ssbp-pinterest:hover,.ssbp--theme-7 .ssbp-pinterest:focus,.ssbp--theme-7 .ssbp-pinterest:active{background-color:#ce1a19;border-bottom:2px #ce1a19 solid;color:#fff}
|
356 |
-
.ssbp--theme-7 .ssbp-pinterest+.ssbp-each-share{color:#ce1a19}.ssbp--theme-7 .ssbp-print{border-color:#1f6b43;color:#1f6b43}
|
357 |
-
.ssbp--theme-7 .ssbp-print:visited{color:#1f6b43}.ssbp--theme-7 .ssbp-print:hover,.ssbp--theme-7 .ssbp-print:focus,.ssbp--theme-7 .ssbp-print:active{background-color:#1f6b43;border-bottom:2px #1f6b43 solid;color:#fff}
|
358 |
-
.ssbp--theme-7 .ssbp-print+.ssbp-each-share{color:#1f6b43}.ssbp--theme-7 .ssbp-reddit{border-color:#ff4500;color:#ff4500}
|
359 |
-
.ssbp--theme-7 .ssbp-reddit:visited{color:#ff4500}.ssbp--theme-7 .ssbp-reddit:hover,.ssbp--theme-7 .ssbp-reddit:focus,.ssbp--theme-7 .ssbp-reddit:active{background-color:#ff4500;border-bottom:2px #ff4500 solid;color:#fff}
|
360 |
-
.ssbp--theme-7 .ssbp-reddit+.ssbp-each-share{color:#ff4500}.ssbp--theme-7 .ssbp-simplesharebuttons{border-color:#4582ec;color:#4582ec}
|
361 |
-
.ssbp--theme-7 .ssbp-simplesharebuttons:visited{color:#4582ec}.ssbp--theme-7 .ssbp-simplesharebuttons:hover,.ssbp--theme-7 .ssbp-simplesharebuttons:focus,.ssbp--theme-7 .ssbp-simplesharebuttons:active{background-color:#4582ec;border-bottom:2px #4582ec solid;color:#fff}
|
362 |
-
.ssbp--theme-7 .ssbp-simplesharebuttons+.ssbp-each-share{color:#4582ec}.ssbp--theme-7 .ssbp-stumbleupon{border-color:#eb4924;color:#eb4924}
|
363 |
-
.ssbp--theme-7 .ssbp-stumbleupon:visited{color:#eb4924}.ssbp--theme-7 .ssbp-stumbleupon:hover,.ssbp--theme-7 .ssbp-stumbleupon:focus,.ssbp--theme-7 .ssbp-stumbleupon:active{background-color:#eb4924;border-bottom:2px #eb4924 solid;color:#fff}
|
364 |
-
.ssbp--theme-7 .ssbp-stumbleupon+.ssbp-each-share{color:#eb4924}.ssbp--theme-7 .ssbp-tumblr{border-color:#2c4762;color:#2c4762}
|
365 |
-
.ssbp--theme-7 .ssbp-tumblr:visited{color:#2c4762}.ssbp--theme-7 .ssbp-tumblr:hover,.ssbp--theme-7 .ssbp-tumblr:focus,.ssbp--theme-7 .ssbp-tumblr:active{background-color:#2c4762;border-bottom:2px #2c4762 solid;color:#fff}
|
366 |
-
.ssbp--theme-7 .ssbp-tumblr+.ssbp-each-share{color:#2c4762}.ssbp--theme-7 .ssbp-twitter{border-color:#00a9f1;color:#00a9f1}
|
367 |
-
.ssbp--theme-7 .ssbp-twitter:visited{color:#00a9f1}.ssbp--theme-7 .ssbp-twitter:hover,.ssbp--theme-7 .ssbp-twitter:focus,.ssbp--theme-7 .ssbp-twitter:active{background-color:#00a9f1;border-bottom:2px #00a9f1 solid;color:#fff}
|
368 |
-
.ssbp--theme-7 .ssbp-twitter+.ssbp-each-share{color:#00a9f1}.ssbp--theme-7 .ssbp-vk{border-color:#45668e;color:#45668e}
|
369 |
-
.ssbp--theme-7 .ssbp-vk:visited{color:#45668e}.ssbp--theme-7 .ssbp-vk:hover,.ssbp--theme-7 .ssbp-vk:focus,.ssbp--theme-7 .ssbp-vk:active{background-color:#45668e;border-bottom:2px #45668e solid;color:#fff}
|
370 |
-
.ssbp--theme-7 .ssbp-vk+.ssbp-each-share{color:#45668e}.ssbp--theme-7 .ssbp-whatsapp{border-color:#34af23;color:#34af23}
|
371 |
-
.ssbp--theme-7 .ssbp-whatsapp:visited{color:#34af23}.ssbp--theme-7 .ssbp-whatsapp:hover,.ssbp--theme-7 .ssbp-whatsapp:focus,.ssbp--theme-7 .ssbp-whatsapp:active{background-color:#34af23;border-bottom:2px #34af23 solid;color:#fff}
|
372 |
-
.ssbp--theme-7 .ssbp-whatsapp+.ssbp-each-share{color:#34af23}.ssbp--theme-7 .ssbp-yummly{border-color:#e16120;color:#e16120}
|
373 |
-
.ssbp--theme-7 .ssbp-yummly:visited{color:#e16120}.ssbp--theme-7 .ssbp-yummly:hover,.ssbp--theme-7 .ssbp-yummly:focus,.ssbp--theme-7 .ssbp-yummly:active{background-color:#e16120;border-bottom:2px #e16120 solid;color:#fff}
|
374 |
-
.ssbp--theme-7 .ssbp-yummly+.ssbp-each-share{color:#e16120}.ssbp--theme-7 .ssbp-xing{border-color:#026466;color:#026466}
|
375 |
-
.ssbp--theme-7 .ssbp-xing:visited{color:#026466}.ssbp--theme-7 .ssbp-xing:hover,.ssbp--theme-7 .ssbp-xing:focus,.ssbp--theme-7 .ssbp-xing:active{background-color:#026466;border-bottom:2px #026466 solid;color:#fff}
|
376 |
-
.ssbp--theme-7 .ssbp-xing+.ssbp-each-share{color:#026466}.ssbp--theme-7 .ssbp-each-share{padding-top:3px;text-align:center;font-size:12px}
|
377 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
378 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
379 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
380 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
381 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
382 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 6px !important;display:table-cell !important;width:auto;height:auto}
|
383 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
384 |
-
.ssbp--theme-8 .ssbp-list li{margin-left:6px}.ssbp--theme-8 .ssbp-btn:hover,.ssbp--theme-8 .ssbp-btn:focus,.ssbp--theme-8 .ssbp-btn:active{border-bottom:3px solid #272727}
|
385 |
-
.ssbp--theme-8 .ssbp-btn,.ssbp--theme-8 .ssbp-btn:visited{width:4em;height:3em;line-height:3em;position:relative;border:3px solid #272727;background-color:#fff;color:#272727;-webkit-transition:.25s;transition:.25s}
|
386 |
-
.ssbp--theme-8 .ssbp-btn:hover,.ssbp--theme-8 .ssbp-btn:focus,.ssbp--theme-8 .ssbp-btn:active,.ssbp--theme-8 .ssbp-btn:visited:hover,.ssbp--theme-8 .ssbp-btn:visited:focus,.ssbp--theme-8 .ssbp-btn:visited:active{background-color:#272727;color:#fff}
|
387 |
-
.ssbp--theme-8 .ssbp-each-share{padding-top:3px;text-align:center;font-size:12px}
|
388 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
389 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
390 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
391 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
392 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
393 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 6px !important;display:table-cell !important;width:auto;height:auto}
|
394 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
395 |
-
.ssbp--theme-9 .ssbp-list li{margin-left:6px}.ssbp--theme-9 .ssbp-btn{display:block;padding:.5em 1em}
|
396 |
-
.ssbp--theme-9 .ssbp-btn:hover,.ssbp--theme-9 .ssbp-btn:focus,.ssbp--theme-9 .ssbp-btn:active{opacity:.66}
|
397 |
-
.ssbp--theme-9 .ssbp-buffer{border-bottom:5px solid #272727;color:#272727}.ssbp--theme-9 .ssbp-buffer:hover,.ssbp--theme-9 .ssbp-buffer:focus,.ssbp--theme-9 .ssbp-buffer:active{border-bottom:5px solid #272727}
|
398 |
-
.ssbp--theme-9 .ssbp-buffer:hover,.ssbp--theme-9 .ssbp-buffer:focus,.ssbp--theme-9 .ssbp-buffer:active,.ssbp--theme-9 .ssbp-buffer:visited{color:#272727}
|
399 |
-
.ssbp--theme-9 .ssbp-buffer+.ssbp-each-share{color:#272727}.ssbp--theme-9 .ssbp-diggit{border-bottom:5px solid #14589e;color:#14589e}
|
400 |
-
.ssbp--theme-9 .ssbp-diggit:hover,.ssbp--theme-9 .ssbp-diggit:focus,.ssbp--theme-9 .ssbp-diggit:active{border-bottom:5px solid #14589e}
|
401 |
-
.ssbp--theme-9 .ssbp-diggit:hover,.ssbp--theme-9 .ssbp-diggit:focus,.ssbp--theme-9 .ssbp-diggit:active,.ssbp--theme-9 .ssbp-diggit:visited{color:#14589e}
|
402 |
-
.ssbp--theme-9 .ssbp-diggit+.ssbp-each-share{color:#14589e}.ssbp--theme-9 .ssbp-email{border-bottom:5px solid #787878;color:#787878}
|
403 |
-
.ssbp--theme-9 .ssbp-email:hover,.ssbp--theme-9 .ssbp-email:focus,.ssbp--theme-9 .ssbp-email:active{border-bottom:5px solid #787878}
|
404 |
-
.ssbp--theme-9 .ssbp-email:hover,.ssbp--theme-9 .ssbp-email:focus,.ssbp--theme-9 .ssbp-email:active,.ssbp--theme-9 .ssbp-email:visited{color:#787878}
|
405 |
-
.ssbp--theme-9 .ssbp-email+.ssbp-each-share{color:#787878}.ssbp--theme-9 .ssbp-ellipsis{border-bottom:5px solid #4582ec;color:#4582ec}
|
406 |
-
.ssbp--theme-9 .ssbp-ellipsis:hover,.ssbp--theme-9 .ssbp-ellipsis:focus,.ssbp--theme-9 .ssbp-ellipsis:active{border-bottom:5px solid #4582ec}
|
407 |
-
.ssbp--theme-9 .ssbp-ellipsis:hover,.ssbp--theme-9 .ssbp-ellipsis:focus,.ssbp--theme-9 .ssbp-ellipsis:active,.ssbp--theme-9 .ssbp-ellipsis:visited{color:#4582ec}
|
408 |
-
.ssbp--theme-9 .ssbp-ellipsis+.ssbp-each-share{color:#4582ec}.ssbp--theme-9 .ssbp-facebook{border-bottom:5px solid #3b5998;color:#3b5998}
|
409 |
-
.ssbp--theme-9 .ssbp-facebook:hover,.ssbp--theme-9 .ssbp-facebook:focus,.ssbp--theme-9 .ssbp-facebook:active{border-bottom:5px solid #3b5998}
|
410 |
-
.ssbp--theme-9 .ssbp-facebook:hover,.ssbp--theme-9 .ssbp-facebook:focus,.ssbp--theme-9 .ssbp-facebook:active,.ssbp--theme-9 .ssbp-facebook:visited{color:#3b5998}
|
411 |
-
.ssbp--theme-9 .ssbp-facebook+.ssbp-each-share{color:#3b5998}.ssbp--theme-9 .ssbp-facebook_save{border-bottom:5px solid #3b5998;color:#3b5998}
|
412 |
-
.ssbp--theme-9 .ssbp-facebook_save:hover,.ssbp--theme-9 .ssbp-facebook_save:focus,.ssbp--theme-9 .ssbp-facebook_save:active{border-bottom:5px solid #3b5998}
|
413 |
-
.ssbp--theme-9 .ssbp-facebook_save:hover,.ssbp--theme-9 .ssbp-facebook_save:focus,.ssbp--theme-9 .ssbp-facebook_save:active,.ssbp--theme-9 .ssbp-facebook_save:visited{color:#3b5998}
|
414 |
-
.ssbp--theme-9 .ssbp-facebook_save+.ssbp-each-share{color:#3b5998}.ssbp--theme-9 .ssbp-facebook-messenger{border-bottom:5px solid #0084ff;color:#0084ff}
|
415 |
-
.ssbp--theme-9 .ssbp-facebook-messenger:hover,.ssbp--theme-9 .ssbp-facebook-messenger:focus,.ssbp--theme-9 .ssbp-facebook-messenger:active{border-bottom:5px solid #0084ff}
|
416 |
-
.ssbp--theme-9 .ssbp-facebook-messenger:hover,.ssbp--theme-9 .ssbp-facebook-messenger:focus,.ssbp--theme-9 .ssbp-facebook-messenger:active,.ssbp--theme-9 .ssbp-facebook-messenger:visited{color:#0084ff}
|
417 |
-
.ssbp--theme-9 .ssbp-facebook-messenger+.ssbp-each-share{color:#0084ff}.ssbp--theme-9 .ssbp-flattr{border-bottom:5px solid #f67c1a;color:#f67c1a}
|
418 |
-
.ssbp--theme-9 .ssbp-flattr:hover,.ssbp--theme-9 .ssbp-flattr:focus,.ssbp--theme-9 .ssbp-flattr:active{border-bottom:5px solid #f67c1a}
|
419 |
-
.ssbp--theme-9 .ssbp-flattr:hover,.ssbp--theme-9 .ssbp-flattr:focus,.ssbp--theme-9 .ssbp-flattr:active,.ssbp--theme-9 .ssbp-flattr:visited{color:#f67c1a}
|
420 |
-
.ssbp--theme-9 .ssbp-flattr+.ssbp-each-share{color:#f67c1a}.ssbp--theme-9 .ssbp-google{border-bottom:5px solid #dc4e41;color:#dc4e41}
|
421 |
-
.ssbp--theme-9 .ssbp-google:hover,.ssbp--theme-9 .ssbp-google:focus,.ssbp--theme-9 .ssbp-google:active{border-bottom:5px solid #dc4e41}
|
422 |
-
.ssbp--theme-9 .ssbp-google:hover,.ssbp--theme-9 .ssbp-google:focus,.ssbp--theme-9 .ssbp-google:active,.ssbp--theme-9 .ssbp-google:visited{color:#dc4e41}
|
423 |
-
.ssbp--theme-9 .ssbp-google+.ssbp-each-share{color:#dc4e41}.ssbp--theme-9 .ssbp-linkedin{border-bottom:5px solid #007bb6;color:#007bb6}
|
424 |
-
.ssbp--theme-9 .ssbp-linkedin:hover,.ssbp--theme-9 .ssbp-linkedin:focus,.ssbp--theme-9 .ssbp-linkedin:active{border-bottom:5px solid #007bb6}
|
425 |
-
.ssbp--theme-9 .ssbp-linkedin:hover,.ssbp--theme-9 .ssbp-linkedin:focus,.ssbp--theme-9 .ssbp-linkedin:active,.ssbp--theme-9 .ssbp-linkedin:visited{color:#007bb6}
|
426 |
-
.ssbp--theme-9 .ssbp-linkedin+.ssbp-each-share{color:#007bb6}.ssbp--theme-9 .ssbp-pinterest{border-bottom:5px solid #ce1a19;color:#ce1a19}
|
427 |
-
.ssbp--theme-9 .ssbp-pinterest:hover,.ssbp--theme-9 .ssbp-pinterest:focus,.ssbp--theme-9 .ssbp-pinterest:active{border-bottom:5px solid #ce1a19}
|
428 |
-
.ssbp--theme-9 .ssbp-pinterest:hover,.ssbp--theme-9 .ssbp-pinterest:focus,.ssbp--theme-9 .ssbp-pinterest:active,.ssbp--theme-9 .ssbp-pinterest:visited{color:#ce1a19}
|
429 |
-
.ssbp--theme-9 .ssbp-pinterest+.ssbp-each-share{color:#ce1a19}.ssbp--theme-9 .ssbp-print{border-bottom:5px solid #1f6b43;color:#1f6b43}
|
430 |
-
.ssbp--theme-9 .ssbp-print:hover,.ssbp--theme-9 .ssbp-print:focus,.ssbp--theme-9 .ssbp-print:active{border-bottom:5px solid #1f6b43}
|
431 |
-
.ssbp--theme-9 .ssbp-print:hover,.ssbp--theme-9 .ssbp-print:focus,.ssbp--theme-9 .ssbp-print:active,.ssbp--theme-9 .ssbp-print:visited{color:#1f6b43}
|
432 |
-
.ssbp--theme-9 .ssbp-print+.ssbp-each-share{color:#1f6b43}.ssbp--theme-9 .ssbp-reddit{border-bottom:5px solid #ff4500;color:#ff4500}
|
433 |
-
.ssbp--theme-9 .ssbp-reddit:hover,.ssbp--theme-9 .ssbp-reddit:focus,.ssbp--theme-9 .ssbp-reddit:active{border-bottom:5px solid #ff4500}
|
434 |
-
.ssbp--theme-9 .ssbp-reddit:hover,.ssbp--theme-9 .ssbp-reddit:focus,.ssbp--theme-9 .ssbp-reddit:active,.ssbp--theme-9 .ssbp-reddit:visited{color:#ff4500}
|
435 |
-
.ssbp--theme-9 .ssbp-reddit+.ssbp-each-share{color:#ff4500}.ssbp--theme-9 .ssbp-simplesharebuttons{border-bottom:5px solid #4582ec;color:#4582ec}
|
436 |
-
.ssbp--theme-9 .ssbp-simplesharebuttons:hover,.ssbp--theme-9 .ssbp-simplesharebuttons:focus,.ssbp--theme-9 .ssbp-simplesharebuttons:active{border-bottom:5px solid #4582ec}
|
437 |
-
.ssbp--theme-9 .ssbp-simplesharebuttons:hover,.ssbp--theme-9 .ssbp-simplesharebuttons:focus,.ssbp--theme-9 .ssbp-simplesharebuttons:active,.ssbp--theme-9 .ssbp-simplesharebuttons:visited{color:#4582ec}
|
438 |
-
.ssbp--theme-9 .ssbp-simplesharebuttons+.ssbp-each-share{color:#4582ec}.ssbp--theme-9 .ssbp-stumbleupon{border-bottom:5px solid #eb4924;color:#eb4924}
|
439 |
-
.ssbp--theme-9 .ssbp-stumbleupon:hover,.ssbp--theme-9 .ssbp-stumbleupon:focus,.ssbp--theme-9 .ssbp-stumbleupon:active{border-bottom:5px solid #eb4924}
|
440 |
-
.ssbp--theme-9 .ssbp-stumbleupon:hover,.ssbp--theme-9 .ssbp-stumbleupon:focus,.ssbp--theme-9 .ssbp-stumbleupon:active,.ssbp--theme-9 .ssbp-stumbleupon:visited{color:#eb4924}
|
441 |
-
.ssbp--theme-9 .ssbp-stumbleupon+.ssbp-each-share{color:#eb4924}.ssbp--theme-9 .ssbp-tumblr{border-bottom:5px solid #2c4762;color:#2c4762}
|
442 |
-
.ssbp--theme-9 .ssbp-tumblr:hover,.ssbp--theme-9 .ssbp-tumblr:focus,.ssbp--theme-9 .ssbp-tumblr:active{border-bottom:5px solid #2c4762}
|
443 |
-
.ssbp--theme-9 .ssbp-tumblr:hover,.ssbp--theme-9 .ssbp-tumblr:focus,.ssbp--theme-9 .ssbp-tumblr:active,.ssbp--theme-9 .ssbp-tumblr:visited{color:#2c4762}
|
444 |
-
.ssbp--theme-9 .ssbp-tumblr+.ssbp-each-share{color:#2c4762}.ssbp--theme-9 .ssbp-twitter{border-bottom:5px solid #00a9f1;color:#00a9f1}
|
445 |
-
.ssbp--theme-9 .ssbp-twitter:hover,.ssbp--theme-9 .ssbp-twitter:focus,.ssbp--theme-9 .ssbp-twitter:active{border-bottom:5px solid #00a9f1}
|
446 |
-
.ssbp--theme-9 .ssbp-twitter:hover,.ssbp--theme-9 .ssbp-twitter:focus,.ssbp--theme-9 .ssbp-twitter:active,.ssbp--theme-9 .ssbp-twitter:visited{color:#00a9f1}
|
447 |
-
.ssbp--theme-9 .ssbp-twitter+.ssbp-each-share{color:#00a9f1}.ssbp--theme-9 .ssbp-vk{border-bottom:5px solid #45668e;color:#45668e}
|
448 |
-
.ssbp--theme-9 .ssbp-vk:hover,.ssbp--theme-9 .ssbp-vk:focus,.ssbp--theme-9 .ssbp-vk:active{border-bottom:5px solid #45668e}
|
449 |
-
.ssbp--theme-9 .ssbp-vk:hover,.ssbp--theme-9 .ssbp-vk:focus,.ssbp--theme-9 .ssbp-vk:active,.ssbp--theme-9 .ssbp-vk:visited{color:#45668e}
|
450 |
-
.ssbp--theme-9 .ssbp-vk+.ssbp-each-share{color:#45668e}.ssbp--theme-9 .ssbp-whatsapp{border-bottom:5px solid #34af23;color:#34af23}
|
451 |
-
.ssbp--theme-9 .ssbp-whatsapp:hover,.ssbp--theme-9 .ssbp-whatsapp:focus,.ssbp--theme-9 .ssbp-whatsapp:active{border-bottom:5px solid #34af23}
|
452 |
-
.ssbp--theme-9 .ssbp-whatsapp:hover,.ssbp--theme-9 .ssbp-whatsapp:focus,.ssbp--theme-9 .ssbp-whatsapp:active,.ssbp--theme-9 .ssbp-whatsapp:visited{color:#34af23}
|
453 |
-
.ssbp--theme-9 .ssbp-whatsapp+.ssbp-each-share{color:#34af23}.ssbp--theme-9 .ssbp-yummly{border-bottom:5px solid #e16120;color:#e16120}
|
454 |
-
.ssbp--theme-9 .ssbp-yummly:hover,.ssbp--theme-9 .ssbp-yummly:focus,.ssbp--theme-9 .ssbp-yummly:active{border-bottom:5px solid #e16120}
|
455 |
-
.ssbp--theme-9 .ssbp-yummly:hover,.ssbp--theme-9 .ssbp-yummly:focus,.ssbp--theme-9 .ssbp-yummly:active,.ssbp--theme-9 .ssbp-yummly:visited{color:#e16120}
|
456 |
-
.ssbp--theme-9 .ssbp-yummly+.ssbp-each-share{color:#e16120}.ssbp--theme-9 .ssbp-xing{border-bottom:5px solid #026466;color:#026466}
|
457 |
-
.ssbp--theme-9 .ssbp-xing:hover,.ssbp--theme-9 .ssbp-xing:focus,.ssbp--theme-9 .ssbp-xing:active{border-bottom:5px solid #026466}
|
458 |
-
.ssbp--theme-9 .ssbp-xing:hover,.ssbp--theme-9 .ssbp-xing:focus,.ssbp--theme-9 .ssbp-xing:active,.ssbp--theme-9 .ssbp-xing:visited{color:#026466}
|
459 |
-
.ssbp--theme-9 .ssbp-xing+.ssbp-each-share{color:#026466}.ssbp--theme-9 .ssbp-each-share{padding-top:3px;text-align:center;font-size:12px}
|
460 |
-
.ssbp--theme-9 .ssbp-each-share:before{content:"("}.ssbp--theme-9 .ssbp-each-share:after{content:")"}
|
461 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
462 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
463 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
464 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
465 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
466 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
467 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
468 |
-
.ssbp--theme-10{overflow:hidden}.ssbp--theme-10 .ssbp-list li{margin:0}.ssbp--theme-10 .ssbp-btn{display:block;padding:.5em 1em;color:#fff;text-shadow:-1px -1px rgba(0,0,0,0.2);-webkit-transition:background-color .25s;transition:background-color .25s;border-bottom:0}
|
469 |
-
.ssbp--theme-10 .ssbp-btn:before{vertical-align:middle}.ssbp--theme-10 .ssbp-btn:active{box-shadow:inset 0 0 .5em rgba(0,0,0,0.33)}
|
470 |
-
.ssbp--theme-10 .ssbp-btn:hover,.ssbp--theme-10 .ssbp-btn:focus,.ssbp--theme-10 .ssbp-btn:active,.ssbp--theme-10 .ssbp-btn:visited{color:#fff}
|
471 |
-
.ssbp--theme-10.ssbp--centred .ssbp-input-url-div{position:relative;display:block;padding:10px}
|
472 |
-
.ssbp--theme-10.ssbp--centred .ssbp-input-url{width:100%;max-width:200px;border:1px solid #DDD;padding:8px 8px 8px 8px;font-size:20px;font-weight:400;line-height:1;color:#b3b3b3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}
|
473 |
-
.ssbp--theme-10.ssbp--centred .ssbp-total-shares{display:block;line-height:1}.ssbp--theme-10.ssbp--centred .ssbp-total-shares b{font-size:70px;color:#4582ec}
|
474 |
-
.ssbp--theme-10.ssbp--centred .ssbp-total-shares:after{content:'Shares';display:block;font-family:'Lato',sans-serif;font-weight:700;font-size:30px;text-transform:uppercase;color:#b3b3b3}
|
475 |
-
@media only screen and (min-width:481px){.ssbp--theme-10.ssbp--centred .ssbp-input-url-div{float:right;width:50%;padding:35px 20px;text-align:left}
|
476 |
-
.ssbp--theme-10.ssbp--centred .ssbp-total-shares{width:50%;text-align:right}}.ssbp--theme-10 .ssbp-buffer{background-color:#272727}
|
477 |
-
.ssbp--theme-10 .ssbp-buffer:hover,.ssbp--theme-10 .ssbp-buffer:focus,.ssbp--theme-10 .ssbp-buffer:active,.ssbp--theme-10 .ssbp-buffer+.ssbp-each-share{background-color:#0e0e0e}
|
478 |
-
.ssbp--theme-10 .ssbp-diggit{background-color:#14589e}.ssbp--theme-10 .ssbp-diggit:hover,.ssbp--theme-10 .ssbp-diggit:focus,.ssbp--theme-10 .ssbp-diggit:active,.ssbp--theme-10 .ssbp-diggit+.ssbp-each-share{background-color:#0e3f71}
|
479 |
-
.ssbp--theme-10 .ssbp-email{background-color:#787878}.ssbp--theme-10 .ssbp-email:hover,.ssbp--theme-10 .ssbp-email:focus,.ssbp--theme-10 .ssbp-email:active,.ssbp--theme-10 .ssbp-email+.ssbp-each-share{background-color:#5f5f5f}
|
480 |
-
.ssbp--theme-10 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-10 .ssbp-ellipsis:hover,.ssbp--theme-10 .ssbp-ellipsis:focus,.ssbp--theme-10 .ssbp-ellipsis:active,.ssbp--theme-10 .ssbp-ellipsis+.ssbp-each-share{background-color:#1863e6}
|
481 |
-
.ssbp--theme-10 .ssbp-facebook{background-color:#3b5998}.ssbp--theme-10 .ssbp-facebook:hover,.ssbp--theme-10 .ssbp-facebook:focus,.ssbp--theme-10 .ssbp-facebook:active,.ssbp--theme-10 .ssbp-facebook+.ssbp-each-share{background-color:#2d4373}
|
482 |
-
.ssbp--theme-10 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-10 .ssbp-facebook_save:hover,.ssbp--theme-10 .ssbp-facebook_save:focus,.ssbp--theme-10 .ssbp-facebook_save:active,.ssbp--theme-10 .ssbp-facebook_save+.ssbp-each-share{background-color:#2d4373}
|
483 |
-
.ssbp--theme-10 .ssbp-facebook-messenger{background-color:#0084ff}.ssbp--theme-10 .ssbp-facebook-messenger:hover,.ssbp--theme-10 .ssbp-facebook-messenger:focus,.ssbp--theme-10 .ssbp-facebook-messenger:active,.ssbp--theme-10 .ssbp-facebook-messenger+.ssbp-each-share{background-color:#006acc}
|
484 |
-
.ssbp--theme-10 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-10 .ssbp-flattr:hover,.ssbp--theme-10 .ssbp-flattr:focus,.ssbp--theme-10 .ssbp-flattr:active,.ssbp--theme-10 .ssbp-flattr+.ssbp-each-share{background-color:#d56308}
|
485 |
-
.ssbp--theme-10 .ssbp-google{background-color:#dc4e41}.ssbp--theme-10 .ssbp-google:hover,.ssbp--theme-10 .ssbp-google:focus,.ssbp--theme-10 .ssbp-google:active,.ssbp--theme-10 .ssbp-google+.ssbp-each-share{background-color:#c63224}
|
486 |
-
.ssbp--theme-10 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-10 .ssbp-linkedin:hover,.ssbp--theme-10 .ssbp-linkedin:focus,.ssbp--theme-10 .ssbp-linkedin:active,.ssbp--theme-10 .ssbp-linkedin+.ssbp-each-share{background-color:#005983}
|
487 |
-
.ssbp--theme-10 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-10 .ssbp-pinterest:hover,.ssbp--theme-10 .ssbp-pinterest:focus,.ssbp--theme-10 .ssbp-pinterest:active,.ssbp--theme-10 .ssbp-pinterest+.ssbp-each-share{background-color:#a11413}
|
488 |
-
.ssbp--theme-10 .ssbp-print{background-color:#1f6b43}.ssbp--theme-10 .ssbp-print:hover,.ssbp--theme-10 .ssbp-print:focus,.ssbp--theme-10 .ssbp-print:active,.ssbp--theme-10 .ssbp-print+.ssbp-each-share{background-color:#14432a}
|
489 |
-
.ssbp--theme-10 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-10 .ssbp-reddit:hover,.ssbp--theme-10 .ssbp-reddit:focus,.ssbp--theme-10 .ssbp-reddit:active,.ssbp--theme-10 .ssbp-reddit+.ssbp-each-share{background-color:#cc3700}
|
490 |
-
.ssbp--theme-10 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-10 .ssbp-simplesharebuttons:hover,.ssbp--theme-10 .ssbp-simplesharebuttons:focus,.ssbp--theme-10 .ssbp-simplesharebuttons:active,.ssbp--theme-10 .ssbp-simplesharebuttons+.ssbp-each-share{background-color:#1863e6}
|
491 |
-
.ssbp--theme-10 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-10 .ssbp-stumbleupon:hover,.ssbp--theme-10 .ssbp-stumbleupon:focus,.ssbp--theme-10 .ssbp-stumbleupon:active,.ssbp--theme-10 .ssbp-stumbleupon+.ssbp-each-share{background-color:#ca3412}
|
492 |
-
.ssbp--theme-10 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-10 .ssbp-tumblr:hover,.ssbp--theme-10 .ssbp-tumblr:focus,.ssbp--theme-10 .ssbp-tumblr:active,.ssbp--theme-10 .ssbp-tumblr+.ssbp-each-share{background-color:#1c2e3f}
|
493 |
-
.ssbp--theme-10 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-10 .ssbp-twitter:hover,.ssbp--theme-10 .ssbp-twitter:focus,.ssbp--theme-10 .ssbp-twitter:active,.ssbp--theme-10 .ssbp-twitter+.ssbp-each-share{background-color:#0085be}
|
494 |
-
.ssbp--theme-10 .ssbp-vk{background-color:#45668e}.ssbp--theme-10 .ssbp-vk:hover,.ssbp--theme-10 .ssbp-vk:focus,.ssbp--theme-10 .ssbp-vk:active,.ssbp--theme-10 .ssbp-vk+.ssbp-each-share{background-color:#344d6c}
|
495 |
-
.ssbp--theme-10 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-10 .ssbp-whatsapp:hover,.ssbp--theme-10 .ssbp-whatsapp:focus,.ssbp--theme-10 .ssbp-whatsapp:active,.ssbp--theme-10 .ssbp-whatsapp+.ssbp-each-share{background-color:#27851b}
|
496 |
-
.ssbp--theme-10 .ssbp-yummly{background-color:#e16120}.ssbp--theme-10 .ssbp-yummly:hover,.ssbp--theme-10 .ssbp-yummly:focus,.ssbp--theme-10 .ssbp-yummly:active,.ssbp--theme-10 .ssbp-yummly+.ssbp-each-share{background-color:#b64d18}
|
497 |
-
.ssbp--theme-10 .ssbp-xing{background-color:#026466}.ssbp--theme-10 .ssbp-xing:hover,.ssbp--theme-10 .ssbp-xing:focus,.ssbp--theme-10 .ssbp-xing:active,.ssbp--theme-10 .ssbp-xing+.ssbp-each-share{background-color:#013334}
|
498 |
-
.ssbp--theme-10 .ssbp-each-share{padding:2px;font-size:10px;text-align:center;color:#FFF}
|
499 |
-
.ssbp--theme-2 .ssbp-toggle-switch,.ssbp--theme-3 .ssbp-toggle-switch,.ssbp--theme-10 .ssbp-toggle-switch,.ssbp--theme-11 .ssbp-toggle-switch{background:#4c4c4c;background:rgba(39,39,39,0.8);border-radius:0;color:#fff}
|
500 |
-
.ssbp--theme-2 .ssbp-toggle-switch:active,.ssbp--theme-3 .ssbp-toggle-switch:active,.ssbp--theme-10 .ssbp-toggle-switch:active,.ssbp--theme-11 .ssbp-toggle-switch:active,.ssbp--theme-2 .ssbp-toggle-switch:hover,.ssbp--theme-3 .ssbp-toggle-switch:hover,.ssbp--theme-10 .ssbp-toggle-switch:hover,.ssbp--theme-11 .ssbp-toggle-switch:hover,.ssbp--theme-2 .ssbp-toggle-switch:focus,.ssbp--theme-3 .ssbp-toggle-switch:focus,.ssbp--theme-10 .ssbp-toggle-switch:focus,.ssbp--theme-11 .ssbp-toggle-switch:focus{background:#4c4c4c;background:rgba(39,39,39,0.9)}
|
501 |
-
.ssbp--theme-1 .ssbp-toggle-switch,.ssbp--theme-4 .ssbp-toggle-switch,.ssbp--theme-5 .ssbp-toggle-switch,.ssbp--theme-6 .ssbp-toggle-switch,.ssbp--theme-7 .ssbp-toggle-switch,.ssbp--theme-8 .ssbp-toggle-switch,.ssbp--theme-9 .ssbp-toggle-switch{background:#fff;background:rgba(255,255,255,0.8);color:#272727;border-radius:0}
|
502 |
-
.ssbp--theme-1 .ssbp-toggle-switch:active,.ssbp--theme-4 .ssbp-toggle-switch:active,.ssbp--theme-5 .ssbp-toggle-switch:active,.ssbp--theme-6 .ssbp-toggle-switch:active,.ssbp--theme-7 .ssbp-toggle-switch:active,.ssbp--theme-8 .ssbp-toggle-switch:active,.ssbp--theme-9 .ssbp-toggle-switch:active,.ssbp--theme-1 .ssbp-toggle-switch:hover,.ssbp--theme-4 .ssbp-toggle-switch:hover,.ssbp--theme-5 .ssbp-toggle-switch:hover,.ssbp--theme-6 .ssbp-toggle-switch:hover,.ssbp--theme-7 .ssbp-toggle-switch:hover,.ssbp--theme-8 .ssbp-toggle-switch:hover,.ssbp--theme-9 .ssbp-toggle-switch:hover,.ssbp--theme-1 .ssbp-toggle-switch:focus,.ssbp--theme-4 .ssbp-toggle-switch:focus,.ssbp--theme-5 .ssbp-toggle-switch:focus,.ssbp--theme-6 .ssbp-toggle-switch:focus,.ssbp--theme-7 .ssbp-toggle-switch:focus,.ssbp--theme-8 .ssbp-toggle-switch:focus,.ssbp--theme-9 .ssbp-toggle-switch:focus{background:#fff;background:rgba(255,255,255,0.9)}
|
503 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list,.ssbp--theme-3.ssbp--centred .ssbp-list,.ssbp--theme-5.ssbp--centred .ssbp-list,.ssbp--theme-7.ssbp--centred .ssbp-list,.ssbp--theme-8.ssbp--centred .ssbp-list,.ssbp--theme-9.ssbp--centred .ssbp-list,.ssbp--theme-10.ssbp--centred .ssbp-list,.ssbp--theme-11.ssbp--centred .ssbp-list{display:table;table-layout:fixed;width:100%}
|
504 |
-
.ssbp--theme-2.ssbp--centred .ssbp-list li,.ssbp--theme-3.ssbp--centred .ssbp-list li,.ssbp--theme-5.ssbp--centred .ssbp-list li,.ssbp--theme-7.ssbp--centred .ssbp-list li,.ssbp--theme-8.ssbp--centred .ssbp-list li,.ssbp--theme-9.ssbp--centred .ssbp-list li,.ssbp--theme-10.ssbp--centred .ssbp-list li,.ssbp--theme-11.ssbp--centred .ssbp-list li{display:inline-block !important;margin:0 0 !important;display:table-cell !important;width:auto;height:auto}
|
505 |
-
.ssbp--theme-2.ssbp--centred .ssbp-btn,.ssbp--theme-3.ssbp--centred .ssbp-btn,.ssbp--theme-5.ssbp--centred .ssbp-btn,.ssbp--theme-7.ssbp--centred .ssbp-btn,.ssbp--theme-8.ssbp--centred .ssbp-btn,.ssbp--theme-9.ssbp--centred .ssbp-btn,.ssbp--theme-10.ssbp--centred .ssbp-btn,.ssbp--theme-11.ssbp--centred .ssbp-btn{display:block;width:auto}
|
506 |
-
.ssbp--theme-11{margin-left:-5px;margin-right:-5px}.ssbp--theme-11 .ssbp-list li{margin:0}
|
507 |
-
.ssbp--theme-11 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12px;line-height:1.2;font-size:11px}
|
508 |
-
.ssbp--theme-11 .ssbp-btn{width:auto !important;height:auto !important;display:block;padding:.6em 1em;margin:5px;text-transform:uppercase;color:#fff;font-size:11px;-webkit-transition:background-color .25s;transition:background-color .25s;border-bottom:0;border-radius:5px}
|
509 |
-
.ssbp--theme-11 .ssbp-btn:before{display:none}.ssbp--theme-11 .ssbp-btn:active{box-shadow:inset 0 0 .5em rgba(0,0,0,0.33)}
|
510 |
-
.ssbp--theme-11 .ssbp-btn:hover,.ssbp--theme-11 .ssbp-btn:focus,.ssbp--theme-11 .ssbp-btn:active,.ssbp--theme-11 .ssbp-btn:visited{color:#fff}
|
511 |
-
.ssbp--theme-11 .ssbp-buffer{background-color:#272727}.ssbp--theme-11 .ssbp-buffer:hover,.ssbp--theme-11 .ssbp-buffer:focus,.ssbp--theme-11 .ssbp-buffer:active,.ssbp--theme-11 .ssbp-buffer+.ssbp-each-share{background-color:#0e0e0e}
|
512 |
-
.ssbp--theme-11 .ssbp-diggit{background-color:#14589e}.ssbp--theme-11 .ssbp-diggit:hover,.ssbp--theme-11 .ssbp-diggit:focus,.ssbp--theme-11 .ssbp-diggit:active,.ssbp--theme-11 .ssbp-diggit+.ssbp-each-share{background-color:#0e3f71}
|
513 |
-
.ssbp--theme-11 .ssbp-email{background-color:#787878}.ssbp--theme-11 .ssbp-email:hover,.ssbp--theme-11 .ssbp-email:focus,.ssbp--theme-11 .ssbp-email:active,.ssbp--theme-11 .ssbp-email+.ssbp-each-share{background-color:#5f5f5f}
|
514 |
-
.ssbp--theme-11 .ssbp-ellipsis{background-color:#4582ec}.ssbp--theme-11 .ssbp-ellipsis:hover,.ssbp--theme-11 .ssbp-ellipsis:focus,.ssbp--theme-11 .ssbp-ellipsis:active,.ssbp--theme-11 .ssbp-ellipsis+.ssbp-each-share{background-color:#1863e6}
|
515 |
-
.ssbp--theme-11 .ssbp-facebook{background-color:#3b5998}.ssbp--theme-11 .ssbp-facebook:hover,.ssbp--theme-11 .ssbp-facebook:focus,.ssbp--theme-11 .ssbp-facebook:active,.ssbp--theme-11 .ssbp-facebook+.ssbp-each-share{background-color:#2d4373}
|
516 |
-
.ssbp--theme-11 .ssbp-facebook_save{background-color:#3b5998}.ssbp--theme-11 .ssbp-facebook_save:hover,.ssbp--theme-11 .ssbp-facebook_save:focus,.ssbp--theme-11 .ssbp-facebook_save:active,.ssbp--theme-11 .ssbp-facebook_save+.ssbp-each-share{background-color:#2d4373}
|
517 |
-
.ssbp--theme-11 .ssbp-facebook-messenger{background-color:#0084ff}.ssbp--theme-11 .ssbp-facebook-messenger:hover,.ssbp--theme-11 .ssbp-facebook-messenger:focus,.ssbp--theme-11 .ssbp-facebook-messenger:active,.ssbp--theme-11 .ssbp-facebook-messenger+.ssbp-each-share{background-color:#006acc}
|
518 |
-
.ssbp--theme-11 .ssbp-flattr{background-color:#f67c1a}.ssbp--theme-11 .ssbp-flattr:hover,.ssbp--theme-11 .ssbp-flattr:focus,.ssbp--theme-11 .ssbp-flattr:active,.ssbp--theme-11 .ssbp-flattr+.ssbp-each-share{background-color:#d56308}
|
519 |
-
.ssbp--theme-11 .ssbp-google{background-color:#dc4e41}.ssbp--theme-11 .ssbp-google:hover,.ssbp--theme-11 .ssbp-google:focus,.ssbp--theme-11 .ssbp-google:active,.ssbp--theme-11 .ssbp-google+.ssbp-each-share{background-color:#c63224}
|
520 |
-
.ssbp--theme-11 .ssbp-linkedin{background-color:#007bb6}.ssbp--theme-11 .ssbp-linkedin:hover,.ssbp--theme-11 .ssbp-linkedin:focus,.ssbp--theme-11 .ssbp-linkedin:active,.ssbp--theme-11 .ssbp-linkedin+.ssbp-each-share{background-color:#005983}
|
521 |
-
.ssbp--theme-11 .ssbp-pinterest{background-color:#ce1a19}.ssbp--theme-11 .ssbp-pinterest:hover,.ssbp--theme-11 .ssbp-pinterest:focus,.ssbp--theme-11 .ssbp-pinterest:active,.ssbp--theme-11 .ssbp-pinterest+.ssbp-each-share{background-color:#a11413}
|
522 |
-
.ssbp--theme-11 .ssbp-print{background-color:#1f6b43}.ssbp--theme-11 .ssbp-print:hover,.ssbp--theme-11 .ssbp-print:focus,.ssbp--theme-11 .ssbp-print:active,.ssbp--theme-11 .ssbp-print+.ssbp-each-share{background-color:#14432a}
|
523 |
-
.ssbp--theme-11 .ssbp-reddit{background-color:#ff4500}.ssbp--theme-11 .ssbp-reddit:hover,.ssbp--theme-11 .ssbp-reddit:focus,.ssbp--theme-11 .ssbp-reddit:active,.ssbp--theme-11 .ssbp-reddit+.ssbp-each-share{background-color:#cc3700}
|
524 |
-
.ssbp--theme-11 .ssbp-simplesharebuttons{background-color:#4582ec}.ssbp--theme-11 .ssbp-simplesharebuttons:hover,.ssbp--theme-11 .ssbp-simplesharebuttons:focus,.ssbp--theme-11 .ssbp-simplesharebuttons:active,.ssbp--theme-11 .ssbp-simplesharebuttons+.ssbp-each-share{background-color:#1863e6}
|
525 |
-
.ssbp--theme-11 .ssbp-stumbleupon{background-color:#eb4924}.ssbp--theme-11 .ssbp-stumbleupon:hover,.ssbp--theme-11 .ssbp-stumbleupon:focus,.ssbp--theme-11 .ssbp-stumbleupon:active,.ssbp--theme-11 .ssbp-stumbleupon+.ssbp-each-share{background-color:#ca3412}
|
526 |
-
.ssbp--theme-11 .ssbp-tumblr{background-color:#2c4762}.ssbp--theme-11 .ssbp-tumblr:hover,.ssbp--theme-11 .ssbp-tumblr:focus,.ssbp--theme-11 .ssbp-tumblr:active,.ssbp--theme-11 .ssbp-tumblr+.ssbp-each-share{background-color:#1c2e3f}
|
527 |
-
.ssbp--theme-11 .ssbp-twitter{background-color:#00a9f1}.ssbp--theme-11 .ssbp-twitter:hover,.ssbp--theme-11 .ssbp-twitter:focus,.ssbp--theme-11 .ssbp-twitter:active,.ssbp--theme-11 .ssbp-twitter+.ssbp-each-share{background-color:#0085be}
|
528 |
-
.ssbp--theme-11 .ssbp-vk{background-color:#45668e}.ssbp--theme-11 .ssbp-vk:hover,.ssbp--theme-11 .ssbp-vk:focus,.ssbp--theme-11 .ssbp-vk:active,.ssbp--theme-11 .ssbp-vk+.ssbp-each-share{background-color:#344d6c}
|
529 |
-
.ssbp--theme-11 .ssbp-whatsapp{background-color:#34af23}.ssbp--theme-11 .ssbp-whatsapp:hover,.ssbp--theme-11 .ssbp-whatsapp:focus,.ssbp--theme-11 .ssbp-whatsapp:active,.ssbp--theme-11 .ssbp-whatsapp+.ssbp-each-share{background-color:#27851b}
|
530 |
-
.ssbp--theme-11 .ssbp-yummly{background-color:#e16120}.ssbp--theme-11 .ssbp-yummly:hover,.ssbp--theme-11 .ssbp-yummly:focus,.ssbp--theme-11 .ssbp-yummly:active,.ssbp--theme-11 .ssbp-yummly+.ssbp-each-share{background-color:#b64d18}
|
531 |
-
.ssbp--theme-11 .ssbp-xing{background-color:#026466}.ssbp--theme-11 .ssbp-xing:hover,.ssbp--theme-11 .ssbp-xing:focus,.ssbp--theme-11 .ssbp-xing:active,.ssbp--theme-11 .ssbp-xing+.ssbp-each-share{background-color:#013334}
|
532 |
-
.ssbp--theme-11 .ssbp-each-share{padding:2px;font-size:10px;margin-right:5px;margin-left:5px;text-align:center;color:#FFF;border-radius:5px}
|
533 |
#ssba-bar-2.left{position:fixed;top:25vh;z-index:10000}#ssba-bar-2.right{max-width:fit-content;position:fixed;right:0;top:25vh;z-index:10000}
|
534 |
#ssba-bar-2.left .ssbp-bar-list{max-width:84px;text-align:left;min-width:auto;margin:0;padding:0;list-style:none}
|
535 |
#ssba-bar-2.right .ssbp-bar-list{max-width:84px;text-align:right;min-width:auto;margin:0;padding:0;list-style:none}
|
536 |
#ssba-bar-2 .ssbp-bar-list li{margin:0;margin-left:0;margin-right:0;display:block;position:relative}
|
537 |
#ssba-bar-2 ul li a{max-width:84px;display:block}.ssba-plus-2{width:100%}.ssba-classic-2{width:100%}
|
538 |
.ssbp-each-share,#ssba-bar-2 li .ssbp-each-share{display:block}.right li .ssbp-each-share{left:unset;right:100%;margin-right:-12px;margin-left:0}
|
539 |
-
.ssbp-
|
540 |
-
|
541 |
-
.ssbp
|
542 |
-
.ssbp
|
543 |
-
.ssbp
|
544 |
-
.ssbp
|
545 |
-
|
546 |
-
.ssbp--theme-
|
547 |
-
.ssbp--theme-
|
548 |
-
.ssbp--theme-
|
549 |
-
|
550 |
-
.ssbp--theme-2 .ssbp-btn
|
551 |
-
.ssbp--theme-
|
552 |
-
.ssbp--theme-
|
553 |
-
.ssbp--theme-
|
554 |
-
.ssbp--theme-
|
555 |
-
.ssbp--theme-
|
556 |
-
|
557 |
-
.ssbp--theme-
|
558 |
-
.ssbp--theme-
|
559 |
-
|
560 |
-
.ssbp--theme-
|
561 |
-
.ssbp--theme-
|
562 |
-
|
563 |
-
.ssbp--theme-
|
564 |
-
.ssbp--theme-
|
565 |
-
|
566 |
-
.ssbp--theme-
|
567 |
-
.ssbp--theme-
|
568 |
-
.ssbp--theme-
|
569 |
-
.ssbp--theme-
|
570 |
-
.ssbp--theme-
|
571 |
-
.ssbp--theme-
|
572 |
-
.ssbp--theme-
|
573 |
-
|
574 |
-
.ssbp--theme-
|
575 |
-
.ssbp--theme-
|
576 |
-
.ssbp--theme-
|
577 |
-
.ssbp--theme-
|
578 |
-
.ssbp--theme-8 .ssbp-
|
579 |
-
.ssbp--theme-
|
580 |
-
.ssbp--theme-8 .ssbp-
|
581 |
-
|
582 |
-
.
|
583 |
-
.ssbp--theme-
|
584 |
-
|
585 |
-
.ssbp--theme-
|
586 |
-
.ssbp--theme-
|
587 |
-
.
|
588 |
-
.ssbp--theme-
|
589 |
-
|
590 |
-
.ssbp--theme-
|
591 |
-
.
|
592 |
-
|
593 |
-
.ssbp
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
.ssbp--theme-6 .ssbp-skype,.ssbp--theme-7 .ssbp-skype{border-color:#00aff0;display:block}
|
602 |
-
.ssbp--theme-8 .ssbp-skype,.ssbp--theme-9 .ssbp-skype{display:block}.ssbp--theme-6 .ssbp-skype:before,.ssbp--theme-7 .ssbp-skype:before,.ssbp--theme-9 .ssbp-skype:before{content:url("../images/skype-hover.svg")}
|
603 |
-
.ssbp--theme-1 .ssbp-skype:before,.ssbp--theme-2 .ssbp-skype:before,.ssbp--theme-3 .ssbp-skype:before,.ssbp--theme-4 .ssbp-skype:before,.ssbp--theme-5 .ssbp-skype:before,.ssbp--theme-6 .ssbp-skype:before,.ssbp--theme-7 .ssbp-skype:before{left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
604 |
-
.ssbp--theme-1 .ssbp-skype:hover,.ssbp--theme-1 .ssbp-skype:focus,.ssbp--theme-1 .ssbp-skype:active{color:#00aff0;border-color:#00aff0}
|
605 |
-
.ssbp--theme-6 .ssbp-skype:hover,.ssbp--theme-6 .ssbp-skype:focus,.ssbp--theme-6 .ssbp-skype:active,.ssbp--theme-7 .ssbp-skype:hover,.ssbp--theme-7 .ssbp-skype:focus,.ssbp--theme-7 .ssbp-skype:active{background-color:#00aff0}
|
606 |
-
.ssbp--theme-2 .ssbp-skype:hover,.ssbp--theme-2 .ssbp-skype:focus,.ssbp--theme-2 .ssbp-skype:active,.ssbp--theme-3 .ssbp-skype:hover,.ssbp--theme-3 .ssbp-skype:focus,.ssbp--theme-3 .ssbp-skype:active,.ssbp--theme-10 .ssbp-skype:hover:before,.ssbp--theme-10 .ssbp-skype:focus:before,.ssbp--theme-10 .ssbp-skype:active:before,.ssbp--theme-11 .ssbp-skype:hover,.ssbp--theme-11 .ssbp-skype:focus,.ssbp--theme-11 .ssbp-skype:active{border-color:#0081b1;background-color:#0081b1}
|
607 |
-
.ssbp--theme-1 .ssbp-skype:hover:before,.ssbp--theme-1 .ssbp-skype:focus:before,.ssbp--theme-1 .ssbp-skype:active:before{content:url("../images/skype-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
608 |
-
.ssbp--theme-6 .ssbp-skype:hover:before,.ssbp--theme-6 .ssbp-skype:focus:before,.ssbp--theme-6 .ssbp-skype:active:before,.ssbp--theme-7 .ssbp-skype:hover:before,.ssbp--theme-7 .ssbp-skype:focus:before,.ssbp--theme-7 .ssbp-skype:active:before,.ssbp--theme-8 .ssbp-skype:hover:before,.ssbp--theme-8 .ssbp-skype:focus:before,.ssbp--theme-8 .ssbp-skype:active:before{content:url("../images/skype.svg")}
|
609 |
-
.ssbp--theme-1 .ssbp-skype+.ssbp-each-share,.ssbp--theme-2 .ssbp-skype+.ssbp-each-share,.ssbp--theme-3 .ssbp-skype+.ssbp-each-share,.ssbp--theme-4 .ssbp-skype+.ssbp-each-share,.ssbp--theme-5 .ssbp-skype+.ssbp-each-share,.ssbp--theme-6 .ssbp-skype+.ssbp-each-share,.ssbp--theme-7 .ssbp-skype+.ssbp-each-share{background-color:#00aff0}
|
610 |
-
.ssbp--theme-2 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-2 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-2 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-3 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-3 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-3 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-4 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-4 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-4 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-5 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-5 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-5 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-6 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-6 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-6 .ssbp-btn.ssbp-skype:active:before,.ssbp--theme-7 .ssbp-btn.ssbp-skype:hover:before,.ssbp--theme-7 .ssbp-btn.ssbp-skype:focus:before,.ssbp--theme-7 .ssbp-btn.ssbp-skype:active:before{transform:translate(-50%,-37%) !important;left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%}
|
611 |
-
.ssbp--theme-5 .ssbp-skype{background-color:#00aff0;box-shadow:0 8px 0 #0081b1,0 10px 12px rgba(0,0,0,0.33)}
|
612 |
-
.ssbp--theme-5 .ssbp-skype:active{box-shadow:0 4px 0 #0081b1,0 5px 6px rgba(0,0,0,0.33)}
|
613 |
-
.ssbp--theme-3 .ssbp-text,.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12.1px;margin-left:0;text-shadow:-1px -1px rgba(0,0,0,0.2);position:absolute;bottom:-20px;left:50%;transform:translate(-50%)}
|
614 |
-
.ssbp--theme-7 .ssbp-li--skype .ssbp-text{color:#00aff0}.ssbp--theme-7 .ssbp-li--skype:hover .ssbp-text{color:#fff}
|
615 |
-
.ssbp--theme-9 .ssbp-li--skype{border-bottom:5px solid #00aff0}.ssbp--theme-9 .ssbp-skype{height:43px !important}
|
616 |
-
.ssbp--theme-9 .ssbp-li--skype:hover{border-bottom:5px solid rgba(0,175,240,0.59)}
|
617 |
-
.ssbp--theme-9 .ssbp-li--skype .ssbp-skype:before{padding:9px 14px 0}.ssbp--theme-10 .ssbp-skype{width:40px !important}
|
618 |
-
.ssbp--theme-10 .ssbp-skype:before{padding:11px 8px 8px}.ssbp-snapchat:before{content:url("../images/snapchat.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
619 |
-
.ssbp--theme-8 .ssbp-snapchat:before{content:url("../images/snapchat-black.svg")}.ssbp--theme-1 .ssbp-snapchat,.ssbp--theme-2 .ssbp-snapchat,.ssbp--theme-3 .ssbp-snapchat,.ssbp--theme-4 .ssbp-snapchat,.ssbp--theme-5 .ssbp-snapchat,.ssbp--theme-10 .ssbp-snapchat:before,.ssbp--theme-11 .ssbp-snapchat{transition:background-color,.5s;background-color:#fffc00;display:block}
|
620 |
-
.ssbp--theme-6 .ssbp-snapchat,.ssbp--theme-7 .ssbp-snapchat{border-color:#fffc00;display:block}
|
621 |
-
.ssbp--theme-8 .ssbp-snapchat,.ssbp--theme-9 .ssbp-snapchat{display:block}.ssbp--theme-6 .ssbp-snapchat:before,.ssbp--theme-7 .ssbp-snapchat:before,.ssbp--theme-9 .ssbp-snapchat:before{content:url("../images/snapchat-hover.svg")}
|
622 |
-
.ssbp--theme-1 .ssbp-snapchat:before,.ssbp--theme-2 .ssbp-snapchat:before,.ssbp--theme-3 .ssbp-snapchat:before,.ssbp--theme-4 .ssbp-snapchat:before,.ssbp--theme-5 .ssbp-snapchat:before,.ssbp--theme-6 .ssbp-snapchat:before,.ssbp--theme-7 .ssbp-snapchat:before{left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
623 |
-
.ssbp--theme-1 .ssbp-snapchat:hover,.ssbp--theme-1 .ssbp-snapchat:focus,.ssbp--theme-1 .ssbp-snapchat:active{color:#fffc00;border-color:#fffc00}
|
624 |
-
.ssbp--theme-6 .ssbp-snapchat:hover,.ssbp--theme-6 .ssbp-snapchat:focus,.ssbp--theme-6 .ssbp-snapchat:active,.ssbp--theme-7 .ssbp-snapchat:hover,.ssbp--theme-7 .ssbp-snapchat:focus,.ssbp--theme-7 .ssbp-snapchat:active{background-color:#fffc00}
|
625 |
-
.ssbp--theme-2 .ssbp-snapchat:hover,.ssbp--theme-2 .ssbp-snapchat:focus,.ssbp--theme-2 .ssbp-snapchat:active,.ssbp--theme-3 .ssbp-snapchat:hover,.ssbp--theme-3 .ssbp-snapchat:focus,.ssbp--theme-3 .ssbp-snapchat:active,.ssbp--theme-10 .ssbp-snapchat:hover:before,.ssbp--theme-10 .ssbp-snapchat:focus:before,.ssbp--theme-10 .ssbp-snapchat:active:before,.ssbp--theme-11 .ssbp-snapchat:hover,.ssbp--theme-11 .ssbp-snapchat:focus,.ssbp--theme-11 .ssbp-snapchat:active{border-color:#b5b320;background-color:#b5b320}
|
626 |
-
.ssbp--theme-1 .ssbp-snapchat:hover:before,.ssbp--theme-1 .ssbp-snapchat:focus:before,.ssbp--theme-1 .ssbp-snapchat:active:before{content:url("../images/snapchat-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
627 |
-
.ssbp--theme-6 .ssbp-snapchat:hover:before,.ssbp--theme-6 .ssbp-snapchat:focus:before,.ssbp--theme-6 .ssbp-snapchat:active:before,.ssbp--theme-7 .ssbp-snapchat:hover:before,.ssbp--theme-7 .ssbp-snapchat:focus:before,.ssbp--theme-7 .ssbp-snapchat:active:before,.ssbp--theme-8 .ssbp-snapchat:hover:before,.ssbp--theme-8 .ssbp-snapchat:focus:before,.ssbp--theme-8 .ssbp-snapchat:active:before{content:url("../images/snapchat.svg")}
|
628 |
-
.ssbp--theme-1 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-2 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-3 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-4 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-5 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-6 .ssbp-snapchat+.ssbp-each-share,.ssbp--theme-7 .ssbp-snapchat+.ssbp-each-share{background-color:#fffc00}
|
629 |
-
.ssbp--theme-2 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-2 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-2 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-3 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-3 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-3 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-4 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-4 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-4 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-5 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-5 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-5 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-6 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-6 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-6 .ssbp-btn.ssbp-snapchat:active:before,.ssbp--theme-7 .ssbp-btn.ssbp-snapchat:hover:before,.ssbp--theme-7 .ssbp-btn.ssbp-snapchat:focus:before,.ssbp--theme-7 .ssbp-btn.ssbp-snapchat:active:before{transform:translate(-50%,-37%) !important;left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%}
|
630 |
-
.ssbp--theme-5 .ssbp-snapchat{background-color:#fffc00;box-shadow:0 8px 0 #b5b320,0 10px 12px rgba(0,0,0,0.33)}
|
631 |
-
.ssbp--theme-5 .ssbp-snapchat:active{box-shadow:0 4px 0 #fffc00,0 5px 6px rgba(0,0,0,0.33)}
|
632 |
-
.ssbp--theme-3 .ssbp-text,.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12.1px;margin-left:0;text-shadow:-1px -1px rgba(0,0,0,0.2);position:absolute;bottom:-20px;left:50%;transform:translate(-50%)}
|
633 |
-
.ssbp--theme-7 .ssbp-li--snapchat .ssbp-text{color:#fffc00}.ssbp--theme-7 .ssbp-li--snapchat:hover .ssbp-text{color:#fff}
|
634 |
-
.ssbp--theme-9 .ssbp-li--snapchat{border-bottom:5px solid #fffc00}.ssbp--theme-9 .ssbp-snapchat{height:43px !important}
|
635 |
-
.ssbp--theme-9 .ssbp-li--snapchat:hover{border-bottom:5px solid rgba(255,252,40,0.59)}
|
636 |
-
.ssbp--theme-9 .ssbp-li--snapchat .ssbp-snapchat:before{padding:9px 14px 0}.ssbp--theme-10 .ssbp-snapchat{width:40px !important}
|
637 |
-
.ssbp--theme-10 .ssbp-snapchat:before{padding:11px 8px 8px}.ssbp-telegram:before{content:url("../images/telegram.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
638 |
-
.ssbp--theme-8 .ssbp-telegram:before{content:url("../images/telegram-black.svg")}.ssbp--theme-1 .ssbp-telegram,.ssbp--theme-2 .ssbp-telegram,.ssbp--theme-3 .ssbp-telegram,.ssbp--theme-4 .ssbp-telegram,.ssbp--theme-5 .ssbp-telegram,.ssbp--theme-10 .ssbp-telegram:before,.ssbp--theme-11 .ssbp-telegram{transition:background-color,.5s;background-color:#37aee2;display:block}
|
639 |
-
.ssbp--theme-6 .ssbp-telegram,.ssbp--theme-7 .ssbp-telegram{border-color:#37aee2;display:block}
|
640 |
-
.ssbp--theme-8 .ssbp-telegram,.ssbp--theme-9 .ssbp-telegram{display:block}.ssbp--theme-6 .ssbp-telegram:before,.ssbp--theme-7 .ssbp-telegram:before,.ssbp--theme-9 .ssbp-telegram:before{content:url("../images/telegram-hover.svg")}
|
641 |
-
.ssbp--theme-1 .ssbp-telegram:before,.ssbp--theme-2 .ssbp-telegram:before,.ssbp--theme-3 .ssbp-telegram:before,.ssbp--theme-4 .ssbp-telegram:before,.ssbp--theme-5 .ssbp-telegram:before,.ssbp--theme-6 .ssbp-telegram:before,.ssbp--theme-7 .ssbp-telegram:before{left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
642 |
-
.ssbp--theme-1 .ssbp-telegram:hover,.ssbp--theme-1 .ssbp-telegram:focus,.ssbp--theme-1 .ssbp-telegram:active{color:#37aee2;border-color:#37aee2}
|
643 |
-
.ssbp--theme-6 .ssbp-telegram:hover,.ssbp--theme-6 .ssbp-telegram:focus,.ssbp--theme-6 .ssbp-telegram:active,.ssbp--theme-7 .ssbp-telegram:hover,.ssbp--theme-7 .ssbp-telegram:focus,.ssbp--theme-7 .ssbp-telegram:active{background-color:#37aee2}
|
644 |
-
.ssbp--theme-2 .ssbp-telegram:hover,.ssbp--theme-2 .ssbp-telegram:focus,.ssbp--theme-2 .ssbp-telegram:active,.ssbp--theme-3 .ssbp-telegram:hover,.ssbp--theme-3 .ssbp-telegram:focus,.ssbp--theme-3 .ssbp-telegram:active,.ssbp--theme-10 .ssbp-telegram:hover:before,.ssbp--theme-10 .ssbp-telegram:focus:before,.ssbp--theme-10 .ssbp-telegram:active:before,.ssbp--theme-11 .ssbp-telegram:hover,.ssbp--theme-11 .ssbp-telegram:focus,.ssbp--theme-11 .ssbp-telegram:active{border-color:#0674a4;background-color:#0674a4}
|
645 |
-
.ssbp--theme-1 .ssbp-telegram:hover:before,.ssbp--theme-1 .ssbp-telegram:focus:before,.ssbp--theme-1 .ssbp-telegram:active:before{content:url("../images/telegram-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
646 |
-
.ssbp--theme-6 .ssbp-telegram:hover:before,.ssbp--theme-6 .ssbp-telegram:focus:before,.ssbp--theme-6 .ssbp-telegram:active:before,.ssbp--theme-7 .ssbp-telegram:hover:before,.ssbp--theme-7 .ssbp-telegram:focus:before,.ssbp--theme-7 .ssbp-telegram:active:before,.ssbp--theme-8 .ssbp-telegram:hover:before,.ssbp--theme-8 .ssbp-telegram:focus:before,.ssbp--theme-8 .ssbp-telegram:active:before{content:url("../images/telegram.svg")}
|
647 |
-
.ssbp--theme-1 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-2 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-3 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-4 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-5 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-6 .ssbp-telegram+.ssbp-each-share,.ssbp--theme-7 .ssbp-telegram+.ssbp-each-share{background-color:#37aee2}
|
648 |
-
.ssbp--theme-2 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-2 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-2 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-3 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-3 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-3 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-4 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-4 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-4 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-5 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-5 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-5 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-6 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-6 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-6 .ssbp-btn.ssbp-telegram:active:before,.ssbp--theme-7 .ssbp-btn.ssbp-telegram:hover:before,.ssbp--theme-7 .ssbp-btn.ssbp-telegram:focus:before,.ssbp--theme-7 .ssbp-btn.ssbp-telegram:active:before{transform:translate(-50%,-37%) !important;left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%}
|
649 |
-
.ssbp--theme-5 .ssbp-telegram{background-color:#37aee2;box-shadow:0 8px 0 #0674a4,0 10px 12px rgba(0,0,0,0.33)}
|
650 |
-
.ssbp--theme-5 .ssbp-telegram:active{box-shadow:0 4px 0 #37aee2,0 5px 6px rgba(0,0,0,0.33)}
|
651 |
-
.ssbp--theme-3 .ssbp-text,.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12.1px;margin-left:0;text-shadow:-1px -1px rgba(0,0,0,0.2);position:absolute;bottom:-20px;left:50%;transform:translate(-50%)}
|
652 |
-
.ssbp--theme-7 .ssbp-li--telegram .ssbp-text{color:#37aee2}.ssbp--theme-7 .ssbp-li--telegram:hover .ssbp-text{color:#fff}
|
653 |
-
.ssbp--theme-9 .ssbp-li--telegram{border-bottom:5px solid #20779d}.ssbp--theme-9 .ssbp-telegram{height:43px !important}
|
654 |
-
.ssbp--theme-9 .ssbp-li--telegram:hover{border-bottom:5px solid rgba(55,174,226,0.59)}
|
655 |
-
.ssbp--theme-9 .ssbp-li--telegram .ssbp-telegram:before{padding:9px 14px 0}.ssbp--theme-10 .ssbp-telegram{width:40px !important}
|
656 |
-
.ssbp--theme-10 .ssbp-telegram:before{padding:11px 8px 8px}.ssbp-weibo:before{content:url("../images/weibo.svg");left:0;padding:5px 8px 0;position:absolute;top:0;width:100%}
|
657 |
-
.ssbp--theme-8 .ssbp-weibo:before{content:url("../images/weibo-black.svg")}.ssbp--theme-1 .ssbp-weibo,.ssbp--theme-2 .ssbp-weibo,.ssbp--theme-3 .ssbp-weibo,.ssbp--theme-4 .ssbp-weibo,.ssbp--theme-5 .ssbp-weibo,.ssbp--theme-10 .ssbp-weibo:before,.ssbp--theme-11 .ssbp-weibo{transition:background-color,.5s;background-color:#df2029;display:block}
|
658 |
-
.ssbp--theme-6 .ssbp-weibo,.ssbp--theme-7 .ssbp-weibo{border-color:#df2029;display:block}
|
659 |
-
.ssbp--theme-8 .ssbp-weibo,.ssbp--theme-9 .ssbp-weibo{display:block}.ssbp--theme-6 .ssbp-weibo:before,.ssbp--theme-7 .ssbp-weibo:before,.ssbp--theme-9 .ssbp-weibo:before{content:url("../images/weibo-hover.svg")}
|
660 |
-
.ssbp--theme-1 .ssbp-weibo:before,.ssbp--theme-2 .ssbp-weibo:before,.ssbp--theme-3 .ssbp-weibo:before,.ssbp--theme-4 .ssbp-weibo:before,.ssbp--theme-5 .ssbp-weibo:before,.ssbp--theme-6 .ssbp-weibo:before,.ssbp--theme-7 .ssbp-weibo:before{left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
661 |
-
.ssbp--theme-1 .ssbp-weibo:hover,.ssbp--theme-1 .ssbp-weibo:focus,.ssbp--theme-1 .ssbp-weibo:active{color:#df2029;border-color:#df2029}
|
662 |
-
.ssbp--theme-6 .ssbp-weibo:hover,.ssbp--theme-6 .ssbp-weibo:focus,.ssbp--theme-6 .ssbp-weibo:active,.ssbp--theme-7 .ssbp-weibo:hover,.ssbp--theme-7 .ssbp-weibo:focus,.ssbp--theme-7 .ssbp-weibo:active{background-color:#df2029}
|
663 |
-
.ssbp--theme-2 .ssbp-weibo:hover,.ssbp--theme-2 .ssbp-weibo:focus,.ssbp--theme-2 .ssbp-weibo:active,.ssbp--theme-3 .ssbp-weibo:hover,.ssbp--theme-3 .ssbp-weibo:focus,.ssbp--theme-3 .ssbp-weibo:active,.ssbp--theme-10 .ssbp-weibo:hover:before,.ssbp--theme-10 .ssbp-weibo:focus:before,.ssbp--theme-10 .ssbp-weibo:active:before,.ssbp--theme-11 .ssbp-weibo:hover,.ssbp--theme-11 .ssbp-weibo:focus,.ssbp--theme-11 .ssbp-weibo:active{border-color:#ad191f;background-color:#ad191f}
|
664 |
-
.ssbp--theme-1 .ssbp-weibo:hover:before,.ssbp--theme-1 .ssbp-weibo:focus:before,.ssbp--theme-1 .ssbp-weibo:active:before{content:url("../images/weibo-hover.svg");left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%;transform:translate(-50%,-37%)}
|
665 |
-
.ssbp--theme-6 .ssbp-weibo:hover:before,.ssbp--theme-6 .ssbp-weibo:focus:before,.ssbp--theme-6 .ssbp-weibo:active:before,.ssbp--theme-7 .ssbp-weibo:hover:before,.ssbp--theme-7 .ssbp-weibo:focus:before,.ssbp--theme-7 .ssbp-weibo:active:before,.ssbp--theme-8 .ssbp-weibo:hover:before,.ssbp--theme-8 .ssbp-weibo:focus:before,.ssbp--theme-8 .ssbp-weibo:active:before{content:url("../images/weibo.svg")}
|
666 |
-
.ssbp--theme-1 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-2 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-3 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-4 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-5 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-6 .ssbp-weibo+.ssbp-each-share,.ssbp--theme-7 .ssbp-weibo+.ssbp-each-share{background-color:#df2029}
|
667 |
-
.ssbp--theme-2 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-2 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-2 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-3 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-3 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-3 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-4 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-4 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-4 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-5 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-5 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-5 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-6 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-6 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-6 .ssbp-btn.ssbp-weibo:active:before,.ssbp--theme-7 .ssbp-btn.ssbp-weibo:hover:before,.ssbp--theme-7 .ssbp-btn.ssbp-weibo:focus:before,.ssbp--theme-7 .ssbp-btn.ssbp-weibo:active:before{transform:translate(-50%,-37%) !important;left:50%;position:absolute;top:50%;padding-top:0;width:100%;height:100%}
|
668 |
-
.ssbp--theme-5 .ssbp-weibo{background-color:#df2029;box-shadow:0 8px 0 #ad191f,0 10px 12px rgba(0,0,0,0.33)}
|
669 |
-
.ssbp--theme-5 .ssbp-weibo:active{box-shadow:0 4px 0 #ad191f,0 5px 6px rgba(0,0,0,0.33)}
|
670 |
-
.ssbp--theme-3 .ssbp-text,.ssbp--theme-7 .ssbp-text{display:inline-block;vertical-align:middle;font-size:12.1px;margin-left:0;text-shadow:-1px -1px rgba(0,0,0,0.2);position:absolute;bottom:-20px;left:50%;transform:translate(-50%)}
|
671 |
-
.ssbp--theme-7 .ssbp-li--weibo .ssbp-text{color:#df2029}.ssbp--theme-7 .ssbp-li--weibo:hover .ssbp-text{color:#fff}
|
672 |
-
.ssbp--theme-9 .ssbp-li--weibo{border-bottom:5px solid #df2029}.ssbp--theme-9 .ssbp-weibo{height:43px !important}
|
673 |
-
.ssbp--theme-9 .ssbp-li--weibo:hover{border-bottom:5px solid rgba(223,32,41,0.61)}
|
674 |
-
.ssbp--theme-9 .ssbp-li--weibo .ssbp-weibo:before{padding:9px 14px 0}.ssbp--theme-10 .ssbp-weibo{width:40px !important}
|
675 |
-
.ssbp--theme-10 .ssbp-weibo:before{padding:11px 8px 8px}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
@-webkit-keyframes spin{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}
|
2 |
}@keyframes spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
|
3 |
}.ssbp-spinner:before{font-family:'ssbp';content:"\e614"}
|
9 |
.ssbp-chevron-up:before,.ssbp--state-hidden .ssbp-toggle-switch:before{content:"\e615"}
|
10 |
.ssbp-chevron-right:before,.ssbp--fixed-right .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-left .ssbp-toggle-switch:before{content:"\e616"}
|
11 |
.ssbp-chevron-left:before,.ssbp--fixed-left .ssbp-toggle-switch:before,.ssbp--state-hidden.ssbp--fixed-right .ssbp-toggle-switch:before{content:"\e617"}
|
12 |
+
.ssbp-simplesharebuttons:before{content:"\e611"}
|
13 |
+
.ssbp-wrap *,.ssbp-wrap *:before,.ssbp-wrap *:after{box-sizing:border-box}.ssbp-input-url-div,.ssbp-total-shares,.ssba-hide-button.ssbp-each-share,.ssbp-toggle-switch,.ssbp-text{display:none}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
.ssbp-wrap{color:#272727;display:block;font-size:0;padding:0;position:relative;width:fit-content}
|
15 |
.ssbp-wrap.ssbp--centred{display:block;text-align:center}.ssbp-wrap.ssbp--aligned-right{display:block;text-align:right}
|
16 |
.ssbp-wrap.ssbp--aligned-right .ssbp-container{display:inline}.ssbp-wrap .ssbp-container{width:fit-content}
|
38 |
.ssbp--state-hidden.ssbp--fixed-bottom .ssbp-container{-webkit-transform:translateY(100%);transform:translateY(100%)}
|
39 |
.ssbp--state-hidden.ssbp--fixed-left .ssbp-container{-webkit-transform:translateX(-100%);transform:translateX(-100%)}
|
40 |
.ssbp--state-hidden.ssbp--fixed-right .ssbp-container{-webkit-transform:translateX(100%);transform:translateX(100%)}
|
41 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
@-webkit-keyframes ripple-out{100%{visibility:visible;top:-1em;right:-1em;bottom:-1em;left:-1em;opacity:0}
|
43 |
}@keyframes ripple-out{100%{visibility:visible;top:-1em;right:-1em;bottom:-1em;left:-1em;opacity:0}
|
44 |
+
}
|
45 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
#ssba-bar-2.left{position:fixed;top:25vh;z-index:10000}#ssba-bar-2.right{max-width:fit-content;position:fixed;right:0;top:25vh;z-index:10000}
|
47 |
#ssba-bar-2.left .ssbp-bar-list{max-width:84px;text-align:left;min-width:auto;margin:0;padding:0;list-style:none}
|
48 |
#ssba-bar-2.right .ssbp-bar-list{max-width:84px;text-align:right;min-width:auto;margin:0;padding:0;list-style:none}
|
49 |
#ssba-bar-2 .ssbp-bar-list li{margin:0;margin-left:0;margin-right:0;display:block;position:relative}
|
50 |
#ssba-bar-2 ul li a{max-width:84px;display:block}.ssba-plus-2{width:100%}.ssba-classic-2{width:100%}
|
51 |
.ssbp-each-share,#ssba-bar-2 li .ssbp-each-share{display:block}.right li .ssbp-each-share{left:unset;right:100%;margin-right:-12px;margin-left:0}
|
52 |
+
.ssbp-text { font-size: 1rem; font-weight: 600; }
|
53 |
+
|
54 |
+
.ssbp-btn .color-icon svg { display: none; }
|
55 |
+
.ssbp-btn svg,
|
56 |
+
.ssbp-btn img { height: 24px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 24px; }
|
57 |
+
.ssbp-btn { position: relative; transition: all .3s; }
|
58 |
+
|
59 |
+
.ssbp--theme-1 .ssbp-btn,
|
60 |
+
.ssbp--theme-6 .ssbp-btn { border-radius: 50%; }
|
61 |
+
.ssbp--theme-1 .ssbp-btn:hover span:not(.color-icon) svg { display: none; }
|
62 |
+
|
63 |
+
.ssbp--theme-2 .ssbp-btn { transition: all .3s; }
|
64 |
+
.ssbp--theme-2 .ssbp-btn:hover,
|
65 |
+
.ssbp--theme-3 .ssbp-btn:hover,
|
66 |
+
.ssbp--theme-4 .ssbp-btn:hover,
|
67 |
+
.ssbp--theme-10 .ssbp-btn:hover,
|
68 |
+
.ssbp--theme-11 .ssbp-btn:hover { filter: saturate(.5) }
|
69 |
+
|
70 |
+
.ssbp--theme-3 .ssbp-btn .ssbp-text,
|
71 |
+
.ssbp--theme-7 .ssbp-btn .ssbp-text {display: block;position: absolute;bottom: -21px;font-size: 13px;text-align: center;left: 50%;transform: translateX(-50%);text-shadow: 0 0 1px #8a8a8a;color: white;}
|
72 |
+
|
73 |
+
.ssbp--theme-4 .ssbp-btn,
|
74 |
+
.ssbp--theme-11 .ssbp-btn { border-radius: .5rem;}
|
75 |
+
|
76 |
+
.ssbp--theme-5 .ssbp-btn { box-shadow: 0 10px 12px rgb(0 0 0 / 33%) }
|
77 |
+
.ssbp--theme-5 .ssbp-btn:before { box-shadow: 0 8px 0; filter:brightness(.8); position: absolute; content: ''; bottom: 1px; left: 0; width: 100%; height: 8px;}
|
78 |
+
|
79 |
+
.ssbp--theme-6 .ssbp-btn:not(:hover) span:not(.color-icon) svg,
|
80 |
+
.ssbp--theme-7 .ssbp-btn:not(:hover) span:not(.color-icon) svg,
|
81 |
+
.ssbp--theme-9 .ssbp-btn img:not(.color-icon) { display:none; }
|
82 |
+
.ssbp--theme-6 .ssbp-btn:not(:hover) .color-icon svg,
|
83 |
+
.ssbp--theme-7 .ssbp-btn:not(:hover) .color-icon svg,
|
84 |
+
.ssbp--theme-9 .ssbp-btn .color-icon svg,
|
85 |
+
.ssbp--theme-1 .ssbp-btn:hover .color-icon svg { display: block; height: 20px; width: 20px; }
|
86 |
+
|
87 |
+
.ssbp--theme-1 .ssbp-btn:hover,
|
88 |
+
.ssbp--theme-6 .ssbp-btn:not(:hover),
|
89 |
+
.ssbp--theme-7 .ssbp-btn:not(:hover),
|
90 |
+
.ssbp--theme-8 .ssbp-btn { background-color: transparent!important; border: 2px solid; }
|
91 |
+
.ssbp--theme-8 .ssbp-btn { border-color: black; }
|
92 |
+
.ssbp--theme-8 .ssbp-btn { filter: saturate( 0 ) brightness( 0 ); }
|
93 |
+
.ssbp--theme-8 .ssbp-btn:hover { filter: saturate(0); background-color: black!important; }
|
94 |
+
|
95 |
+
.ssbp--theme-9 .ssbp-btn { background-color: transparent!important; border-bottom: 3px solid; }
|
96 |
+
.ssbp--theme-9 .ssbp-btn:hover { filter: brightness(1.4); }
|
97 |
+
|
98 |
+
.ssbp--theme-10 .ssbp-btn svg { height: unset!important; }
|
99 |
+
.ssbp--theme-10 .ssbp-btn,
|
100 |
+
.ssbp--theme-11 .ssbp-btn { height: auto!important; width: auto!important; padding: .5rem 1rem; }
|
101 |
+
.ssbp--theme-10 .ssbp-btn svg { position: unset; transform: none; padding: 1.5rem 0; }
|
102 |
+
|
103 |
+
.ssbp--theme-11 .ssbp-btn svg { display: none; }
|
104 |
+
.ssbp--theme-11 .ssbp-btn .ssbp-text { color: white!important; display: block; }
|
105 |
+
|
106 |
+
.ssbp-each-share {
|
107 |
+
position: absolute;
|
108 |
+
bottom: -1.5rem;
|
109 |
+
color: black;
|
110 |
+
font-size: 1rem;
|
111 |
+
left: 50%;
|
112 |
+
transform: translateX(-50%)
|
113 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/style.css
CHANGED
@@ -108,16 +108,6 @@
|
|
108 |
font-size: 12px;
|
109 |
}
|
110 |
|
111 |
-
.ssbp--theme-4 .ssbp-list li {
|
112 |
-
margin-left: 5px;
|
113 |
-
}
|
114 |
-
|
115 |
-
.ssbp--theme-4 .ssbp-btn {
|
116 |
-
width: 2.5em;
|
117 |
-
height: 2.5em;
|
118 |
-
line-height: 2.5em;
|
119 |
-
}
|
120 |
-
|
121 |
.ssbp-btn:before {
|
122 |
font-size: 18px;
|
123 |
}
|
108 |
font-size: 12px;
|
109 |
}
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
.ssbp-btn:before {
|
112 |
font-size: 18px;
|
113 |
}
|
instance.php
CHANGED
@@ -9,7 +9,7 @@ namespace SimpleShareButtonsAdder;
|
|
9 |
|
10 |
define( 'SSBA_FILE', __FILE__ );
|
11 |
define( 'SSBA_ROOT', trailingslashit( dirname( __FILE__ ) ) );
|
12 |
-
define( 'SSBA_VERSION', '8.
|
13 |
|
14 |
global $simple_share_buttons_adder_plugin;
|
15 |
|
9 |
|
10 |
define( 'SSBA_FILE', __FILE__ );
|
11 |
define( 'SSBA_ROOT', trailingslashit( dirname( __FILE__ ) ) );
|
12 |
+
define( 'SSBA_VERSION', '8.4.0' );
|
13 |
|
14 |
global $simple_share_buttons_adder_plugin;
|
15 |
|
js/admin.js
CHANGED
@@ -478,14 +478,7 @@ var SimpleShareButtonsAdder = ( function( $, wp ) {
|
|
478 |
|
479 |
// Add class to preview when scrolled to.
|
480 |
$( window ).on( 'scroll', function(){
|
481 |
-
var
|
482 |
-
stickyPlusTop = $( '#ssba-preview-title-2' ).offset().top;
|
483 |
-
|
484 |
-
if ( $( window ).scrollTop() >= stickyTop ) {
|
485 |
-
$( '.master-ssba-prev-wrap, #ssba-preview-1' ).addClass( 'ssba-sticky' );
|
486 |
-
} else {
|
487 |
-
$( '.master-ssba-prev-wrap, #ssba-preview-1' ).removeClass( 'ssba-sticky' );
|
488 |
-
}
|
489 |
|
490 |
if ( $( window ).scrollTop() >= stickyPlusTop ) {
|
491 |
$( '.master-ssba-prev-wrap2, #ssba-preview' ).addClass( 'ssba-sticky' );
|
@@ -742,7 +735,22 @@ var SimpleShareButtonsAdder = ( function( $, wp ) {
|
|
742 |
* @param target
|
743 |
*/
|
744 |
preview: function( selection, target ) {
|
745 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
746 |
},
|
747 |
|
748 |
/**
|
@@ -978,7 +986,7 @@ var SimpleShareButtonsAdder = ( function( $, wp ) {
|
|
978 |
iconColorBar = $( '#ssba_bar_icon_color' ).val(),
|
979 |
iconColorHoverBar = $( '#ssba_bar_icon_hover_color' ).val(),
|
980 |
buttonColorHoverBar = $( '#ssba_bar_button_hover_color' ).val(),
|
981 |
-
newStyle = '#ssba-preview .ssbp-btn
|
982 |
|
983 |
$( '#simple-share-buttons-adder-styles-inline-css' ).html( newStyle );
|
984 |
},
|
478 |
|
479 |
// Add class to preview when scrolled to.
|
480 |
$( window ).on( 'scroll', function(){
|
481 |
+
var stickyPlusTop = $( '#ssba-preview-title-2' ).offset().top;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
|
483 |
if ( $( window ).scrollTop() >= stickyPlusTop ) {
|
484 |
$( '.master-ssba-prev-wrap2, #ssba-preview' ).addClass( 'ssba-sticky' );
|
735 |
* @param target
|
736 |
*/
|
737 |
preview: function( selection, target ) {
|
738 |
+
const theTarget = document.querySelector( target );
|
739 |
+
|
740 |
+
if ( theTarget ) {
|
741 |
+
theTarget.classList.remove('ssbp--theme-11');
|
742 |
+
theTarget.classList.remove('ssbp--theme-10');
|
743 |
+
theTarget.classList.remove('ssbp--theme-9');
|
744 |
+
theTarget.classList.remove('ssbp--theme-8');
|
745 |
+
theTarget.classList.remove('ssbp--theme-7');
|
746 |
+
theTarget.classList.remove('ssbp--theme-6');
|
747 |
+
theTarget.classList.remove('ssbp--theme-5');
|
748 |
+
theTarget.classList.remove('ssbp--theme-4');
|
749 |
+
theTarget.classList.remove('ssbp--theme-3');
|
750 |
+
theTarget.classList.remove('ssbp--theme-2');
|
751 |
+
theTarget.classList.remove('ssbp--theme-1');
|
752 |
+
theTarget.classList.add('ssbp--theme-' + selection );
|
753 |
+
}
|
754 |
},
|
755 |
|
756 |
/**
|
986 |
iconColorBar = $( '#ssba_bar_icon_color' ).val(),
|
987 |
iconColorHoverBar = $( '#ssba_bar_icon_hover_color' ).val(),
|
988 |
buttonColorHoverBar = $( '#ssba_bar_button_hover_color' ).val(),
|
989 |
+
newStyle = '#ssba-preview .ssbp-btn svg, #ssba-preview .ssbp-btn svg path { width: ' + iconSize + 'px; height: ' + iconSize + 'px; line-height: ' + iconLineHeight + 'px; fill: ' + iconColor + '; } #ssba-preview .ssbp-btn:hover svg, #ssba-preview .ssbp-btn:hover svg path { fill: ' + iconColorHover + '!important; } #ssba-preview .ssbp-btn:hover { background: ' + buttonColorHover + '!important; } #ssba-preview-2 .ssbp-btn svg { width: ' + iconSizeBar + 'px; height: ' + iconSizeBar + 'px; line-height: ' + iconLineHeightBar + 'px; fill: ' + iconColorBar + '; } #ssba-preview-2 .ssbp-btn:hover svg { fill: ' + iconColorHoverBar + '; } #ssba-preview-2 .ssbp-btn:hover { background: ' + buttonColorHoverBar + '!important; }';
|
990 |
|
991 |
$( '#simple-share-buttons-adder-styles-inline-css' ).html( newStyle );
|
992 |
},
|
js/ssba.js
CHANGED
@@ -76,10 +76,40 @@ var Main = ( function( $, FB ) {
|
|
76 |
} else {
|
77 |
|
78 |
// These share options don't need to have a popup.
|
79 |
-
if ( 'email' === $( event ).data( 'site' ) || 'print' === $( event ).data( 'site' ) || 'pinterest' === $( event ).data( 'site' ) ) {
|
|
|
|
|
|
|
80 |
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
} else {
|
84 |
|
85 |
// Prepare popup window.
|
76 |
} else {
|
77 |
|
78 |
// These share options don't need to have a popup.
|
79 |
+
if ( 'copy' === $( event ).data( 'site' ) || 'email' === $( event ).data( 'site' ) || 'print' === $( event ).data( 'site' ) || 'pinterest' === $( event ).data( 'site' ) ) {
|
80 |
+
if ( 'copy' === $( event ).data( 'site' ) ) {
|
81 |
+
navigator.clipboard.writeText(window.location.href)
|
82 |
+
const copybutton = document.querySelector( '[data-site="copy"]' )
|
83 |
|
84 |
+
if ( copybutton ) {
|
85 |
+
const copymessage = document.createElement( 'span' )
|
86 |
+
copymessage.innerText = 'URL Copied!';
|
87 |
+
copymessage.className = 'copy-notify';
|
88 |
+
copymessage.style.opacity = '1';
|
89 |
+
copymessage.style.width = '100px';
|
90 |
+
copymessage.style.fontSize = '12px';
|
91 |
+
copymessage.style.transition = 'all .6s';
|
92 |
+
copymessage.style.position = 'absolute';
|
93 |
+
copymessage.style.top = '-24px';
|
94 |
+
copymessage.style.left = '-24px';
|
95 |
+
copybutton.append( copymessage );
|
96 |
+
|
97 |
+
setTimeout( () => {
|
98 |
+
copymessage.style.opacity = '0';
|
99 |
+
copymessage.style.minWidth = '0';
|
100 |
+
copymessage.style.width = '0';
|
101 |
+
copymessage.style.padding = '0';
|
102 |
+
copymessage.style.overflow = 'hidden';
|
103 |
+
|
104 |
+
setTimeout( () => {
|
105 |
+
copymessage.remove();
|
106 |
+
}, 1000 );
|
107 |
+
}, 1500 );
|
108 |
+
}
|
109 |
+
} else {
|
110 |
+
// Just redirect.
|
111 |
+
window.location.href = $( event ).attr( 'href' );
|
112 |
+
}
|
113 |
} else {
|
114 |
|
115 |
// Prepare popup window.
|
js/vendor/bootstrap.js
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
/*!
|
2 |
-
* Bootstrap v3.3.4 (http://getbootstrap.com)
|
3 |
-
* Copyright 2011-2015 Twitter, Inc.
|
4 |
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/
|
6 |
-
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){
|
7 |
-
var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/vendor/colorpicker.js
DELETED
@@ -1,633 +0,0 @@
|
|
1 |
-
/*
|
2 |
-
colpick Color Picker
|
3 |
-
Copyright 2013 Jose Vargas. Licensed under GPL license. Based on Stefan Petre's Color Picker www.eyecon.ro, dual licensed under the MIT and GPL licenses
|
4 |
-
|
5 |
-
For usage and examples: colpick.com/plugin
|
6 |
-
*/
|
7 |
-
|
8 |
-
(function ($) {
|
9 |
-
var colpick = function () {
|
10 |
-
var
|
11 |
-
tpl = '<div data-addon="" class="colpick"><div class="colpick_color"><div class="colpick_color_overlay1"><div class="colpick_color_overlay2"><div class="colpick_selector_outer"><div class="colpick_selector_inner"></div></div></div></div></div><div class="colpick_hue"><div class="colpick_hue_arrs"><div class="colpick_hue_larr"></div><div class="colpick_hue_rarr"></div></div></div><div class="colpick_new_color"></div><div class="colpick_current_color"></div><div class="colpick_hex_field"><div class="colpick_field_letter">#</div><input type="text" maxlength="6" size="6" /></div><div class="colpick_rgb_r colpick_field"><div class="colpick_field_letter">R</div><input type="text" maxlength="3" size="3" /><div class="colpick_field_arrs"><div class="colpick_field_uarr"></div><div class="colpick_field_darr"></div></div></div><div class="colpick_rgb_g colpick_field"><div class="colpick_field_letter">G</div><input type="text" maxlength="3" size="3" /><div class="colpick_field_arrs"><div class="colpick_field_uarr"></div><div class="colpick_field_darr"></div></div></div><div class="colpick_rgb_b colpick_field"><div class="colpick_field_letter">B</div><input type="text" maxlength="3" size="3" /><div class="colpick_field_arrs"><div class="colpick_field_uarr"></div><div class="colpick_field_darr"></div></div></div><div class="colpick_hsb_h colpick_field"><div class="colpick_field_letter">H</div><input type="text" maxlength="3" size="3" /><div class="colpick_field_arrs"><div class="colpick_field_uarr"></div><div class="colpick_field_darr"></div></div></div><div class="colpick_hsb_s colpick_field"><div class="colpick_field_letter">S</div><input type="text" maxlength="3" size="3" /><div class="colpick_field_arrs"><div class="colpick_field_uarr"></div><div class="colpick_field_darr"></div></div></div><div class="colpick_hsb_b colpick_field"><div class="colpick_field_letter">B</div><input type="text" maxlength="3" size="3" /><div class="colpick_field_arrs"><div class="colpick_field_uarr"></div><div class="colpick_field_darr"></div></div></div><div class="colpick_submit"></div></div>',
|
12 |
-
defaults = {
|
13 |
-
showEvent: 'click',
|
14 |
-
onShow: function () {},
|
15 |
-
onBeforeShow: function(){},
|
16 |
-
onHide: function () {},
|
17 |
-
onChange: function () {},
|
18 |
-
onSubmit: function () {},
|
19 |
-
colorScheme: 'light',
|
20 |
-
color: '4582ec',
|
21 |
-
livePreview: true,
|
22 |
-
flat: false,
|
23 |
-
layout: 'full',
|
24 |
-
submit: 1,
|
25 |
-
submitText: 'OK',
|
26 |
-
height: 156
|
27 |
-
},
|
28 |
-
//Fill the inputs of the plugin
|
29 |
-
fillRGBFields = function (hsb, cal) {
|
30 |
-
var rgb = hsbToRgb(hsb);
|
31 |
-
$(cal).data('colpick').fields
|
32 |
-
.eq(1).val(rgb.r).end()
|
33 |
-
.eq(2).val(rgb.g).end()
|
34 |
-
.eq(3).val(rgb.b).end();
|
35 |
-
},
|
36 |
-
fillHSBFields = function (hsb, cal) {
|
37 |
-
$(cal).data('colpick').fields
|
38 |
-
.eq(4).val(Math.round(hsb.h)).end()
|
39 |
-
.eq(5).val(Math.round(hsb.s)).end()
|
40 |
-
.eq(6).val(Math.round(hsb.b)).end();
|
41 |
-
},
|
42 |
-
fillHexFields = function (hsb, cal) {
|
43 |
-
$(cal).data('colpick').fields.eq(0).val(hsbToHex(hsb));
|
44 |
-
},
|
45 |
-
//Set the round selector position
|
46 |
-
setSelector = function (hsb, cal) {
|
47 |
-
$(cal).data('colpick').selector.css('backgroundColor', '#' + hsbToHex({h: hsb.h, s: 100, b: 100}));
|
48 |
-
$(cal).data('colpick').selectorIndic.css({
|
49 |
-
left: parseInt($(cal).data('colpick').height * hsb.s/100, 10),
|
50 |
-
top: parseInt($(cal).data('colpick').height * (100-hsb.b)/100, 10)
|
51 |
-
});
|
52 |
-
},
|
53 |
-
//Set the hue selector position
|
54 |
-
setHue = function (hsb, cal) {
|
55 |
-
$(cal).data('colpick').hue.css('top', parseInt($(cal).data('colpick').height - $(cal).data('colpick').height * hsb.h/360, 10));
|
56 |
-
},
|
57 |
-
//Set current and new colors
|
58 |
-
setCurrentColor = function (hsb, cal) {
|
59 |
-
$(cal).data('colpick').currentColor.css('backgroundColor', '#' + hsbToHex(hsb));
|
60 |
-
},
|
61 |
-
setNewColor = function (hsb, cal) {
|
62 |
-
$(cal).data('colpick').newColor.css('backgroundColor', '#' + hsbToHex(hsb));
|
63 |
-
},
|
64 |
-
//Called when the new color is changed
|
65 |
-
change = function (ev) {
|
66 |
-
var cal = $(this).parent().parent(), col;
|
67 |
-
|
68 |
-
if (this.parentNode.className.indexOf('_hex') > 0) {
|
69 |
-
cal.data('colpick').color = col = hexToHsb(fixHex(this.value));
|
70 |
-
fillRGBFields(col, cal.get(0));
|
71 |
-
fillHSBFields(col, cal.get(0));
|
72 |
-
} else if (this.parentNode.className.indexOf('_hsb') > 0) {
|
73 |
-
cal.data('colpick').color = col = fixHSB({
|
74 |
-
h: parseInt(cal.data('colpick').fields.eq(4).val(), 10),
|
75 |
-
s: parseInt(cal.data('colpick').fields.eq(5).val(), 10),
|
76 |
-
b: parseInt(cal.data('colpick').fields.eq(6).val(), 10)
|
77 |
-
});
|
78 |
-
fillRGBFields(col, cal.get(0));
|
79 |
-
fillHexFields(col, cal.get(0));
|
80 |
-
} else {
|
81 |
-
cal.data('colpick').color = col = rgbToHsb(fixRGB({
|
82 |
-
r: parseInt(cal.data('colpick').fields.eq(1).val(), 10),
|
83 |
-
g: parseInt(cal.data('colpick').fields.eq(2).val(), 10),
|
84 |
-
b: parseInt(cal.data('colpick').fields.eq(3).val(), 10)
|
85 |
-
}));
|
86 |
-
fillHexFields(col, cal.get(0));
|
87 |
-
fillHSBFields(col, cal.get(0));
|
88 |
-
}
|
89 |
-
|
90 |
-
setSelector(col, cal.get(0));
|
91 |
-
setHue(col, cal.get(0));
|
92 |
-
setNewColor(col, cal.get(0));
|
93 |
-
cal.data('colpick').onChange.apply(cal.parent(), [col, hsbToHex(col), hsbToRgb(col), cal.data('colpick').el, 0]);
|
94 |
-
},
|
95 |
-
//Change style on blur and on focus of inputs
|
96 |
-
blur = function (ev) {
|
97 |
-
$(this).parent().removeClass('colpick_focus');
|
98 |
-
},
|
99 |
-
focus = function () {
|
100 |
-
$(this).parent().parent().data('colpick').fields.parent().removeClass('colpick_focus');
|
101 |
-
$(this).parent().addClass('colpick_focus');
|
102 |
-
},
|
103 |
-
//Increment/decrement arrows functions
|
104 |
-
downIncrement = function (ev) {
|
105 |
-
ev.preventDefault ? ev.preventDefault() : ev.returnValue = false;
|
106 |
-
var field = $(this).parent().find('input').focus();
|
107 |
-
var current = {
|
108 |
-
el: $(this).parent().addClass('colpick_slider'),
|
109 |
-
max: this.parentNode.className.indexOf('_hsb_h') > 0 ? 360 : (this.parentNode.className.indexOf('_hsb') > 0 ? 100 : 255),
|
110 |
-
y: ev.pageY,
|
111 |
-
field: field,
|
112 |
-
val: parseInt(field.val(), 10),
|
113 |
-
preview: $(this).parent().parent().data('colpick').livePreview
|
114 |
-
};
|
115 |
-
$(document).mouseup(current, upIncrement);
|
116 |
-
$(document).mousemove(current, moveIncrement);
|
117 |
-
},
|
118 |
-
moveIncrement = function (ev) {
|
119 |
-
ev.data.field.val(Math.max(0, Math.min(ev.data.max, parseInt(ev.data.val - ev.pageY + ev.data.y, 10))));
|
120 |
-
if (ev.data.preview) {
|
121 |
-
change.apply(ev.data.field.get(0), [true]);
|
122 |
-
}
|
123 |
-
return false;
|
124 |
-
},
|
125 |
-
upIncrement = function (ev) {
|
126 |
-
change.apply(ev.data.field.get(0), [true]);
|
127 |
-
ev.data.el.removeClass('colpick_slider').find('input').focus();
|
128 |
-
$(document).off('mouseup', upIncrement);
|
129 |
-
$(document).off('mousemove', moveIncrement);
|
130 |
-
return false;
|
131 |
-
},
|
132 |
-
//Hue slider functions
|
133 |
-
downHue = function (ev) {
|
134 |
-
ev.preventDefault ? ev.preventDefault() : ev.returnValue = false;
|
135 |
-
var current = {
|
136 |
-
cal: $(this).parent(),
|
137 |
-
y: $(this).offset().top
|
138 |
-
};
|
139 |
-
$(document).on('mouseup touchend',current,upHue);
|
140 |
-
$(document).on('mousemove touchmove',current,moveHue);
|
141 |
-
|
142 |
-
var pageY = ((ev.type == 'touchstart') ? ev.originalEvent.changedTouches[0].pageY : ev.pageY );
|
143 |
-
change.apply(
|
144 |
-
current.cal.data('colpick')
|
145 |
-
.fields.eq(4).val(parseInt(360*(current.cal.data('colpick').height - (pageY - current.y))/current.cal.data('colpick').height, 10))
|
146 |
-
.get(0),
|
147 |
-
[current.cal.data('colpick').livePreview]
|
148 |
-
);
|
149 |
-
return false;
|
150 |
-
},
|
151 |
-
moveHue = function (ev) {
|
152 |
-
var pageY = ((ev.type == 'touchmove') ? ev.originalEvent.changedTouches[0].pageY : ev.pageY );
|
153 |
-
change.apply(
|
154 |
-
ev.data.cal.data('colpick')
|
155 |
-
.fields.eq(4).val(parseInt(360*(ev.data.cal.data('colpick').height - Math.max(0,Math.min(ev.data.cal.data('colpick').height,(pageY - ev.data.y))))/ev.data.cal.data('colpick').height, 10))
|
156 |
-
.get(0),
|
157 |
-
[ev.data.preview]
|
158 |
-
);
|
159 |
-
return false;
|
160 |
-
},
|
161 |
-
upHue = function (ev) {
|
162 |
-
fillRGBFields(ev.data.cal.data('colpick').color, ev.data.cal.get(0));
|
163 |
-
fillHexFields(ev.data.cal.data('colpick').color, ev.data.cal.get(0));
|
164 |
-
$(document).off('mouseup touchend',upHue);
|
165 |
-
$(document).off('mousemove touchmove',moveHue);
|
166 |
-
return false;
|
167 |
-
},
|
168 |
-
//Color selector functions
|
169 |
-
downSelector = function (ev) {
|
170 |
-
ev.preventDefault ? ev.preventDefault() : ev.returnValue = false;
|
171 |
-
var current = {
|
172 |
-
cal: $(this).parent(),
|
173 |
-
pos: $(this).offset()
|
174 |
-
};
|
175 |
-
current.preview = current.cal.data('colpick').livePreview;
|
176 |
-
|
177 |
-
$(document).on('mouseup touchend',current,upSelector);
|
178 |
-
$(document).on('mousemove touchmove',current,moveSelector);
|
179 |
-
|
180 |
-
var payeX,pageY;
|
181 |
-
if(ev.type == 'touchstart') {
|
182 |
-
pageX = ev.originalEvent.changedTouches[0].pageX,
|
183 |
-
pageY = ev.originalEvent.changedTouches[0].pageY;
|
184 |
-
} else {
|
185 |
-
pageX = ev.pageX;
|
186 |
-
pageY = ev.pageY;
|
187 |
-
}
|
188 |
-
|
189 |
-
change.apply(
|
190 |
-
current.cal.data('colpick').fields
|
191 |
-
.eq(6).val(parseInt(100*(current.cal.data('colpick').height - (pageY - current.pos.top))/current.cal.data('colpick').height, 10)).end()
|
192 |
-
.eq(5).val(parseInt(100*(pageX - current.pos.left)/current.cal.data('colpick').height, 10))
|
193 |
-
.get(0),
|
194 |
-
[current.preview]
|
195 |
-
);
|
196 |
-
return false;
|
197 |
-
},
|
198 |
-
moveSelector = function (ev) {
|
199 |
-
var payeX,pageY;
|
200 |
-
if(ev.type == 'touchmove') {
|
201 |
-
pageX = ev.originalEvent.changedTouches[0].pageX,
|
202 |
-
pageY = ev.originalEvent.changedTouches[0].pageY;
|
203 |
-
} else {
|
204 |
-
pageX = ev.pageX;
|
205 |
-
pageY = ev.pageY;
|
206 |
-
}
|
207 |
-
|
208 |
-
change.apply(
|
209 |
-
ev.data.cal.data('colpick').fields
|
210 |
-
.eq(6).val(parseInt(100*(ev.data.cal.data('colpick').height - Math.max(0,Math.min(ev.data.cal.data('colpick').height,(pageY - ev.data.pos.top))))/ev.data.cal.data('colpick').height, 10)).end()
|
211 |
-
.eq(5).val(parseInt(100*(Math.max(0,Math.min(ev.data.cal.data('colpick').height,(pageX - ev.data.pos.left))))/ev.data.cal.data('colpick').height, 10))
|
212 |
-
.get(0),
|
213 |
-
[ev.data.preview]
|
214 |
-
);
|
215 |
-
return false;
|
216 |
-
},
|
217 |
-
upSelector = function (ev) {
|
218 |
-
fillRGBFields(ev.data.cal.data('colpick').color, ev.data.cal.get(0));
|
219 |
-
fillHexFields(ev.data.cal.data('colpick').color, ev.data.cal.get(0));
|
220 |
-
$(document).off('mouseup touchend',upSelector);
|
221 |
-
$(document).off('mousemove touchmove',moveSelector);
|
222 |
-
return false;
|
223 |
-
},
|
224 |
-
|
225 |
-
//Submit button
|
226 |
-
clickSubmit = function (ev) {
|
227 |
-
var cal = $(this).parent(),
|
228 |
-
col = cal.data('colpick').color,
|
229 |
-
submitButton = $( '.colpick_submit' ).attr( 'id' ),
|
230 |
-
bWidth = $( '#ssba_border_width' ).val() + 'px';
|
231 |
-
|
232 |
-
cal.data('colpick').origColor = col;
|
233 |
-
setCurrentColor(col, cal.get(0));
|
234 |
-
cal.data('colpick').onSubmit(col, hsbToHex(col), hsbToRgb(col), cal.data('colpick').el);
|
235 |
-
|
236 |
-
// Classic share text color.
|
237 |
-
if ( 'ssba_font_color' === submitButton ) {
|
238 |
-
$( '.ssba-share-text-prev' ).css( 'color', '#' + hsbToHex( col ) );
|
239 |
-
}
|
240 |
-
|
241 |
-
// Plus share text color.
|
242 |
-
if ( 'ssba_plus_font_color' === submitButton ) {
|
243 |
-
$( '#ssba-preview .ssba-share-text-prev' ).css( 'color', '#' + hsbToHex(col ) );
|
244 |
-
}
|
245 |
-
|
246 |
-
// Classic Container Border Color.
|
247 |
-
if ( 'ssba_div_border' === submitButton ) {
|
248 |
-
$( '#ssba-preview-1' ).css( 'border', bWidth + ' solid ' + '#' + hsbToHex( col ) );
|
249 |
-
}
|
250 |
-
|
251 |
-
// Classic Container Background Color.
|
252 |
-
if ( 'ssba_div_background' === submitButton ) {
|
253 |
-
$( '#ssba-preview-1' ).css( 'background', '#' + hsbToHex( col ) );
|
254 |
-
}
|
255 |
-
|
256 |
-
// Button color.
|
257 |
-
if ( 'ssba_plus_button_color' === submitButton ) {
|
258 |
-
$( '#ssba-preview .ssbp-list li' ).each( function() {
|
259 |
-
$( this ).find( 'a' ).css( 'background', '#' + hsbToHex( col ) );
|
260 |
-
} );
|
261 |
-
}
|
262 |
-
|
263 |
-
// Icon color.
|
264 |
-
if ( 'ssba_plus_icon_color' === submitButton ) {
|
265 |
-
var iconSize = $( '#ssba_plus_icon_size' ).val(),
|
266 |
-
iconLineHeight = $( '#ssba_plus_height' ).val(),
|
267 |
-
iconColor = '#' + hsbToHex( col ),
|
268 |
-
iconColorHover = $( '#ssba_plus_icon_hover_color' ).val(),
|
269 |
-
buttonColorHover = $( '#ssba_plus_button_hover_color' ).val(),
|
270 |
-
newStyle = '#ssba-preview .ssbp-btn:before{ font-size: ' + iconSize + 'px; line-height: ' + iconLineHeight + 'px; color: ' + iconColor + '; } #ssba-preview .ssbp-btn:hover::before { color: ' + iconColorHover + '; } #ssba-preview .ssbp-btn:hover { background: ' + buttonColorHover + '!important; }';
|
271 |
-
|
272 |
-
$( '#simple-share-buttons-adder-styles-inline-css' ).html( newStyle );
|
273 |
-
}
|
274 |
-
|
275 |
-
// Icon hover color
|
276 |
-
if ( 'ssba_plus_icon_hover_color' === submitButton ) {
|
277 |
-
var iconSize = $( '#ssba_plus_icon_size' ).val(),
|
278 |
-
iconLineHeight = $( '#ssba_plus_height' ).val(),
|
279 |
-
iconColor = $( '#ssba_plus_icon_color' ).val(),
|
280 |
-
iconColorHover = '#' + hsbToHex( col ),
|
281 |
-
buttonColorHover = $( '#ssba_plus_button_hover_color' ).val(),
|
282 |
-
newStyle = '#ssba-preview .ssbp-btn:before{ font-size: ' + iconSize + 'px; line-height: ' + iconLineHeight + 'px; color: ' + iconColor + '; } #ssba-preview .ssbp-btn:hover::before { color: ' + iconColorHover + '; } #ssba-preview .ssbp-btn:hover { background: ' + buttonColorHover + '!important; }';
|
283 |
-
|
284 |
-
$( '#simple-share-buttons-adder-styles-inline-css' ).html( newStyle );
|
285 |
-
}
|
286 |
-
|
287 |
-
// Button hover color
|
288 |
-
if ( 'ssba_plus_button_hover_color' === submitButton ) {
|
289 |
-
var iconSize = $( '#ssba_plus_icon_size' ).val(),
|
290 |
-
iconLineHeight = $( '#ssba_plus_height' ).val(),
|
291 |
-
iconColor = $( '#ssba_plus_icon_color' ).val(),
|
292 |
-
iconColorHover = $( '#ssba_plus_icon_hover_color' ).val(),
|
293 |
-
buttonColorHover = '#' + hsbToHex( col ),
|
294 |
-
newStyle = '#ssba-preview .ssbp-btn:before{ font-size: ' + iconSize + 'px; line-height: ' + iconLineHeight + 'px; color: ' + iconColor + '; } #ssba-preview .ssbp-btn:hover::before { color: ' + iconColorHover + '; } #ssba-preview .ssbp-btn:hover { background: ' + buttonColorHover + '!important; }';
|
295 |
-
|
296 |
-
$( '#simple-share-buttons-adder-styles-inline-css' ).html( newStyle );
|
297 |
-
}
|
298 |
-
|
299 |
-
// Bar Button color.
|
300 |
-
if ( 'ssba_bar_button_color' === submitButton ) {
|
301 |
-
$( '#ssba-preview-2 .ssbp-list li' ).each( function() {
|
302 |
-
$( this ).find( 'a' ).css( 'background', '#' + hsbToHex( col ) );
|
303 |
-
} );
|
304 |
-
}
|
305 |
-
|
306 |
-
// Bar Icon color.
|
307 |
-
if ( 'ssba_bar_icon_color' === submitButton ) {
|
308 |
-
var iconSize = $( '#ssba_bar_icon_size' ).val(),
|
309 |
-
iconLineHeight = $( '#ssba_bar_height' ).val(),
|
310 |
-
iconColor = '#' + hsbToHex( col ),
|
311 |
-
iconColorHover = $( '#ssba_bar_icon_hover_color' ).val(),
|
312 |
-
buttonColorHover = $( '#ssba_bar_button_hover_color' ).val(),
|
313 |
-
newStyle = '#ssba-preview-2 .ssbp-btn:before { font-size: ' + iconSize + 'px; line-height: ' + iconLineHeight + 'px; color: ' + iconColor + '; } #ssba-preview-2 .ssbp-btn:hover::before { color: ' + iconColorHover + '; } #ssba-preview-2 .ssbp-btn:hover { background: ' + buttonColorHover + '!important; }';
|
314 |
-
|
315 |
-
$( '#simple-share-buttons-adder-styles-inline-css' ).html( newStyle );
|
316 |
-
}
|
317 |
-
|
318 |
-
// Bar Icon hover color
|
319 |
-
if ( 'ssba_bar_icon_hover_color' === submitButton ) {
|
320 |
-
var iconSize = $( '#ssba_bar_icon_size' ).val(),
|
321 |
-
iconLineHeight = $( '#ssba_bar_height' ).val(),
|
322 |
-
iconColor = $( '#ssba_bar_icon_color' ).val(),
|
323 |
-
iconColorHover = '#' + hsbToHex( col ),
|
324 |
-
buttonColorHover = $( '#ssba_bar_button_hover_color' ).val(),
|
325 |
-
newStyle = '#ssba-preview-2 .ssbp-btn:before{ font-size: ' + iconSize + 'px; line-height: ' + iconLineHeight + 'px; color: ' + iconColor + '; } #ssba-preview-2 .ssbp-btn:hover::before { color: ' + iconColorHover + '; } #ssba-preview-2 .ssbp-btn:hover { background: ' + buttonColorHover + '!important; }';
|
326 |
-
|
327 |
-
$( '#simple-share-buttons-adder-styles-inline-css' ).html( newStyle );
|
328 |
-
}
|
329 |
-
|
330 |
-
// Bar Button hover color
|
331 |
-
if ( 'ssba_bar_button_hover_color' === submitButton ) {
|
332 |
-
var iconSize = $( '#ssba_bar_icon_size' ).val(),
|
333 |
-
iconLineHeight = $( '#ssba_bar_height' ).val(),
|
334 |
-
iconColor = $( '#ssba_bar_icon_color' ).val(),
|
335 |
-
iconColorHover = $( '#ssba_bar_icon_hover_color' ).val(),
|
336 |
-
buttonColorHover = '#' + hsbToHex( col ),
|
337 |
-
newStyle = '#ssba-preview-2 .ssbp-btn:before{ font-size: ' + iconSize + 'px; line-height: ' + iconLineHeight + 'px; color: ' + iconColor + '; } #ssba-preview-2 .ssbp-btn:hover::before { color: ' + iconColorHover + '; } #ssba-preview-2 .ssbp-btn:hover { background: ' + buttonColorHover + '!important; }';
|
338 |
-
|
339 |
-
$( '#simple-share-buttons-adder-styles-inline-css' ).html( newStyle );
|
340 |
-
}
|
341 |
-
},
|
342 |
-
|
343 |
-
//Show/hide the color picker
|
344 |
-
show = function (ev) {
|
345 |
-
// Prevent the trigger of any direct parent
|
346 |
-
ev.stopPropagation();
|
347 |
-
var cal = $('#' + $(this).data('colpickId'));
|
348 |
-
cal.data('colpick').onBeforeShow.apply(this, [cal.get(0)]);
|
349 |
-
var pos = $(this).offset();
|
350 |
-
var top = pos.top + this.offsetHeight;
|
351 |
-
var left = pos.left;
|
352 |
-
var viewPort = getViewport();
|
353 |
-
var calW = cal.width();
|
354 |
-
if (left + calW > viewPort.l + viewPort.w) {
|
355 |
-
left -= calW;
|
356 |
-
}
|
357 |
-
cal.css({left: left + 'px', top: top + 'px'});
|
358 |
-
if (cal.data('colpick').onShow.apply(this, [cal.get(0)]) != false) {
|
359 |
-
cal.show();
|
360 |
-
}
|
361 |
-
//Hide when user clicks outside
|
362 |
-
$('html').mousedown({cal:cal}, hide);
|
363 |
-
cal.mousedown(function(ev){ev.stopPropagation();})
|
364 |
-
},
|
365 |
-
hide = function (ev) {
|
366 |
-
if (ev.data.cal.data('colpick').onHide.apply(this, [ev.data.cal.get(0)]) != false) {
|
367 |
-
ev.data.cal.hide();
|
368 |
-
}
|
369 |
-
$('html').off('mousedown', hide);
|
370 |
-
},
|
371 |
-
getViewport = function () {
|
372 |
-
var m = document.compatMode == 'CSS1Compat';
|
373 |
-
return {
|
374 |
-
l : window.pageXOffset || (m ? document.documentElement.scrollLeft : document.body.scrollLeft),
|
375 |
-
w : window.innerWidth || (m ? document.documentElement.clientWidth : document.body.clientWidth)
|
376 |
-
};
|
377 |
-
},
|
378 |
-
//Fix the values if the user enters a negative or high value
|
379 |
-
fixHSB = function (hsb) {
|
380 |
-
return {
|
381 |
-
h: Math.min(360, Math.max(0, hsb.h)),
|
382 |
-
s: Math.min(100, Math.max(0, hsb.s)),
|
383 |
-
b: Math.min(100, Math.max(0, hsb.b))
|
384 |
-
};
|
385 |
-
},
|
386 |
-
fixRGB = function (rgb) {
|
387 |
-
return {
|
388 |
-
r: Math.min(255, Math.max(0, rgb.r)),
|
389 |
-
g: Math.min(255, Math.max(0, rgb.g)),
|
390 |
-
b: Math.min(255, Math.max(0, rgb.b))
|
391 |
-
};
|
392 |
-
},
|
393 |
-
fixHex = function (hex) {
|
394 |
-
var len = 6 - hex.length;
|
395 |
-
if (len > 0) {
|
396 |
-
var o = [];
|
397 |
-
for (var i=0; i<len; i++) {
|
398 |
-
o.push('0');
|
399 |
-
}
|
400 |
-
o.push(hex);
|
401 |
-
hex = o.join('');
|
402 |
-
}
|
403 |
-
return hex;
|
404 |
-
},
|
405 |
-
restoreOriginal = function () {
|
406 |
-
var cal = $(this).parent();
|
407 |
-
var col = cal.data('colpick').origColor;
|
408 |
-
cal.data('colpick').color = col;
|
409 |
-
fillRGBFields(col, cal.get(0));
|
410 |
-
fillHexFields(col, cal.get(0));
|
411 |
-
fillHSBFields(col, cal.get(0));
|
412 |
-
setSelector(col, cal.get(0));
|
413 |
-
setHue(col, cal.get(0));
|
414 |
-
setNewColor(col, cal.get(0));
|
415 |
-
};
|
416 |
-
return {
|
417 |
-
init: function (opt) {
|
418 |
-
opt = $.extend({}, defaults, opt||{});
|
419 |
-
//Set color
|
420 |
-
if (typeof opt.color == 'string') {
|
421 |
-
opt.color = hexToHsb(opt.color);
|
422 |
-
} else if (opt.color.r != undefined && opt.color.g != undefined && opt.color.b != undefined) {
|
423 |
-
opt.color = rgbToHsb(opt.color);
|
424 |
-
} else if (opt.color.h != undefined && opt.color.s != undefined && opt.color.b != undefined) {
|
425 |
-
opt.color = fixHSB(opt.color);
|
426 |
-
} else {
|
427 |
-
return this;
|
428 |
-
}
|
429 |
-
|
430 |
-
//For each selected DOM element
|
431 |
-
return this.each(function () {
|
432 |
-
//If the element does not have an ID
|
433 |
-
if (!$(this).data('colpickId')) {
|
434 |
-
var options = $.extend({}, opt);
|
435 |
-
options.origColor = opt.color;
|
436 |
-
//Generate and assign a random ID
|
437 |
-
var id = 'collorpicker_' + parseInt(Math.random() * 1000);
|
438 |
-
$(this).data('colpickId', id);
|
439 |
-
//Set the tpl's ID and get the HTML
|
440 |
-
var cal = $(tpl).attr('id', id);
|
441 |
-
//Add class according to layout
|
442 |
-
cal.addClass('colpick_'+options.layout+(options.submit?'':' colpick_'+options.layout+'_ns'));
|
443 |
-
//Add class if the color scheme is not default
|
444 |
-
if(options.colorScheme != 'light') {
|
445 |
-
cal.addClass('colpick_'+options.colorScheme);
|
446 |
-
}
|
447 |
-
//Setup submit button
|
448 |
-
cal.find('div.colpick_submit').html(options.submitText).click(clickSubmit);
|
449 |
-
//Setup input fields
|
450 |
-
options.fields = cal.find('input').change(change).blur(blur).focus(focus);
|
451 |
-
cal.find('div.colpick_field_arrs').mousedown(downIncrement).end().find('div.colpick_current_color').click(restoreOriginal);
|
452 |
-
//Setup hue selector
|
453 |
-
options.selector = cal.find('div.colpick_color').on('mousedown touchstart',downSelector);
|
454 |
-
options.selectorIndic = options.selector.find('div.colpick_selector_outer');
|
455 |
-
//Store parts of the plugin
|
456 |
-
options.el = this;
|
457 |
-
options.hue = cal.find('div.colpick_hue_arrs');
|
458 |
-
huebar = options.hue.parent();
|
459 |
-
//Paint the hue bar
|
460 |
-
var UA = navigator.userAgent.toLowerCase();
|
461 |
-
var isIE = navigator.appName === 'Microsoft Internet Explorer';
|
462 |
-
var IEver = isIE ? parseFloat( UA.match( /msie ([0-9]{1,}[\.0-9]{0,})/ )[1] ) : 0;
|
463 |
-
var ngIE = ( isIE && IEver < 10 );
|
464 |
-
var stops = ['#ff0000','#ff0080','#ff00ff','#8000ff','#0000ff','#0080ff','#00ffff','#00ff80','#00ff00','#80ff00','#ffff00','#ff8000','#ff0000'];
|
465 |
-
if(ngIE) {
|
466 |
-
var i, div;
|
467 |
-
for(i=0; i<=11; i++) {
|
468 |
-
div = $('<div></div>').attr('style','height:8.333333%; filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='+stops[i]+', endColorstr='+stops[i+1]+'); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='+stops[i]+', endColorstr='+stops[i+1]+')";');
|
469 |
-
huebar.append(div);
|
470 |
-
}
|
471 |
-
} else {
|
472 |
-
stopList = stops.join(',');
|
473 |
-
huebar.attr('style','background:-webkit-linear-gradient(top,'+stopList+'); background: -o-linear-gradient(top,'+stopList+'); background: -ms-linear-gradient(top,'+stopList+'); background:-moz-linear-gradient(top,'+stopList+'); -webkit-linear-gradient(top,'+stopList+'); background:linear-gradient(to bottom,'+stopList+'); ');
|
474 |
-
}
|
475 |
-
cal.find('div.colpick_hue').on('mousedown touchstart',downHue);
|
476 |
-
options.newColor = cal.find('div.colpick_new_color');
|
477 |
-
options.currentColor = cal.find('div.colpick_current_color');
|
478 |
-
//Store options and fill with default color
|
479 |
-
cal.data('colpick', options);
|
480 |
-
fillRGBFields(options.color, cal.get(0));
|
481 |
-
fillHSBFields(options.color, cal.get(0));
|
482 |
-
fillHexFields(options.color, cal.get(0));
|
483 |
-
setHue(options.color, cal.get(0));
|
484 |
-
setSelector(options.color, cal.get(0));
|
485 |
-
setCurrentColor(options.color, cal.get(0));
|
486 |
-
setNewColor(options.color, cal.get(0));
|
487 |
-
//Append to body if flat=false, else show in place
|
488 |
-
if (options.flat) {
|
489 |
-
cal.appendTo(this).show();
|
490 |
-
cal.css({
|
491 |
-
position: 'relative',
|
492 |
-
display: 'block'
|
493 |
-
});
|
494 |
-
} else {
|
495 |
-
cal.appendTo(document.body);
|
496 |
-
$(this).on(options.showEvent, show);
|
497 |
-
cal.css({
|
498 |
-
position:'absolute'
|
499 |
-
});
|
500 |
-
}
|
501 |
-
}
|
502 |
-
});
|
503 |
-
},
|
504 |
-
//Shows the picker
|
505 |
-
showPicker: function() {
|
506 |
-
return this.each( function () {
|
507 |
-
if ($(this).data('colpickId')) {
|
508 |
-
show.apply(this);
|
509 |
-
}
|
510 |
-
});
|
511 |
-
},
|
512 |
-
//Hides the picker
|
513 |
-
hidePicker: function() {
|
514 |
-
return this.each( function () {
|
515 |
-
if ($(this).data('colpickId')) {
|
516 |
-
$('#' + $(this).data('colpickId')).hide();
|
517 |
-
}
|
518 |
-
});
|
519 |
-
},
|
520 |
-
//Sets a color as new and current (default)
|
521 |
-
setColor: function(col, setCurrent) {
|
522 |
-
setCurrent = (typeof setCurrent === "undefined") ? 1 : setCurrent;
|
523 |
-
if (typeof col == 'string') {
|
524 |
-
col = hexToHsb(col);
|
525 |
-
} else if (col.r != undefined && col.g != undefined && col.b != undefined) {
|
526 |
-
col = rgbToHsb(col);
|
527 |
-
} else if (col.h != undefined && col.s != undefined && col.b != undefined) {
|
528 |
-
col = fixHSB(col);
|
529 |
-
} else {
|
530 |
-
return this;
|
531 |
-
}
|
532 |
-
return this.each(function(){
|
533 |
-
if ($(this).data('colpickId')) {
|
534 |
-
var cal = $('#' + $(this).data('colpickId'));
|
535 |
-
cal.data('colpick').color = col;
|
536 |
-
cal.data('colpick').origColor = col;
|
537 |
-
fillRGBFields(col, cal.get(0));
|
538 |
-
fillHSBFields(col, cal.get(0));
|
539 |
-
fillHexFields(col, cal.get(0));
|
540 |
-
setHue(col, cal.get(0));
|
541 |
-
setSelector(col, cal.get(0));
|
542 |
-
|
543 |
-
setNewColor(col, cal.get(0));
|
544 |
-
cal.data('colpick').onChange.apply(cal.parent(), [col, hsbToHex(col), hsbToRgb(col), cal.data('colpick').el, 1]);
|
545 |
-
if(setCurrent) {
|
546 |
-
setCurrentColor(col, cal.get(0));
|
547 |
-
}
|
548 |
-
}
|
549 |
-
});
|
550 |
-
}
|
551 |
-
};
|
552 |
-
}();
|
553 |
-
//Color space convertions
|
554 |
-
var hexToRgb = function (hex) {
|
555 |
-
var hex = parseInt(((hex.indexOf('#') > -1) ? hex.substring(1) : hex), 16);
|
556 |
-
return {r: hex >> 16, g: (hex & 0x00FF00) >> 8, b: (hex & 0x0000FF)};
|
557 |
-
};
|
558 |
-
var hexToHsb = function (hex) {
|
559 |
-
return rgbToHsb(hexToRgb(hex));
|
560 |
-
};
|
561 |
-
var rgbToHsb = function (rgb) {
|
562 |
-
var hsb = {h: 0, s: 0, b: 0};
|
563 |
-
var min = Math.min(rgb.r, rgb.g, rgb.b);
|
564 |
-
var max = Math.max(rgb.r, rgb.g, rgb.b);
|
565 |
-
var delta = max - min;
|
566 |
-
hsb.b = max;
|
567 |
-
hsb.s = max != 0 ? 255 * delta / max : 0;
|
568 |
-
if (hsb.s != 0) {
|
569 |
-
if (rgb.r == max) hsb.h = (rgb.g - rgb.b) / delta;
|
570 |
-
else if (rgb.g == max) hsb.h = 2 + (rgb.b - rgb.r) / delta;
|
571 |
-
else hsb.h = 4 + (rgb.r - rgb.g) / delta;
|
572 |
-
} else hsb.h = -1;
|
573 |
-
hsb.h *= 60;
|
574 |
-
if (hsb.h < 0) hsb.h += 360;
|
575 |
-
hsb.s *= 100/255;
|
576 |
-
hsb.b *= 100/255;
|
577 |
-
return hsb;
|
578 |
-
};
|
579 |
-
var hsbToRgb = function (hsb) {
|
580 |
-
var rgb = {};
|
581 |
-
var h = hsb.h;
|
582 |
-
var s = hsb.s*255/100;
|
583 |
-
var v = hsb.b*255/100;
|
584 |
-
if(s == 0) {
|
585 |
-
rgb.r = rgb.g = rgb.b = v;
|
586 |
-
} else {
|
587 |
-
var t1 = v;
|
588 |
-
var t2 = (255-s)*v/255;
|
589 |
-
var t3 = (t1-t2)*(h%60)/60;
|
590 |
-
if(h==360) h = 0;
|
591 |
-
if(h<60) {rgb.r=t1; rgb.b=t2; rgb.g=t2+t3}
|
592 |
-
else if(h<120) {rgb.g=t1; rgb.b=t2; rgb.r=t1-t3}
|
593 |
-
else if(h<180) {rgb.g=t1; rgb.r=t2; rgb.b=t2+t3}
|
594 |
-
else if(h<240) {rgb.b=t1; rgb.r=t2; rgb.g=t1-t3}
|
595 |
-
else if(h<300) {rgb.b=t1; rgb.g=t2; rgb.r=t2+t3}
|
596 |
-
else if(h<360) {rgb.r=t1; rgb.g=t2; rgb.b=t1-t3}
|
597 |
-
else {rgb.r=0; rgb.g=0; rgb.b=0}
|
598 |
-
}
|
599 |
-
return {r:Math.round(rgb.r), g:Math.round(rgb.g), b:Math.round(rgb.b)};
|
600 |
-
};
|
601 |
-
var rgbToHex = function (rgb) {
|
602 |
-
var hex = [
|
603 |
-
rgb.r.toString(16),
|
604 |
-
rgb.g.toString(16),
|
605 |
-
rgb.b.toString(16)
|
606 |
-
];
|
607 |
-
$.each(hex, function (nr, val) {
|
608 |
-
if (val.length == 1) {
|
609 |
-
hex[nr] = '0' + val;
|
610 |
-
}
|
611 |
-
});
|
612 |
-
return hex.join('');
|
613 |
-
};
|
614 |
-
var hsbToHex = function (hsb) {
|
615 |
-
return rgbToHex(hsbToRgb(hsb));
|
616 |
-
};
|
617 |
-
$.fn.extend({
|
618 |
-
colpick: colpick.init,
|
619 |
-
colpickHide: colpick.hidePicker,
|
620 |
-
colpickShow: colpick.showPicker,
|
621 |
-
colpickSetColor: colpick.setColor
|
622 |
-
});
|
623 |
-
$.extend({
|
624 |
-
colpick:{
|
625 |
-
rgbToHex: rgbToHex,
|
626 |
-
rgbToHsb: rgbToHsb,
|
627 |
-
hsbToHex: hsbToHex,
|
628 |
-
hsbToRgb: hsbToRgb,
|
629 |
-
hexToHsb: hexToHsb,
|
630 |
-
hexToRgb: hexToRgb
|
631 |
-
}
|
632 |
-
});
|
633 |
-
})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/vendor/switch.js
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
/* ========================================================================
|
2 |
-
* bootstrap-switch - v3.3.2
|
3 |
-
* http://www.bootstrap-switch.org
|
4 |
-
* ========================================================================
|
5 |
-
* Copyright 2012-2013 Mattia Larentis
|
6 |
-
*
|
7 |
-
* ========================================================================
|
8 |
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
9 |
-
* you may not use this file except in compliance with the License.
|
10 |
-
* You may obtain a copy of the License at
|
11 |
-
*
|
12 |
-
* http://www.apache.org/licenses/LICENSE-2.0
|
13 |
-
*
|
14 |
-
* Unless required by applicable law or agreed to in writing, software
|
15 |
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
16 |
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
17 |
-
* See the License for the specific language governing permissions and
|
18 |
-
* limitations under the License.
|
19 |
-
* ========================================================================
|
20 |
-
*/
|
21 |
-
|
22 |
-
(function(){var t=[].slice;!function(e,i){"use strict";var n;return n=function(){function t(t,i){null==i&&(i={}),this.$element=e(t),this.options=e.extend({},e.fn.bootstrapSwitch.defaults,{state:this.$element.is(":checked"),size:this.$element.data("size"),animate:this.$element.data("animate"),disabled:this.$element.is(":disabled"),readonly:this.$element.is("[readonly]"),indeterminate:this.$element.data("indeterminate"),inverse:this.$element.data("inverse"),radioAllOff:this.$element.data("radio-all-off"),onColor:this.$element.data("on-color"),offColor:this.$element.data("off-color"),onText:this.$element.data("on-text"),offText:this.$element.data("off-text"),labelText:this.$element.data("label-text"),handleWidth:this.$element.data("handle-width"),labelWidth:this.$element.data("label-width"),baseClass:this.$element.data("base-class"),wrapperClass:this.$element.data("wrapper-class")},i),this.$wrapper=e("<div>",{"class":function(t){return function(){var e;return e=[""+t.options.baseClass].concat(t._getClasses(t.options.wrapperClass)),e.push(t.options.state?""+t.options.baseClass+"-on":""+t.options.baseClass+"-off"),null!=t.options.size&&e.push(""+t.options.baseClass+"-"+t.options.size),t.options.disabled&&e.push(""+t.options.baseClass+"-disabled"),t.options.readonly&&e.push(""+t.options.baseClass+"-readonly"),t.options.indeterminate&&e.push(""+t.options.baseClass+"-indeterminate"),t.options.inverse&&e.push(""+t.options.baseClass+"-inverse"),t.$element.attr("id")&&e.push(""+t.options.baseClass+"-id-"+t.$element.attr("id")),e.join(" ")}}(this)()}),this.$container=e("<div>",{"class":""+this.options.baseClass+"-container"}),this.$on=e("<span>",{html:this.options.onText,"class":""+this.options.baseClass+"-handle-on "+this.options.baseClass+"-"+this.options.onColor}),this.$off=e("<span>",{html:this.options.offText,"class":""+this.options.baseClass+"-handle-off "+this.options.baseClass+"-"+this.options.offColor}),this.$label=e("<span>",{html:this.options.labelText,"class":""+this.options.baseClass+"-label"}),this.$element.on("init.bootstrapSwitch",function(e){return function(){return e.options.onInit.apply(t,arguments)}}(this)),this.$element.on("switchChange.bootstrapSwitch",function(e){return function(){return e.options.onSwitchChange.apply(t,arguments)}}(this)),this.$container=this.$element.wrap(this.$container).parent(),this.$wrapper=this.$container.wrap(this.$wrapper).parent(),this.$element.before(this.options.inverse?this.$off:this.$on).before(this.$label).before(this.options.inverse?this.$on:this.$off),this.options.indeterminate&&this.$element.prop("indeterminate",!0),this._init(),this._elementHandlers(),this._handleHandlers(),this._labelHandlers(),this._formHandler(),this._externalLabelHandler(),this.$element.trigger("init.bootstrapSwitch")}return t.prototype._constructor=t,t.prototype.state=function(t,e){return"undefined"==typeof t?this.options.state:this.options.disabled||this.options.readonly?this.$element:this.options.state&&!this.options.radioAllOff&&this.$element.is(":radio")?this.$element:(this.options.indeterminate&&this.indeterminate(!1),t=!!t,this.$element.prop("checked",t).trigger("change.bootstrapSwitch",e),this.$element)},t.prototype.toggleState=function(t){return this.options.disabled||this.options.readonly?this.$element:this.options.indeterminate?(this.indeterminate(!1),this.state(!0)):this.$element.prop("checked",!this.options.state).trigger("change.bootstrapSwitch",t)},t.prototype.size=function(t){return"undefined"==typeof t?this.options.size:(null!=this.options.size&&this.$wrapper.removeClass(""+this.options.baseClass+"-"+this.options.size),t&&this.$wrapper.addClass(""+this.options.baseClass+"-"+t),this._width(),this._containerPosition(),this.options.size=t,this.$element)},t.prototype.animate=function(t){return"undefined"==typeof t?this.options.animate:(t=!!t,t===this.options.animate?this.$element:this.toggleAnimate())},t.prototype.toggleAnimate=function(){return this.options.animate=!this.options.animate,this.$wrapper.toggleClass(""+this.options.baseClass+"-animate"),this.$element},t.prototype.disabled=function(t){return"undefined"==typeof t?this.options.disabled:(t=!!t,t===this.options.disabled?this.$element:this.toggleDisabled())},t.prototype.toggleDisabled=function(){return this.options.disabled=!this.options.disabled,this.$element.prop("disabled",this.options.disabled),this.$wrapper.toggleClass(""+this.options.baseClass+"-disabled"),this.$element},t.prototype.readonly=function(t){return"undefined"==typeof t?this.options.readonly:(t=!!t,t===this.options.readonly?this.$element:this.toggleReadonly())},t.prototype.toggleReadonly=function(){return this.options.readonly=!this.options.readonly,this.$element.prop("readonly",this.options.readonly),this.$wrapper.toggleClass(""+this.options.baseClass+"-readonly"),this.$element},t.prototype.indeterminate=function(t){return"undefined"==typeof t?this.options.indeterminate:(t=!!t,t===this.options.indeterminate?this.$element:this.toggleIndeterminate())},t.prototype.toggleIndeterminate=function(){return this.options.indeterminate=!this.options.indeterminate,this.$element.prop("indeterminate",this.options.indeterminate),this.$wrapper.toggleClass(""+this.options.baseClass+"-indeterminate"),this._containerPosition(),this.$element},t.prototype.inverse=function(t){return"undefined"==typeof t?this.options.inverse:(t=!!t,t===this.options.inverse?this.$element:this.toggleInverse())},t.prototype.toggleInverse=function(){var t,e;return this.$wrapper.toggleClass(""+this.options.baseClass+"-inverse"),e=this.$on.clone(!0),t=this.$off.clone(!0),this.$on.replaceWith(t),this.$off.replaceWith(e),this.$on=t,this.$off=e,this.options.inverse=!this.options.inverse,this.$element},t.prototype.onColor=function(t){var e;return e=this.options.onColor,"undefined"==typeof t?e:(null!=e&&this.$on.removeClass(""+this.options.baseClass+"-"+e),this.$on.addClass(""+this.options.baseClass+"-"+t),this.options.onColor=t,this.$element)},t.prototype.offColor=function(t){var e;return e=this.options.offColor,"undefined"==typeof t?e:(null!=e&&this.$off.removeClass(""+this.options.baseClass+"-"+e),this.$off.addClass(""+this.options.baseClass+"-"+t),this.options.offColor=t,this.$element)},t.prototype.onText=function(t){return"undefined"==typeof t?this.options.onText:(this.$on.html(t),this._width(),this._containerPosition(),this.options.onText=t,this.$element)},t.prototype.offText=function(t){return"undefined"==typeof t?this.options.offText:(this.$off.html(t),this._width(),this._containerPosition(),this.options.offText=t,this.$element)},t.prototype.labelText=function(t){return"undefined"==typeof t?this.options.labelText:(this.$label.html(t),this._width(),this.options.labelText=t,this.$element)},t.prototype.handleWidth=function(t){return"undefined"==typeof t?this.options.handleWidth:(this.options.handleWidth=t,this._width(),this._containerPosition(),this.$element)},t.prototype.labelWidth=function(t){return"undefined"==typeof t?this.options.labelWidth:(this.options.labelWidth=t,this._width(),this._containerPosition(),this.$element)},t.prototype.baseClass=function(){return this.options.baseClass},t.prototype.wrapperClass=function(t){return"undefined"==typeof t?this.options.wrapperClass:(t||(t=e.fn.bootstrapSwitch.defaults.wrapperClass),this.$wrapper.removeClass(this._getClasses(this.options.wrapperClass).join(" ")),this.$wrapper.addClass(this._getClasses(t).join(" ")),this.options.wrapperClass=t,this.$element)},t.prototype.radioAllOff=function(t){return"undefined"==typeof t?this.options.radioAllOff:(t=!!t,t===this.options.radioAllOff?this.$element:(this.options.radioAllOff=t,this.$element))},t.prototype.onInit=function(t){return"undefined"==typeof t?this.options.onInit:(t||(t=e.fn.bootstrapSwitch.defaults.onInit),this.options.onInit=t,this.$element)},t.prototype.onSwitchChange=function(t){return"undefined"==typeof t?this.options.onSwitchChange:(t||(t=e.fn.bootstrapSwitch.defaults.onSwitchChange),this.options.onSwitchChange=t,this.$element)},t.prototype.destroy=function(){var t;return t=this.$element.closest("form"),t.length&&t.off("reset.bootstrapSwitch").removeData("bootstrap-switch"),this.$container.children().not(this.$element).remove(),this.$element.unwrap().unwrap().off(".bootstrapSwitch").removeData("bootstrap-switch"),this.$element},t.prototype._width=function(){var t,e;return t=this.$on.add(this.$off),t.add(this.$label).css("width",""),e="auto"===this.options.handleWidth?Math.max(this.$on.width(),this.$off.width()):this.options.handleWidth,t.width(e),this.$label.width(function(t){return function(i,n){return"auto"!==t.options.labelWidth?t.options.labelWidth:e>n?e:n}}(this)),this._handleWidth=this.$on.outerWidth(),this._labelWidth=this.$label.outerWidth(),this.$container.width(2*this._handleWidth+this._labelWidth),this.$wrapper.width(this._handleWidth+this._labelWidth)},t.prototype._containerPosition=function(t,e){return null==t&&(t=this.options.state),this.$container.css("margin-left",function(e){return function(){var i;return i=[0,"-"+e._handleWidth+"px"],e.options.indeterminate?"-"+e._handleWidth/2+"px":t?e.options.inverse?i[1]:i[0]:e.options.inverse?i[0]:i[1]}}(this)),e?setTimeout(function(){return e()},50):void 0},t.prototype._init=function(){var t,e;return t=function(t){return function(){return t._width(),t._containerPosition(null,function(){return t.options.animate?t.$wrapper.addClass(""+t.options.baseClass+"-animate"):void 0})}}(this),this.$wrapper.is(":visible")?t():e=i.setInterval(function(n){return function(){return n.$wrapper.is(":visible")?(t(),i.clearInterval(e)):void 0}}(this),50)},t.prototype._elementHandlers=function(){return this.$element.on({"change.bootstrapSwitch":function(t){return function(i,n){var o;return i.preventDefault(),i.stopImmediatePropagation(),o=t.$element.is(":checked"),t._containerPosition(o),o!==t.options.state?(t.options.state=o,t.$wrapper.toggleClass(""+t.options.baseClass+"-off").toggleClass(""+t.options.baseClass+"-on"),n?void 0:(t.$element.is(":radio")&&e("[name='"+t.$element.attr("name")+"']").not(t.$element).prop("checked",!1).trigger("change.bootstrapSwitch",!0),t.$element.trigger("switchChange.bootstrapSwitch",[o]))):void 0}}(this),"focus.bootstrapSwitch":function(t){return function(e){return e.preventDefault(),t.$wrapper.addClass(""+t.options.baseClass+"-focused")}}(this),"blur.bootstrapSwitch":function(t){return function(e){return e.preventDefault(),t.$wrapper.removeClass(""+t.options.baseClass+"-focused")}}(this),"keydown.bootstrapSwitch":function(t){return function(e){if(e.which&&!t.options.disabled&&!t.options.readonly)switch(e.which){case 37:return e.preventDefault(),e.stopImmediatePropagation(),t.state(!1);case 39:return e.preventDefault(),e.stopImmediatePropagation(),t.state(!0)}}}(this)})},t.prototype._handleHandlers=function(){return this.$on.on("click.bootstrapSwitch",function(t){return function(e){return e.preventDefault(),e.stopPropagation(),t.state(!1),t.$element.trigger("focus.bootstrapSwitch")}}(this)),this.$off.on("click.bootstrapSwitch",function(t){return function(e){return e.preventDefault(),e.stopPropagation(),t.state(!0),t.$element.trigger("focus.bootstrapSwitch")}}(this))},t.prototype._labelHandlers=function(){return this.$label.on({"mousedown.bootstrapSwitch touchstart.bootstrapSwitch":function(t){return function(e){return t._dragStart||t.options.disabled||t.options.readonly?void 0:(e.preventDefault(),e.stopPropagation(),t._dragStart=(e.pageX||e.originalEvent.touches[0].pageX)-parseInt(t.$container.css("margin-left"),10),t.options.animate&&t.$wrapper.removeClass(""+t.options.baseClass+"-animate"),t.$element.trigger("focus.bootstrapSwitch"))}}(this),"mousemove.bootstrapSwitch touchmove.bootstrapSwitch":function(t){return function(e){var i;if(null!=t._dragStart&&(e.preventDefault(),i=(e.pageX||e.originalEvent.touches[0].pageX)-t._dragStart,!(i<-t._handleWidth||i>0)))return t._dragEnd=i,t.$container.css("margin-left",""+t._dragEnd+"px")}}(this),"mouseup.bootstrapSwitch touchend.bootstrapSwitch":function(t){return function(e){var i;if(t._dragStart)return e.preventDefault(),t.options.animate&&t.$wrapper.addClass(""+t.options.baseClass+"-animate"),t._dragEnd?(i=t._dragEnd>-(t._handleWidth/2),t._dragEnd=!1,t.state(t.options.inverse?!i:i)):t.state(!t.options.state),t._dragStart=!1}}(this),"mouseleave.bootstrapSwitch":function(t){return function(){return t.$label.trigger("mouseup.bootstrapSwitch")}}(this)})},t.prototype._externalLabelHandler=function(){var t;return t=this.$element.closest("label"),t.on("click",function(e){return function(i){return i.preventDefault(),i.stopImmediatePropagation(),i.target===t[0]?e.toggleState():void 0}}(this))},t.prototype._formHandler=function(){var t;return t=this.$element.closest("form"),t.data("bootstrap-switch")?void 0:t.on("reset.bootstrapSwitch",function(){return i.setTimeout(function(){return t.find("input").filter(function(){return e(this).data("bootstrap-switch")}).each(function(){return e(this).bootstrapSwitch("state",this.checked)})},1)}).data("bootstrap-switch",!0)},t.prototype._getClasses=function(t){var i,n,o,s;if(!e.isArray(t))return[""+this.options.baseClass+"-"+t];for(n=[],o=0,s=t.length;s>o;o++)i=t[o],n.push(""+this.options.baseClass+"-"+i);return n},t}(),e.fn.bootstrapSwitch=function(){var i,o,s;return o=arguments[0],i=2<=arguments.length?t.call(arguments,1):[],s=this,this.each(function(){var t,a;return t=e(this),a=t.data("bootstrap-switch"),a||t.data("bootstrap-switch",a=new n(this,o)),"string"==typeof o?s=a[o].apply(a,i):void 0}),s},e.fn.bootstrapSwitch.Constructor=n,e.fn.bootstrapSwitch.defaults={state:!0,size:null,animate:!0,disabled:!1,readonly:!1,indeterminate:!1,inverse:!1,radioAllOff:!1,onColor:"primary",offColor:"default",onText:"ON",offText:"OFF",labelText:" ",handleWidth:"auto",labelWidth:"auto",baseClass:"bootstrap-switch",wrapperClass:"wrapper",onInit:function(){},onSwitchChange:function(){}}}(window.jQuery,window)}).call(this);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
php/class-admin-panel.php
CHANGED
@@ -1662,6 +1662,15 @@ class Admin_Panel {
|
|
1662 |
$arr_plus_buttons = array_merge( $selected_plus_button_array, $non_plus_selected_buttons );
|
1663 |
}
|
1664 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1665 |
// Bar buttons.
|
1666 |
if ( true === isset( $selected_bar_button_array )
|
1667 |
&& false === is_array( $selected_bar_button_array )
|
@@ -1721,7 +1730,11 @@ class Admin_Panel {
|
|
1721 |
$button_full_name = isset( $arr_buttons[ $str_selected ]['full_name'] ) ? $arr_buttons[ $str_selected ]['full_name'] : '';
|
1722 |
|
1723 |
// Add a list item for each selected option.
|
1724 |
-
$html_selected_list .= '<li class="ssbp-option-item" id="' . esc_attr( $str_selected ) . '"
|
|
|
|
|
|
|
|
|
1725 |
}
|
1726 |
}
|
1727 |
}
|
@@ -1789,7 +1802,11 @@ class Admin_Panel {
|
|
1789 |
} else {
|
1790 |
if ( self::show_in_classic( $page, $arr_buttons[ $str_available ]['full_name'] ) ) {
|
1791 |
// Add a list item for each available option.
|
1792 |
-
$html_available_list .= '<li class="ssbp-option-item" id="' . esc_attr( $str_available ) . '"
|
|
|
|
|
|
|
|
|
1793 |
}
|
1794 |
}
|
1795 |
}
|
1662 |
$arr_plus_buttons = array_merge( $selected_plus_button_array, $non_plus_selected_buttons );
|
1663 |
}
|
1664 |
|
1665 |
+
$icon_code = array();
|
1666 |
+
$icon_white = array();
|
1667 |
+
|
1668 |
+
foreach ( $arr_plus_buttons as $arr_plus_button ) {
|
1669 |
+
$button_name = strtolower( str_replace( array( ' ', '+' ), array( '_', '' ), $arr_plus_button['full_name'] ) );
|
1670 |
+
$icon_code[ $button_name ] = \SimpleShareButtonsAdder\Buttons::get_button_image( $button_name );
|
1671 |
+
$icon_white[ $button_name ] = \SimpleShareButtonsAdder\Buttons::get_button_image( $button_name, 'white' );
|
1672 |
+
}
|
1673 |
+
|
1674 |
// Bar buttons.
|
1675 |
if ( true === isset( $selected_bar_button_array )
|
1676 |
&& false === is_array( $selected_bar_button_array )
|
1730 |
$button_full_name = isset( $arr_buttons[ $str_selected ]['full_name'] ) ? $arr_buttons[ $str_selected ]['full_name'] : '';
|
1731 |
|
1732 |
// Add a list item for each selected option.
|
1733 |
+
$html_selected_list .= '<li class="ssbp-option-item" id="' . esc_attr( $str_selected ) . '">';
|
1734 |
+
$html_selected_list .= '<a style=\"border-radius: 8px;height: 40px;width: 40px;background-color:' . Buttons::get_button_color( $str_selected ) . ';color:' . Buttons::get_button_color( $str_selected ) . ';" title="' . esc_attr( $arr_buttons[ $str_selected ]['full_name'] ) . '" class="ssbp-btn ssbp-' . esc_attr( $str_selected ) . '" ' . esc_attr( $disabled ) . '>';
|
1735 |
+
$html_selected_list .= '<img src="https://platform-cdn.sharethis.com/img/' . str_replace( array( 'get_pocket', 'diggit', '_' ), array( 'pocket', 'digg', '' ), $str_selected ) . '.svg" />';
|
1736 |
+
$html_selected_list .= '</a>';
|
1737 |
+
$html_selected_list .= '</li>';
|
1738 |
}
|
1739 |
}
|
1740 |
}
|
1802 |
} else {
|
1803 |
if ( self::show_in_classic( $page, $arr_buttons[ $str_available ]['full_name'] ) ) {
|
1804 |
// Add a list item for each available option.
|
1805 |
+
$html_available_list .= '<li class="ssbp-option-item" id="' . esc_attr( $str_available ) . '">';
|
1806 |
+
$html_available_list .= '<a style=\"border-radius: 8px;height: 40px;width: 40px;background-color:' . Buttons::get_button_color( $str_available ) . ';" title="' . esc_attr( $arr_buttons[ $str_available ]['full_name'] ) . '" class="ssbp-btn ssbp-' . esc_attr( $str_available ) . '" ' . esc_attr( $disabled ) . '>';
|
1807 |
+
$html_available_list .= '<img src="https://platform-cdn.sharethis.com/img/' . str_replace( array( 'get_pocket', 'diggit', '_' ), array( 'pocket', 'digg', '' ), $str_available ) . '.svg" />';
|
1808 |
+
$html_available_list .= '</a>';
|
1809 |
+
$html_available_list .= '</li>';
|
1810 |
}
|
1811 |
}
|
1812 |
}
|
php/class-buttons.php
CHANGED
@@ -49,33 +49,6 @@ class Buttons {
|
|
49 |
$this->admin_panel = $admin_panel;
|
50 |
}
|
51 |
|
52 |
-
/**
|
53 |
-
* Enqueue font awesome.
|
54 |
-
*
|
55 |
-
* @action wp_enqueue_scripts
|
56 |
-
*/
|
57 |
-
public function font_awesome() {
|
58 |
-
wp_enqueue_style( "{$this->plugin->assets_prefix}-font-awesome" );
|
59 |
-
|
60 |
-
$html_share_buttons_form = '';
|
61 |
-
|
62 |
-
// Get settings.
|
63 |
-
$arr_settings = $this->class_ssba->get_ssba_settings();
|
64 |
-
|
65 |
-
// Get the font family needed.
|
66 |
-
$html_share_buttons_form .= $this->admin_panel->get_font_family();
|
67 |
-
|
68 |
-
// If left to right.
|
69 |
-
if ( is_rtl() ) {
|
70 |
-
// Move save button.
|
71 |
-
$html_share_buttons_form .= '.ssba-btn-save{ left: 0!important;
|
72 |
-
right: auto !important;
|
73 |
-
border-radius: 0 5px 5px 0; }';
|
74 |
-
}
|
75 |
-
|
76 |
-
wp_add_inline_style( "{$this->plugin->assets_prefix}-ssba", $html_share_buttons_form );
|
77 |
-
}
|
78 |
-
|
79 |
/**
|
80 |
* Format the returned number.
|
81 |
*
|
@@ -154,15 +127,69 @@ class Buttons {
|
|
154 |
}
|
155 |
|
156 |
// Placement on pages/posts/categories/archives/homepage.
|
157 |
-
if ( (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
||
|
159 |
-
(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
||
|
161 |
-
(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
||
|
163 |
-
(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
||
|
165 |
-
(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
||
|
167 |
$boo_shortcode
|
168 |
) {
|
@@ -457,10 +484,8 @@ class Buttons {
|
|
457 |
|
458 |
// For each included button.
|
459 |
foreach ( $arr_selected_ssba as $str_selected ) {
|
460 |
-
$str_get_button = 'ssba_' . $str_selected;
|
461 |
-
|
462 |
// Add a list item for each selected option.
|
463 |
-
$html_share_buttons .= $this
|
464 |
}
|
465 |
|
466 |
if ( 'Y' === $arr_settings['ssba_new_buttons'] ) {
|
@@ -472,88 +497,6 @@ class Buttons {
|
|
472 |
return $html_share_buttons;
|
473 |
}
|
474 |
|
475 |
-
/**
|
476 |
-
* Get facebook button.
|
477 |
-
*
|
478 |
-
* @param array $arr_settings The current ssba settings.
|
479 |
-
* @param string $url_current_page The current page url.
|
480 |
-
* @param string $str_page_title The page title.
|
481 |
-
* @param bool $boo_show_share_count Show share count or not.
|
482 |
-
*
|
483 |
-
* @return string
|
484 |
-
*/
|
485 |
-
public function ssba_facebook( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
486 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
487 |
-
$network = 'Facebook';
|
488 |
-
$target =
|
489 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
490 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
491 |
-
&& false === isset(
|
492 |
-
$arr_settings['bar_call']
|
493 |
-
) )
|
494 |
-
||
|
495 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
496 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
497 |
-
&& false === isset(
|
498 |
-
$arr_settings['bar_call']
|
499 |
-
) )
|
500 |
-
||
|
501 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset( $arr_settings['bar_call'] ) ) ? ' target="_blank" ' : '';
|
502 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-facebook ssbp-btn' : '';
|
503 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
504 |
-
$html_share_buttons = '';
|
505 |
-
|
506 |
-
// Add li if plus.
|
507 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
508 |
-
$html_share_buttons .= '<li class="ssbp-li--facebook">';
|
509 |
-
}
|
510 |
-
|
511 |
-
// If the sharethis terms have been accepted.
|
512 |
-
if ( 'Y' === $arr_settings['accepted_sharethis_terms'] && '' !== $arr_settings['facebook_app_id'] ) {
|
513 |
-
// Facebook share link.
|
514 |
-
$html_share_buttons .= '<a data-site="" data-facebook="mobile" class="ssba_facebook_share' . esc_attr( $plus_class ) . '" data-href="' . esc_attr( $url_current_page ) . '" href="https://www.facebook.com/dialog/share?app_id=' . esc_attr( $arr_settings['facebook_app_id'] ) . '&display=popup&href=' . esc_attr( $url_current_page ) . '&redirect_uri=' . esc_url( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
515 |
-
} else {
|
516 |
-
// Facebook share link.
|
517 |
-
$html_share_buttons .= '<a data-site="" class="ssba_facebook_share' . esc_attr( $plus_class ) . '" href="http://www.facebook.com/sharer.php?u=' . esc_attr( $url_current_page ) . '" ' . $target . $nofollow . '>';
|
518 |
-
}
|
519 |
-
|
520 |
-
// If not using custom.
|
521 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
522 |
-
// Show selected ssba image.
|
523 |
-
$html_share_buttons .= '<img src="' . esc_url( plugins_url() ) . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/facebook.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Facebook" class="ssba ssba-img" alt="Share on Facebook" />';
|
524 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
525 |
-
// Show custom image.
|
526 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_facebook'] ) . '" title="Facebook" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" class="ssba ssba-img" alt="Share on Facebook" />';
|
527 |
-
}
|
528 |
-
|
529 |
-
// Close href.
|
530 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
531 |
-
|
532 |
-
// Close href.
|
533 |
-
$html_share_buttons .= '</a>';
|
534 |
-
|
535 |
-
// If show share count is set to Y.
|
536 |
-
if ( ( ( 'Y' === $arr_settings['ssba_show_share_count'] && 'Y' !== $arr_settings['ssba_new_buttons'] )
|
537 |
-
||
|
538 |
-
( 'Y' === $arr_settings['ssba_plus_show_share_count'] && 'Y' === $arr_settings['ssba_new_buttons'] )
|
539 |
-
||
|
540 |
-
( 'Y' === $arr_settings['ssba_bar_show_share_count'] && isset( $arr_settings['bar_call'] )
|
541 |
-
)
|
542 |
-
&& $boo_show_share_count
|
543 |
-
) ) {
|
544 |
-
// Get and add facebook share count.
|
545 |
-
$html_share_buttons .= '<span class="' . esc_attr( $count_class ) . '">' . esc_html( $this->get_facebook_share_count( $url_current_page, $arr_settings ) ) . '</span>';
|
546 |
-
}
|
547 |
-
|
548 |
-
// Add closing li if plus.
|
549 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
550 |
-
$html_share_buttons .= '</li>';
|
551 |
-
}
|
552 |
-
|
553 |
-
// Return share buttons.
|
554 |
-
return $html_share_buttons;
|
555 |
-
}
|
556 |
-
|
557 |
/**
|
558 |
* Get set share buttons.
|
559 |
*
|
@@ -608,7 +551,7 @@ class Buttons {
|
|
608 |
$str_get_button = 'ssba_' . $str_selected;
|
609 |
|
610 |
// Add a list item for each selected option.
|
611 |
-
$html_share_buttons .= $this
|
612 |
}
|
613 |
}
|
614 |
}
|
@@ -618,34 +561,104 @@ class Buttons {
|
|
618 |
}
|
619 |
|
620 |
/**
|
621 |
-
* Get
|
622 |
*
|
623 |
* @param array $arr_settings The current ssba settings.
|
624 |
* @param string $url_current_page The current page url.
|
625 |
* @param string $str_page_title The page title.
|
626 |
* @param bool $boo_show_share_count Show share count or not.
|
627 |
-
*
|
628 |
-
* @
|
629 |
-
|
630 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
631 |
$html_share_buttons = '';
|
632 |
|
633 |
-
//
|
634 |
-
if ( 'Y' === $arr_settings['
|
635 |
-
|
636 |
-
|
637 |
-
$html_share_buttons .= '<li class="ssbp-li--fb-save">';
|
638 |
-
}
|
639 |
|
640 |
-
|
641 |
-
|
642 |
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
647 |
}
|
648 |
|
|
|
649 |
return $html_share_buttons;
|
650 |
}
|
651 |
|
@@ -654,14 +667,16 @@ class Buttons {
|
|
654 |
*
|
655 |
* @param string $url_current_page Current url.
|
656 |
* @param array $arr_settings Current ssba settings.
|
|
|
657 |
*
|
658 |
* @return string
|
659 |
*/
|
660 |
-
public function
|
661 |
-
$cache_key
|
662 |
-
'
|
663 |
wp_hash( $url_current_page )
|
664 |
);
|
|
|
665 |
|
666 |
// Get the longer cached value from the Transient API.
|
667 |
$long_cached_count = get_transient( "ssba_{$cache_key}" );
|
@@ -677,7 +692,6 @@ class Buttons {
|
|
677 |
( isset( $arr_settings['bar_sharedcount_enabled'] ) && 'Y' === $arr_settings['bar_sharedcount_enabled'] && isset( $arr_settings['bar_call'] )
|
678 |
)
|
679 |
) ) {
|
680 |
-
|
681 |
$shared_plan = 'Y' !== $arr_settings['ssba_new_buttons'] ? $arr_settings['sharedcount_plan'] : '';
|
682 |
$shared_plan = '' === $shared_plan && 'Y' === $arr_settings['ssba_new_buttons'] ? $arr_settings['plus_sharedcount_plan'] : '';
|
683 |
$shared_plan = isset( $arr_settings['bar_call'] ) ? $arr_settings['bar_sharedcount_plan'] : '';
|
@@ -699,8 +713,8 @@ class Buttons {
|
|
699 |
$shared_resp = json_decode( $sharedcount['body'], true );
|
700 |
$sharedcount = $long_cached_count;
|
701 |
|
702 |
-
if ( isset( $shared_resp[
|
703 |
-
$sharedcount = (int) $shared_resp[
|
704 |
wp_cache_set( $cache_key, $sharedcount, 'ssba', MINUTE_IN_SECONDS * 2 );
|
705 |
set_transient( "ssba_{$cache_key}", $sharedcount, DAY_IN_SECONDS );
|
706 |
}
|
@@ -708,1683 +722,269 @@ class Buttons {
|
|
708 |
return $this->ssba_format_number( $sharedcount );
|
709 |
} else {
|
710 |
// Get results from facebook.
|
711 |
-
$
|
712 |
-
|
713 |
array(
|
714 |
'timeout' => 6,
|
715 |
)
|
716 |
);
|
717 |
|
718 |
// If no error.
|
719 |
-
if ( is_wp_error( $
|
720 |
return $this->ssba_format_number( $long_cached_count );
|
721 |
}
|
722 |
|
723 |
// Decode and return count.
|
724 |
-
$
|
725 |
-
$
|
726 |
|
727 |
-
if ( isset( $
|
728 |
-
$int_facebook_share_count = (int) $
|
729 |
|
730 |
-
wp_cache_set( $cache_key, $
|
731 |
-
set_transient( "ssba_{$cache_key}", $
|
732 |
}
|
733 |
|
734 |
-
return $this->ssba_format_number( $
|
735 |
}
|
736 |
}
|
737 |
|
738 |
/**
|
739 |
-
* Get
|
740 |
*
|
741 |
-
* @param
|
742 |
-
* @param string $url_current_page The current page url.
|
743 |
-
* @param string $str_page_title The page title.
|
744 |
-
* @param bool $boo_show_share_count Show share count or not.
|
745 |
*
|
746 |
-
* @return string
|
747 |
*/
|
748 |
-
public function
|
749 |
-
$
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
||
|
758 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
759 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
760 |
-
&& ! isset(
|
761 |
-
$arr_settings['bar_call']
|
762 |
-
) )
|
763 |
-
||
|
764 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset(
|
765 |
-
$arr_settings['bar_call']
|
766 |
-
) ) ? ' target="_blank" ' : '';
|
767 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-twitter ssbp-btn' : '';
|
768 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
769 |
-
$html_share_buttons = '';
|
770 |
-
|
771 |
-
// Format the URL into friendly code.
|
772 |
-
$twitter_share_text = rawurlencode(
|
773 |
-
html_entity_decode(
|
774 |
-
$str_page_title . ' ' . $arr_settings['ssba_twitter_text'],
|
775 |
-
ENT_COMPAT,
|
776 |
-
'UTF-8'
|
777 |
-
)
|
778 |
);
|
779 |
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
831 |
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
*
|
837 |
-
*
|
838 |
-
* @param
|
839 |
-
*
|
840 |
-
* @
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
845 |
|
846 |
-
|
847 |
-
* Get google share count.
|
848 |
-
*
|
849 |
-
* @param string $url_current_page The current page url.
|
850 |
-
*
|
851 |
-
* @return string
|
852 |
-
*/
|
853 |
-
public function get_google_share_count( $url_current_page ) {
|
854 |
-
return '';
|
855 |
}
|
856 |
|
857 |
/**
|
858 |
-
* Get
|
859 |
*
|
860 |
-
* @param
|
861 |
-
* @param
|
862 |
-
* @param string $str_page_title The page title.
|
863 |
-
* @param bool $boo_show_share_count Show share count or not.
|
864 |
*
|
865 |
-
* @return string
|
866 |
*/
|
867 |
-
public function
|
868 |
-
$
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
&& ! isset(
|
874 |
-
$arr_settings['bar_call']
|
875 |
-
) )
|
876 |
-
||
|
877 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
878 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
879 |
-
&& ! isset(
|
880 |
-
$arr_settings['bar_call']
|
881 |
-
) )
|
882 |
-
||
|
883 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset(
|
884 |
-
$arr_settings['bar_call']
|
885 |
-
) ) ? ' target="_blank" ' : '';
|
886 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-diggit ssbp-btn' : '';
|
887 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
888 |
-
$html_share_buttons = '';
|
889 |
-
|
890 |
-
// Add li if plus.
|
891 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
892 |
-
$html_share_buttons .= '<li class="ssbp-li--diggit">';
|
893 |
-
}
|
894 |
-
|
895 |
-
// Diggit share link.
|
896 |
-
$html_share_buttons .= '<a data-site="digg" class="ssba_diggit_share ssba_share_link' . esc_attr( $plus_class ) . '" href="http://www.digg.com/submit?url=' . esc_attr( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
897 |
|
898 |
-
|
899 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
900 |
-
// Show ssba image.
|
901 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/diggit.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Digg" class="ssba ssba-img" alt="Digg this" />';
|
902 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
903 |
-
// Show custom image.
|
904 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_diggit'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Digg" class="ssba ssba-img" alt="Digg this" />';
|
905 |
-
}
|
906 |
|
907 |
-
|
908 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
909 |
|
910 |
-
|
911 |
-
|
|
|
|
|
|
|
912 |
|
913 |
-
|
914 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
915 |
-
$html_share_buttons .= '</li>';
|
916 |
}
|
917 |
|
918 |
-
|
919 |
-
return $html_share_buttons;
|
920 |
-
}
|
921 |
-
|
922 |
-
/**
|
923 |
-
* Get line button.
|
924 |
-
*
|
925 |
-
* @param array $arr_settings The current ssba settings.
|
926 |
-
* @param string $url_current_page The current page url.
|
927 |
-
* @param string $str_page_title The page title.
|
928 |
-
* @param bool $boo_show_share_count Show share count or not.
|
929 |
-
*
|
930 |
-
* @return string
|
931 |
-
*/
|
932 |
-
public function ssba_line( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
933 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
934 |
-
$network = 'Line';
|
935 |
-
$target =
|
936 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
937 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
938 |
-
&& ! isset( $arr_settings['bar_call'] ) )
|
939 |
-
||
|
940 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
941 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
942 |
-
&& ! isset( $arr_settings['bar_call'] ) )
|
943 |
-
||
|
944 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset( $arr_settings['bar_call'] ) ) ? ' target="_blank" ' : '';
|
945 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-line ssbp-btn' : '';
|
946 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
947 |
-
$html_share_buttons = '';
|
948 |
-
|
949 |
-
// Add li if plus.
|
950 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
951 |
-
$html_share_buttons .= '<li class="ssbp-li--line">';
|
952 |
-
}
|
953 |
-
|
954 |
-
// Line share link.
|
955 |
-
$html_share_buttons .= '<a data-site="line" class="ssba_line_share ssba_share_link' . esc_attr( $plus_class ) . '" href="https://lineit.line.me/share/ui?url=' . esc_attr( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
956 |
-
|
957 |
-
// If image set is not custom.
|
958 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
959 |
-
// Show ssba image.
|
960 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/line.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Line" class="ssba ssba-img" alt="Line" />';
|
961 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
962 |
-
// Show custom image.
|
963 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_line'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Line" class="ssba ssba-img" alt="Line" />';
|
964 |
-
}
|
965 |
-
|
966 |
-
// Close href.
|
967 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
968 |
-
|
969 |
-
// Close href.
|
970 |
-
$html_share_buttons .= '</a>';
|
971 |
-
|
972 |
-
// Add closing li if plus.
|
973 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
974 |
-
$html_share_buttons .= '</li>';
|
975 |
-
}
|
976 |
-
|
977 |
-
// Return share buttons.
|
978 |
-
return $html_share_buttons;
|
979 |
-
}
|
980 |
-
|
981 |
-
/**
|
982 |
-
* Get skype button.
|
983 |
-
*
|
984 |
-
* @param array $arr_settings The current ssba settings.
|
985 |
-
* @param string $url_current_page The current page url.
|
986 |
-
* @param string $str_page_title The page title.
|
987 |
-
* @param bool $boo_show_share_count Show share count or not.
|
988 |
-
*
|
989 |
-
* @return string
|
990 |
-
*/
|
991 |
-
public function ssba_skype( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
992 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
993 |
-
$network = 'Line';
|
994 |
-
$target =
|
995 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
996 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
997 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
998 |
-
||
|
999 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1000 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1001 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1002 |
-
||
|
1003 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset( $arr_settings['bar_call'] ) ) ? ' target="_blank" ' : '';
|
1004 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-skype ssbp-btn' : '';
|
1005 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1006 |
-
$html_share_buttons = '';
|
1007 |
-
|
1008 |
-
// Add li if plus.
|
1009 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1010 |
-
$html_share_buttons .= '<li class="ssbp-li--skype">';
|
1011 |
-
}
|
1012 |
-
|
1013 |
-
// Skype share link.
|
1014 |
-
$html_share_buttons .= '<a data-site="skype" class="ssba_skype_share ssba_share_link' . esc_attr( $plus_class ) . '" href="https://web.skype.com/share?url=' . esc_attr( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1015 |
-
|
1016 |
-
// If image set is not custom.
|
1017 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1018 |
-
// Show ssba image.
|
1019 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/line.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Line" class="ssba ssba-img" alt="Skype" />';
|
1020 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1021 |
-
// Show custom image.
|
1022 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_skype'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Skype" class="ssba ssba-img" alt="skype" />';
|
1023 |
-
}
|
1024 |
-
|
1025 |
-
// Close href.
|
1026 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1027 |
-
|
1028 |
-
// Close href.
|
1029 |
-
$html_share_buttons .= '</a>';
|
1030 |
-
|
1031 |
-
// Add closing li if plus.
|
1032 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1033 |
-
$html_share_buttons .= '</li>';
|
1034 |
-
}
|
1035 |
-
|
1036 |
-
// Return share buttons.
|
1037 |
-
return $html_share_buttons;
|
1038 |
-
}
|
1039 |
-
|
1040 |
-
/**
|
1041 |
-
* Get Flipboard button.
|
1042 |
-
*
|
1043 |
-
* @param array $arr_settings The current ssba settings.
|
1044 |
-
* @param string $url_current_page The current page url.
|
1045 |
-
* @param string $str_page_title The page title.
|
1046 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1047 |
-
*
|
1048 |
-
* @return string
|
1049 |
-
*/
|
1050 |
-
public function ssba_flipboard( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1051 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1052 |
-
$network = 'Flipboard';
|
1053 |
-
|
1054 |
-
$target =
|
1055 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1056 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1057 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1058 |
-
||
|
1059 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1060 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1061 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1062 |
-
||
|
1063 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset( $arr_settings['bar_call'] ) ) ? ' target="_blank" ' : '';
|
1064 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-flipboard ssbp-btn' : '';
|
1065 |
-
$html_share_buttons = '';
|
1066 |
-
|
1067 |
-
// Add li if plus.
|
1068 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1069 |
-
$html_share_buttons .= '<li class="ssbp-li--flipboard">';
|
1070 |
-
}
|
1071 |
-
|
1072 |
-
// Flipboard share link.
|
1073 |
-
$html_share_buttons .= '<a data-site="flipboard" class="ssba_flipboard_share ssba_share_link'
|
1074 |
-
. esc_attr( $plus_class )
|
1075 |
-
. '" href="https://share.flipboard.com/bookmarklet/popout?url='
|
1076 |
-
. esc_attr( $url_current_page )
|
1077 |
-
. '&title='
|
1078 |
-
. esc_attr( rawurlencode( $str_page_title ) ) . '" '
|
1079 |
-
. esc_attr( $target . $nofollow )
|
1080 |
-
. '>';
|
1081 |
-
|
1082 |
-
// If image set is not custom.
|
1083 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1084 |
-
// Show ssba image.
|
1085 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/line.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Line" class="ssba ssba-img" alt="Flipboard" />';
|
1086 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1087 |
-
// Show custom image.
|
1088 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_flipboard'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Flipboard" class="ssba ssba-img" alt="flipboard" />';
|
1089 |
-
}
|
1090 |
-
|
1091 |
-
// Close href.
|
1092 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1093 |
-
|
1094 |
-
// Close href.
|
1095 |
-
$html_share_buttons .= '</a>';
|
1096 |
-
|
1097 |
-
// Add closing li if plus.
|
1098 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1099 |
-
$html_share_buttons .= '</li>';
|
1100 |
-
}
|
1101 |
-
|
1102 |
-
// Return share buttons.
|
1103 |
-
return $html_share_buttons;
|
1104 |
-
}
|
1105 |
-
|
1106 |
-
/**
|
1107 |
-
* Get Telegram button.
|
1108 |
-
*
|
1109 |
-
* @param array $arr_settings The current ssba settings.
|
1110 |
-
* @param string $url_current_page The current page url.
|
1111 |
-
* @param string $str_page_title The page title.
|
1112 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1113 |
-
*
|
1114 |
-
* @return string
|
1115 |
-
*/
|
1116 |
-
public function ssba_telegram( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1117 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1118 |
-
$network = 'Telegram';
|
1119 |
-
|
1120 |
-
$target =
|
1121 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1122 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1123 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1124 |
-
||
|
1125 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1126 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1127 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1128 |
-
||
|
1129 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset( $arr_settings['bar_call'] ) ) ? ' target="_blank" ' : '';
|
1130 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-telegram ssbp-btn' : '';
|
1131 |
-
$html_share_buttons = '';
|
1132 |
-
|
1133 |
-
// Add li if plus.
|
1134 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1135 |
-
$html_share_buttons .= '<li class="ssbp-li--telegram">';
|
1136 |
-
}
|
1137 |
-
|
1138 |
-
// Telegram share link.
|
1139 |
-
$html_share_buttons .= '<a data-site="telegram" class="ssba_telegram_share ssba_share_link'
|
1140 |
-
. esc_attr( $plus_class )
|
1141 |
-
. '" href="https://telegram.me/share/url?url='
|
1142 |
-
. esc_attr( rawurlencode( $url_current_page ) )
|
1143 |
-
. '&text='
|
1144 |
-
. esc_attr( rawurlencode( $str_page_title ) ) . '">';
|
1145 |
-
|
1146 |
-
// If image set is not custom.
|
1147 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1148 |
-
// Show ssba image.
|
1149 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/line.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Line" class="ssba ssba-img" alt="Telegram" />';
|
1150 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1151 |
-
// Show custom image.
|
1152 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_telegram'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Telegram" class="ssba ssba-img" alt="Telegram" />';
|
1153 |
-
}
|
1154 |
-
|
1155 |
-
// Close href.
|
1156 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1157 |
-
|
1158 |
-
// Close href.
|
1159 |
-
$html_share_buttons .= '</a>';
|
1160 |
-
|
1161 |
-
// Add closing li if plus.
|
1162 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1163 |
-
$html_share_buttons .= '</li>';
|
1164 |
-
}
|
1165 |
-
|
1166 |
-
// Return share buttons.
|
1167 |
-
return $html_share_buttons;
|
1168 |
-
}
|
1169 |
-
|
1170 |
-
|
1171 |
-
/**
|
1172 |
-
* Get Snapchat button.
|
1173 |
-
*
|
1174 |
-
* @param array $arr_settings The current ssba settings.
|
1175 |
-
* @param string $url_current_page The current page url.
|
1176 |
-
* @param string $str_page_title The page title.
|
1177 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1178 |
-
*
|
1179 |
-
* @return string
|
1180 |
-
*/
|
1181 |
-
public function ssba_snapchat( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1182 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1183 |
-
$network = 'Snapchat';
|
1184 |
-
|
1185 |
-
$target =
|
1186 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1187 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1188 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1189 |
-
||
|
1190 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1191 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1192 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1193 |
-
||
|
1194 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset( $arr_settings['bar_call'] ) ) ? ' target="_blank" ' : '';
|
1195 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-snapchat ssbp-btn' : '';
|
1196 |
-
$html_share_buttons = '';
|
1197 |
-
|
1198 |
-
// Add li if plus.
|
1199 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1200 |
-
$html_share_buttons .= '<li class="ssbp-li--snapchat">';
|
1201 |
-
}
|
1202 |
-
|
1203 |
-
// Snapchat share link.
|
1204 |
-
$html_share_buttons .= '<a data-site="snapchat" class="ssba_snapchat_share ssba_share_link' . esc_attr( $plus_class ) . '" href="https://snapchat.com/scan?attachmentUrl=' . esc_attr( $url_current_page ) . '&utm_source=sharethis" ' . esc_attr( $target . $nofollow ) . '>';
|
1205 |
-
|
1206 |
-
// If image set is not custom.
|
1207 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1208 |
-
// Show ssba image.
|
1209 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/line.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Line" class="ssba ssba-img" alt="Snapchat" />';
|
1210 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1211 |
-
// Show custom image.
|
1212 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_snapchat'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Snapchat" class="ssba ssba-img" alt="Snapchat" />';
|
1213 |
-
}
|
1214 |
-
|
1215 |
-
// Close href.
|
1216 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1217 |
-
|
1218 |
-
// Close href.
|
1219 |
-
$html_share_buttons .= '</a>';
|
1220 |
-
|
1221 |
-
// Add closing li if plus.
|
1222 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1223 |
-
$html_share_buttons .= '</li>';
|
1224 |
-
}
|
1225 |
-
|
1226 |
-
// Return share buttons.
|
1227 |
-
return $html_share_buttons;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
/**
|
1231 |
-
* Get weibo button.
|
1232 |
-
*
|
1233 |
-
* @param array $arr_settings The current ssba settings.
|
1234 |
-
* @param string $url_current_page The current page url.
|
1235 |
-
* @param string $str_page_title The page title.
|
1236 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1237 |
-
*
|
1238 |
-
* @return string
|
1239 |
-
*/
|
1240 |
-
public function ssba_weibo( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1241 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1242 |
-
$network = 'Line';
|
1243 |
-
$target =
|
1244 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1245 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1246 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1247 |
-
||
|
1248 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1249 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1250 |
-
&& false === isset( $arr_settings['bar_call'] ) )
|
1251 |
-
||
|
1252 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset( $arr_settings['bar_call'] ) ) ? ' target="_blank" ' : '';
|
1253 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-weibo ssbp-btn' : '';
|
1254 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1255 |
-
$html_share_buttons = '';
|
1256 |
-
|
1257 |
-
// Add li if plus.
|
1258 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1259 |
-
$html_share_buttons .= '<li class="ssbp-li--weibo">';
|
1260 |
-
}
|
1261 |
-
|
1262 |
-
// Skype share link.
|
1263 |
-
$html_share_buttons .= '<a data-site="weibo" class="ssba_weibo_share ssba_share_link' . esc_attr( $plus_class ) . '" href="http://v.t.sina.com.cn/share/share.php?url=' . esc_attr( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1264 |
-
|
1265 |
-
// If image set is not custom.
|
1266 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1267 |
-
// Show ssba image.
|
1268 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/weibo.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Weibo" class="ssba ssba-img" alt="Weibo" />';
|
1269 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1270 |
-
// Show custom image.
|
1271 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_weibo'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Weibo" class="ssba ssba-img" alt="Weibo" />';
|
1272 |
-
}
|
1273 |
-
|
1274 |
-
// Close href.
|
1275 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1276 |
-
|
1277 |
-
// Close href.
|
1278 |
-
$html_share_buttons .= '</a>';
|
1279 |
-
|
1280 |
-
// Add closing li if plus.
|
1281 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1282 |
-
$html_share_buttons .= '</li>';
|
1283 |
-
}
|
1284 |
-
|
1285 |
-
// Return share buttons.
|
1286 |
-
return $html_share_buttons;
|
1287 |
-
}
|
1288 |
-
|
1289 |
-
/**
|
1290 |
-
* Get reddit.
|
1291 |
-
*
|
1292 |
-
* @param array $arr_settings The current ssba settings.
|
1293 |
-
* @param string $url_current_page The current page url.
|
1294 |
-
* @param string $str_page_title The page title.
|
1295 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1296 |
-
*
|
1297 |
-
* @return string
|
1298 |
-
*/
|
1299 |
-
public function ssba_reddit( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1300 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1301 |
-
$network = 'Reddit';
|
1302 |
-
$target =
|
1303 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1304 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1305 |
-
&& false === isset(
|
1306 |
-
$arr_settings['bar_call']
|
1307 |
-
) )
|
1308 |
-
||
|
1309 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1310 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1311 |
-
&& false === isset(
|
1312 |
-
$arr_settings['bar_call']
|
1313 |
-
) )
|
1314 |
-
||
|
1315 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window'] && isset(
|
1316 |
-
$arr_settings['bar_call']
|
1317 |
-
) ) ? ' target="_blank" ' : '';
|
1318 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-reddit ssbp-btn' : '';
|
1319 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1320 |
-
$html_share_buttons = '';
|
1321 |
-
|
1322 |
-
// Add li if plus.
|
1323 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1324 |
-
$html_share_buttons .= '<li class="ssbp-li--reddit">';
|
1325 |
-
}
|
1326 |
-
|
1327 |
-
// Reddit share link.
|
1328 |
-
$html_share_buttons .= '<a data-site="reddit" class="ssba_reddit_share' . esc_attr( $plus_class ) . '" href="http://reddit.com/submit?url=' . esc_attr( $url_current_page ) . '&title=' . esc_attr( $str_page_title ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1329 |
-
|
1330 |
-
// If image set is not custom.
|
1331 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1332 |
-
|
1333 |
-
// Show ssba image.
|
1334 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/reddit.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Reddit" class="ssba ssba-img" alt="Share on Reddit" />';
|
1335 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1336 |
-
// Show custom image.
|
1337 |
-
$html_share_buttons .= '<img src="' . esc_attr( $arr_settings['ssba_custom_reddit'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Reddit" class="ssba ssba-img" alt="Share on Reddit" />';
|
1338 |
-
}
|
1339 |
-
|
1340 |
-
// Close href.
|
1341 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1342 |
-
|
1343 |
-
// Close href.
|
1344 |
-
$html_share_buttons .= '</a>';
|
1345 |
-
|
1346 |
-
// If show share count is set to Y.
|
1347 |
-
if ( ( ( 'Y' === $arr_settings['ssba_show_share_count'] && 'Y' !== $arr_settings['ssba_new_buttons'] )
|
1348 |
-
||
|
1349 |
-
( 'Y' === $arr_settings['ssba_plus_show_share_count'] && 'Y' === $arr_settings['ssba_new_buttons'] )
|
1350 |
-
||
|
1351 |
-
( 'Y' === $arr_settings['ssba_bar_show_share_count'] && isset( $arr_settings['bar_call'] )
|
1352 |
-
)
|
1353 |
-
&& $boo_show_share_count
|
1354 |
-
) ) {
|
1355 |
-
// Get and display share count.
|
1356 |
-
$html_share_buttons .= '<span class="' . esc_attr( $count_class ) . '">' . esc_html( $this->get_reddit_share_count( $url_current_page ) ) . '</span>';
|
1357 |
-
}
|
1358 |
-
|
1359 |
-
// Add closing li if plus.
|
1360 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1361 |
-
$html_share_buttons .= '</li>';
|
1362 |
-
}
|
1363 |
-
|
1364 |
-
// Return share buttons.
|
1365 |
-
return $html_share_buttons;
|
1366 |
-
}
|
1367 |
-
|
1368 |
-
/**
|
1369 |
-
* Get reddit share count.
|
1370 |
-
*
|
1371 |
-
* @param string $url_current_page The current url.
|
1372 |
-
*
|
1373 |
-
* @return int|string
|
1374 |
-
*/
|
1375 |
-
public function get_reddit_share_count( $url_current_page ) {
|
1376 |
-
// Get results from reddit and return the number of shares.
|
1377 |
-
$html_reddit_share_details = wp_safe_remote_get(
|
1378 |
-
'http://www.reddit.com/api/info.json?url=' . $url_current_page,
|
1379 |
-
array(
|
1380 |
-
'timeout' => 6,
|
1381 |
-
)
|
1382 |
-
);
|
1383 |
-
|
1384 |
-
// Check there was an error.
|
1385 |
-
if ( is_wp_error( $html_reddit_share_details ) ) {
|
1386 |
-
return 0;
|
1387 |
-
}
|
1388 |
-
|
1389 |
-
// Decode and get share count.
|
1390 |
-
$arr_reddit_result = json_decode( $html_reddit_share_details['body'], true );
|
1391 |
-
$int_reddit_share_count = isset( $arr_reddit_result['data']['children']['0']['data']['score'] ) ? $arr_reddit_result['data']['children']['0']['data']['score'] : 0;
|
1392 |
-
|
1393 |
-
return $int_reddit_share_count ? $this->ssba_format_number( $int_reddit_share_count ) : '0';
|
1394 |
-
}
|
1395 |
-
|
1396 |
-
/**
|
1397 |
-
* Get linkedin button.
|
1398 |
-
*
|
1399 |
-
* @param array $arr_settings The current ssba settings.
|
1400 |
-
* @param string $url_current_page The current page url.
|
1401 |
-
* @param string $str_page_title The page title.
|
1402 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1403 |
-
*
|
1404 |
-
* @return string
|
1405 |
-
*/
|
1406 |
-
public function ssba_linkedin( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1407 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1408 |
-
$network = 'Linkedin';
|
1409 |
-
$target =
|
1410 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1411 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1412 |
-
&& ! isset(
|
1413 |
-
$arr_settings['bar_call']
|
1414 |
-
) )
|
1415 |
-
||
|
1416 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1417 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1418 |
-
&& ! isset(
|
1419 |
-
$arr_settings['bar_call']
|
1420 |
-
) )
|
1421 |
-
||
|
1422 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
1423 |
-
&& isset(
|
1424 |
-
$arr_settings['bar_call']
|
1425 |
-
) ) ? ' target="_blank" ' : '';
|
1426 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-linkedin ssbp-btn' : '';
|
1427 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1428 |
-
$html_share_buttons = '';
|
1429 |
-
|
1430 |
-
// Add li if plus.
|
1431 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1432 |
-
$html_share_buttons .= '<li class="ssbp-li--linkedin">';
|
1433 |
-
}
|
1434 |
-
|
1435 |
-
// Linkedin share link.
|
1436 |
-
$html_share_buttons .= '<a data-site="linkedin" class="ssba_linkedin_share ssba_share_link' . esc_attr( $plus_class ) . '" href="http://www.linkedin.com/shareArticle?mini=true&url=' . esc_attr( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1437 |
-
|
1438 |
-
// If image set is not custom.
|
1439 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1440 |
-
// Show ssba image.
|
1441 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/linkedin.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="LinkedIn" class="ssba ssba-img" alt="Share on LinkedIn" />';
|
1442 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1443 |
-
// Show custom image.
|
1444 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_linkedin'] ) . '" alt="Share on LinkedIn" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="LinkedIn" class="ssba ssba-img" />';
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
// Close href.
|
1448 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1449 |
-
|
1450 |
-
// Close href.
|
1451 |
-
$html_share_buttons .= '</a>';
|
1452 |
-
|
1453 |
-
// Add closing li if plus.
|
1454 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1455 |
-
$html_share_buttons .= '</li>';
|
1456 |
-
}
|
1457 |
-
|
1458 |
-
// Return share buttons.
|
1459 |
-
return $html_share_buttons;
|
1460 |
-
}
|
1461 |
-
|
1462 |
-
/**
|
1463 |
-
* Get linkedin share count. DEPRECATED
|
1464 |
-
*
|
1465 |
-
* @param string $url_current_page The current page url.
|
1466 |
-
*
|
1467 |
-
* @return int|string
|
1468 |
-
*/
|
1469 |
-
public function get_linkedin_share_count( $url_current_page ) {
|
1470 |
-
// Get results from linkedin and return the number of shares.
|
1471 |
-
$html_linkedin_share_details = wp_safe_remote_get(
|
1472 |
-
'http://www.linkedin.com/countserv/count/share?url=' . $url_current_page,
|
1473 |
-
array(
|
1474 |
-
'timeout' => 6,
|
1475 |
-
)
|
1476 |
-
);
|
1477 |
-
|
1478 |
-
// If there was an error.
|
1479 |
-
if ( is_wp_error( $html_linkedin_share_details ) ) {
|
1480 |
-
return 0;
|
1481 |
-
}
|
1482 |
-
|
1483 |
-
// Extract/decode share count.
|
1484 |
-
$html_linkedin_share_details = str_replace( 'IN.Tags.Share.handleCount(', '', $html_linkedin_share_details );
|
1485 |
-
$html_linkedin_share_details = str_replace( ');', '', $html_linkedin_share_details );
|
1486 |
-
$arr_linkedin_share_details = json_decode( $html_linkedin_share_details['body'], true );
|
1487 |
-
$int_linkedin_share_count = $arr_linkedin_share_details['count'];
|
1488 |
-
|
1489 |
-
return $int_linkedin_share_count ? $this->ssba_format_number( $int_linkedin_share_count ) : '0';
|
1490 |
-
}
|
1491 |
-
|
1492 |
-
/**
|
1493 |
-
* Get pinterest button.
|
1494 |
-
*
|
1495 |
-
* @param array $arr_settings The current ssba settings.
|
1496 |
-
* @param string $url_current_page The current page url.
|
1497 |
-
* @param string $str_page_title The page title.
|
1498 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1499 |
-
*
|
1500 |
-
* @return string
|
1501 |
-
*/
|
1502 |
-
public function ssba_pinterest( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1503 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1504 |
-
$network = 'Pinterest';
|
1505 |
-
$target =
|
1506 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1507 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1508 |
-
&& false === isset(
|
1509 |
-
$arr_settings['bar_call']
|
1510 |
-
) )
|
1511 |
-
||
|
1512 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1513 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1514 |
-
&& false === isset(
|
1515 |
-
$arr_settings['bar_call']
|
1516 |
-
) )
|
1517 |
-
||
|
1518 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
1519 |
-
&& true === isset(
|
1520 |
-
$arr_settings['bar_call']
|
1521 |
-
) ) ? ' target="_blank" ' : '';
|
1522 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-pinterest ssbp-btn' : '';
|
1523 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1524 |
-
$html_share_buttons = '';
|
1525 |
-
|
1526 |
-
// Add li if plus.
|
1527 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1528 |
-
$html_share_buttons .= '<li class="ssbp-li--pinterest">';
|
1529 |
-
}
|
1530 |
-
|
1531 |
-
// If using featured images for Pinteres.
|
1532 |
-
if ( 'Y' === $arr_settings['ssba_pinterest_featured'] ) {
|
1533 |
-
// If this post has a featured image.
|
1534 |
-
if ( has_post_thumbnail( $arr_settings['post_id'] ) ) {
|
1535 |
-
// Get the featured image.
|
1536 |
-
$url_post_thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $arr_settings['post_id'] ), 'full' );
|
1537 |
-
$url_post_thumb = $url_post_thumb[0];
|
1538 |
-
} else { // No featured image set.
|
1539 |
-
// Use the pinterest default.
|
1540 |
-
$url_post_thumb = $arr_settings['ssba_default_pinterest'];
|
1541 |
-
}
|
1542 |
-
|
1543 |
-
// Pinterest share link.
|
1544 |
-
$html_share_buttons .= '<a data-site="pinterest-featured" href="http://pinterest.com/pin/create/bookmarklet/?is_video=false&url=' . esc_attr( $url_current_page ) . '&media=' . esc_attr( $url_post_thumb ) . '&description=' . esc_attr( $str_page_title ) . '" class="ssba_pinterest_share ssba_share_link' . esc_attr( $plus_class ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1545 |
-
} else { // Not using featured images for pinterest.
|
1546 |
-
// Use the choice of pinnable images approach.
|
1547 |
-
$html_share_buttons .= "<a data-site='pinterest' class='ssba_pinterest_share" . esc_attr( $plus_class ) . "' href='javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());'>";
|
1548 |
-
}
|
1549 |
-
|
1550 |
-
// If image set is not custom.
|
1551 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1552 |
-
// Show ssba image.
|
1553 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/pinterest.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Pinterest" class="ssba ssba-img" alt="Pin on Pinterest" />';
|
1554 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1555 |
-
// Show custom image.
|
1556 |
-
$html_share_buttons .= '<img style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Pinterest" class="ssba ssba-img" src="' . esc_url( $arr_settings['ssba_custom_pinterest'] ) . '" alt="Pin on Pinterest" />';
|
1557 |
-
}
|
1558 |
-
|
1559 |
-
// Close href.
|
1560 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1561 |
-
|
1562 |
-
// Close href.
|
1563 |
-
$html_share_buttons .= '</a>';
|
1564 |
-
|
1565 |
-
// If show share count is set to Y.
|
1566 |
-
if ( ( ( 'Y' === $arr_settings['ssba_show_share_count'] && 'Y' !== $arr_settings['ssba_new_buttons'] )
|
1567 |
-
||
|
1568 |
-
( 'Y' === $arr_settings['ssba_plus_show_share_count'] && 'Y' === $arr_settings['ssba_new_buttons'] )
|
1569 |
-
||
|
1570 |
-
( 'Y' === $arr_settings['ssba_bar_show_share_count'] && isset( $arr_settings['bar_call'] )
|
1571 |
-
)
|
1572 |
-
&& $boo_show_share_count
|
1573 |
-
) ) {
|
1574 |
-
$html_share_buttons .= '<span class="' . esc_attr( $count_class ) . '">' . esc_html( $this->get_pinterest_share_count( $url_current_page ) ) . '</span>';
|
1575 |
-
}
|
1576 |
-
|
1577 |
-
// Add closing li if plus.
|
1578 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1579 |
-
$html_share_buttons .= '</li>';
|
1580 |
-
}
|
1581 |
-
|
1582 |
-
// Return share buttons.
|
1583 |
-
return $html_share_buttons;
|
1584 |
-
}
|
1585 |
-
|
1586 |
-
/**
|
1587 |
-
* Get pinterest share count.
|
1588 |
-
*
|
1589 |
-
* @param string $url_current_page The current page url.
|
1590 |
-
*
|
1591 |
-
* @return int|string
|
1592 |
-
*/
|
1593 |
-
public function get_pinterest_share_count( $url_current_page ) {
|
1594 |
-
// Get results from pinterest.
|
1595 |
-
$html_pinterest_share_details = wp_remote_get(
|
1596 |
-
'https://api.pinterest.com/v1/urls/count.json?url=' . $url_current_page,
|
1597 |
-
array(
|
1598 |
-
'timeout' => 6,
|
1599 |
-
)
|
1600 |
-
);
|
1601 |
-
|
1602 |
-
// Check there was an error.
|
1603 |
-
if ( true === is_wp_error( $html_pinterest_share_details ) ) {
|
1604 |
-
return 0;
|
1605 |
-
}
|
1606 |
-
|
1607 |
-
$body = wp_remote_retrieve_body( $html_pinterest_share_details );
|
1608 |
-
|
1609 |
-
if ( false === is_string( $body ) ) {
|
1610 |
-
return 0;
|
1611 |
-
}
|
1612 |
-
|
1613 |
-
$body = str_replace( 'receiveCount(', '', $body );
|
1614 |
-
$body = str_replace( ')', '', $body );
|
1615 |
-
$json = json_decode( $body, true );
|
1616 |
-
$count = $json['count'];
|
1617 |
-
|
1618 |
-
return $count ? $this->ssba_format_number( $count ) : '0';
|
1619 |
-
}
|
1620 |
-
|
1621 |
-
/**
|
1622 |
-
* Get stumbleupon button.
|
1623 |
-
*
|
1624 |
-
* @param array $arr_settings The current ssba settings.
|
1625 |
-
* @param string $url_current_page The current page url.
|
1626 |
-
* @param string $str_page_title The page title.
|
1627 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1628 |
-
*
|
1629 |
-
* @return string
|
1630 |
-
*/
|
1631 |
-
public function ssba_stumbleupon( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1632 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1633 |
-
$network = 'StumbleUpon';
|
1634 |
-
$target =
|
1635 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1636 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1637 |
-
&& false === isset(
|
1638 |
-
$arr_settings['bar_call']
|
1639 |
-
) )
|
1640 |
-
||
|
1641 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1642 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1643 |
-
&& false === isset(
|
1644 |
-
$arr_settings['bar_call']
|
1645 |
-
) )
|
1646 |
-
||
|
1647 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
1648 |
-
&& isset(
|
1649 |
-
$arr_settings['bar_call']
|
1650 |
-
) ) ? ' target="_blank" ' : '';
|
1651 |
-
$url = 'http://www.stumbleupon.com/submit?url=' . esc_attr( $url_current_page ) . '&title=' . esc_attr( $str_page_title );
|
1652 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-stumbleupon ssbp-btn' : '';
|
1653 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1654 |
-
$html_share_buttons = '';
|
1655 |
-
|
1656 |
-
// Add li if plus.
|
1657 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1658 |
-
$html_share_buttons .= '<li class="ssbp-li--stumbleupon">';
|
1659 |
-
}
|
1660 |
-
|
1661 |
-
// Stumbleupon share link.
|
1662 |
-
$html_share_buttons .= '<a data-site="stumbleupon" class="ssba_stumbleupon_share ssba_share_link' . esc_attr( $plus_class ) . '" href="' . esc_url( $url ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1663 |
-
|
1664 |
-
// If image set is not custom.
|
1665 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1666 |
-
// Show ssba image.
|
1667 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/stumbleupon.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="StumbleUpon" class="ssba ssba-img" alt="Share on StumbleUpon" />';
|
1668 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1669 |
-
// Show custom image.
|
1670 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_stumbleupon'] ) . '" alt="Share on StumbleUpon" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="StumbleUpon" class="ssba ssba-img" />';
|
1671 |
-
}
|
1672 |
-
|
1673 |
-
// Close href.
|
1674 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1675 |
-
|
1676 |
-
// Close href.
|
1677 |
-
$html_share_buttons .= '</a>';
|
1678 |
-
|
1679 |
-
// If show share count is set to Y.
|
1680 |
-
if ( ( ( 'Y' === $arr_settings['ssba_show_share_count'] && 'Y' !== $arr_settings['ssba_new_buttons'] )
|
1681 |
-
||
|
1682 |
-
( 'Y' === $arr_settings['ssba_plus_show_share_count'] && 'Y' === $arr_settings['ssba_new_buttons'] )
|
1683 |
-
||
|
1684 |
-
( 'Y' === $arr_settings['ssba_bar_show_share_count'] && isset( $arr_settings['bar_call'] )
|
1685 |
-
)
|
1686 |
-
&& $boo_show_share_count
|
1687 |
-
) ) {
|
1688 |
-
$html_share_buttons .= '<span class="' . esc_attr( $count_class ) . '">' . esc_html( $this->get_stumble_upon_share_count( $url_current_page ) ) . '</span>';
|
1689 |
-
}
|
1690 |
-
|
1691 |
-
// Add closing li if plus.
|
1692 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1693 |
-
$html_share_buttons .= '</li>';
|
1694 |
-
}
|
1695 |
-
|
1696 |
-
// Return share buttons.
|
1697 |
-
return $html_share_buttons;
|
1698 |
-
}
|
1699 |
-
|
1700 |
-
/**
|
1701 |
-
* Get stumbleupon share count.
|
1702 |
-
*
|
1703 |
-
* @param string $url_current_page The current url.
|
1704 |
-
*
|
1705 |
-
* @return int|string
|
1706 |
-
*/
|
1707 |
-
public function get_stumble_upon_share_count( $url_current_page ) {
|
1708 |
-
// Get results from stumbleupon and return the number of shares.
|
1709 |
-
$html_stumble_upon_share_details = wp_safe_remote_get(
|
1710 |
-
'http://www.stumbleupon.com/services/1.01/badge.getinfo?url=' . $url_current_page,
|
1711 |
-
array(
|
1712 |
-
'timeout' => 6,
|
1713 |
-
)
|
1714 |
-
);
|
1715 |
-
|
1716 |
-
// Check there was an error.
|
1717 |
-
if ( is_wp_error( $html_stumble_upon_share_details ) ) {
|
1718 |
-
return 0;
|
1719 |
-
}
|
1720 |
-
|
1721 |
-
// Decode data.
|
1722 |
-
$arr_stumble_upon_result = json_decode( $html_stumble_upon_share_details['body'], true );
|
1723 |
-
$int_stumble_upon_share_count = isset( $arr_stumble_upon_result['result']['views'] ) ? $arr_stumble_upon_result['result']['views'] : 0;
|
1724 |
-
|
1725 |
-
return $int_stumble_upon_share_count ? $this->ssba_format_number( $int_stumble_upon_share_count ) : '0';
|
1726 |
-
}
|
1727 |
-
|
1728 |
-
/**
|
1729 |
-
* Get email button.
|
1730 |
-
*
|
1731 |
-
* @param array $arr_settings The current ssba settings.
|
1732 |
-
* @param string $url_current_page The current page url.
|
1733 |
-
* @param string $str_page_title The page title.
|
1734 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1735 |
-
*
|
1736 |
-
* @return string
|
1737 |
-
*/
|
1738 |
-
public function ssba_email( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1739 |
-
// Replace ampersands as needed for email link.
|
1740 |
-
$email_title = str_replace( '&', '%26', $str_page_title );
|
1741 |
-
$network = 'email';
|
1742 |
-
$url = 'mailto:?subject=' . $email_title . '&body=' . $arr_settings['ssba_email_message'] . ' ' . $url_current_page;
|
1743 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-email ssbp-btn' : '';
|
1744 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1745 |
-
$html_share_buttons = '';
|
1746 |
-
|
1747 |
-
// Add li if plus.
|
1748 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1749 |
-
$html_share_buttons .= '<li class="ssbp-li--email">';
|
1750 |
-
}
|
1751 |
-
|
1752 |
-
$url = 'Y' === $arr_settings['ssba_new_buttons'] ? 'mailto:?subject=' . $email_title . '&body=' . $arr_settings['ssba_plus_email_message'] . ' ' . $url_current_page : $url;
|
1753 |
-
$url = isset( $arr_settings['bar_call'] ) ? 'mailto:?subject=' . $email_title . '&body=' . $arr_settings['ssba_bar_email_message'] . ' ' . $url_current_page : $url;
|
1754 |
-
|
1755 |
-
// Email share link.
|
1756 |
-
$html_share_buttons .= '<a data-site="email" class="ssba_email_share' . esc_attr( $plus_class ) . '" href="' . esc_url( $url ) . '">';
|
1757 |
-
|
1758 |
-
// If image set is not custom.
|
1759 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1760 |
-
// Show ssba image.
|
1761 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/email.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Email" class="ssba ssba-img" alt="Email this to someone" />';
|
1762 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1763 |
-
// Show custom image.
|
1764 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_email'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Email" class="ssba ssba-img" alt="Email to someone" />';
|
1765 |
-
}
|
1766 |
-
|
1767 |
-
// Close href.
|
1768 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1769 |
-
|
1770 |
-
// Close href.
|
1771 |
-
$html_share_buttons .= '</a>';
|
1772 |
-
|
1773 |
-
// Add closing li if plus.
|
1774 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1775 |
-
$html_share_buttons .= '</li>';
|
1776 |
-
}
|
1777 |
-
|
1778 |
-
// Return share buttons.
|
1779 |
-
return $html_share_buttons;
|
1780 |
-
}
|
1781 |
-
|
1782 |
-
/**
|
1783 |
-
* Get flattr button.
|
1784 |
-
*
|
1785 |
-
* @param array $arr_settings The current ssba settings.
|
1786 |
-
* @param string $url_current_page The current page url.
|
1787 |
-
* @param string $str_page_title The page title.
|
1788 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1789 |
-
*
|
1790 |
-
* @return string
|
1791 |
-
*/
|
1792 |
-
public function ssba_flattr( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1793 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1794 |
-
$network = 'Flattr';
|
1795 |
-
$target =
|
1796 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1797 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1798 |
-
&& false === isset(
|
1799 |
-
$arr_settings['bar_call']
|
1800 |
-
) )
|
1801 |
-
||
|
1802 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1803 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1804 |
-
&& false === isset(
|
1805 |
-
$arr_settings['bar_call']
|
1806 |
-
) )
|
1807 |
-
||
|
1808 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
1809 |
-
&& isset(
|
1810 |
-
$arr_settings['bar_call']
|
1811 |
-
) ) ? ' target="_blank" ' : '';
|
1812 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-flattr ssbp-btn' : '';
|
1813 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1814 |
-
$html_share_buttons = '';
|
1815 |
-
$userid = ! empty( $arr_settings['ssba_flattr_user_id'] ) ? $arr_settings['ssba_flattr_user_id'] : '';
|
1816 |
-
|
1817 |
-
// Add li if plus.
|
1818 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1819 |
-
$html_share_buttons .= '<li class="ssbp-li--flattr">';
|
1820 |
-
}
|
1821 |
-
|
1822 |
-
// Check for dedicated flattr URL.
|
1823 |
-
if ( '' !== $arr_settings['ssba_flattr_url'] ) {
|
1824 |
-
// Update url that will be set to specified URL.
|
1825 |
-
$url_current_page = $arr_settings['ssba_flattr_url'];
|
1826 |
-
}
|
1827 |
-
|
1828 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] ) {
|
1829 |
-
$userid = ! empty( $arr_settings['ssba_plus_flattr_user_id'] ) ? $arr_settings['ssba_plus_flattr_user_id'] : $userid;
|
1830 |
-
$url_current_page = ! empty( $arr_settings['ssba_plus_flattr_url'] ) ? $arr_settings['ssba_plus_flattr_url'] : $url_current_page;
|
1831 |
-
}
|
1832 |
-
|
1833 |
-
if ( isset( $arr_settings['bar_call'] ) ) {
|
1834 |
-
$userid = ! empty( $arr_settings['ssba_bar_flattr_user_id'] ) ? $arr_settings['ssba_bar_flattr_user_id'] : $userid;
|
1835 |
-
$url_current_page = ! empty( $arr_settings['ssba_bar_flattr_url'] ) ? $arr_settings['ssba_bar_flattr_url'] : $url_current_page;
|
1836 |
-
}
|
1837 |
-
|
1838 |
-
// Flattr share link.
|
1839 |
-
$html_share_buttons .= '<a data-site="flattr" class="ssba_flattr_share' . esc_attr( $plus_class ) . '" href="https://flattr.com/submit/auto?user_id=' . esc_attr( $userid ) . '&title=' . esc_attr( $str_page_title ) . '&url=' . esc_attr( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1840 |
-
|
1841 |
-
// If image set is not custom.
|
1842 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1843 |
-
// Show ssba image.
|
1844 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/flattr.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Flattr" class="ssba ssba-img" alt="Flattr the author" />';
|
1845 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1846 |
-
// Show custom image.
|
1847 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_flattr'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Flattr" class="ssba ssba-img" alt="Flattr the author" />';
|
1848 |
-
}
|
1849 |
-
|
1850 |
-
// Close href.
|
1851 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1852 |
-
|
1853 |
-
// Close href.
|
1854 |
-
$html_share_buttons .= '</a>';
|
1855 |
-
|
1856 |
-
// Add closing li if plus.
|
1857 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1858 |
-
$html_share_buttons .= '</li>';
|
1859 |
-
}
|
1860 |
-
|
1861 |
-
// Return share buttons.
|
1862 |
-
return $html_share_buttons;
|
1863 |
-
}
|
1864 |
-
|
1865 |
-
/**
|
1866 |
-
* Get buffer button.
|
1867 |
-
*
|
1868 |
-
* @param array $arr_settings The current ssba settings.
|
1869 |
-
* @param string $url_current_page The current page url.
|
1870 |
-
* @param string $str_page_title The page title.
|
1871 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1872 |
-
*
|
1873 |
-
* @return string
|
1874 |
-
*/
|
1875 |
-
public function ssba_buffer( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1876 |
-
$buffer = '' !== $arr_settings['ssba_buffer_text'] ? $arr_settings['ssba_buffer_text'] : '';
|
1877 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1878 |
-
$network = 'Buffer';
|
1879 |
-
$target =
|
1880 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1881 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1882 |
-
&& ! isset(
|
1883 |
-
$arr_settings['bar_call']
|
1884 |
-
) )
|
1885 |
-
||
|
1886 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1887 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1888 |
-
&& ! isset(
|
1889 |
-
$arr_settings['bar_call']
|
1890 |
-
) )
|
1891 |
-
||
|
1892 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
1893 |
-
&& isset(
|
1894 |
-
$arr_settings['bar_call']
|
1895 |
-
) ) ? ' target="_blank" ' : '';
|
1896 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-buffer ssbp-btn' : '';
|
1897 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1898 |
-
$html_share_buttons = '';
|
1899 |
-
|
1900 |
-
// Add li if plus.
|
1901 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1902 |
-
$html_share_buttons .= '<li class="ssbp-li--buffer">';
|
1903 |
-
}
|
1904 |
-
|
1905 |
-
// Buffer share link.
|
1906 |
-
$html_share_buttons .= '<a data-site="buffer" class="ssba_buffer_share' . esc_attr( $plus_class ) . '" href="https://bufferapp.com/add?url=' . esc_attr( $url_current_page ) . '&text=' . esc_attr( $buffer ) . ' ' . esc_attr( $str_page_title ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1907 |
-
|
1908 |
-
// If image set is not custom.
|
1909 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1910 |
-
// Show ssba image.
|
1911 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/buffer.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Buffer" class="ssba ssba-img" alt="Buffer this page" />';
|
1912 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1913 |
-
// Show custom image.
|
1914 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_buffer'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Buffer" class="ssba ssba-img" alt="Buffer this page" />';
|
1915 |
-
}
|
1916 |
-
|
1917 |
-
// Close href.
|
1918 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1919 |
-
|
1920 |
-
// Close href.
|
1921 |
-
$html_share_buttons .= '</a>';
|
1922 |
-
|
1923 |
-
// Add closing li if plus.
|
1924 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1925 |
-
$html_share_buttons .= '</li>';
|
1926 |
-
}
|
1927 |
-
|
1928 |
-
// Return share buttons.
|
1929 |
-
return $html_share_buttons;
|
1930 |
-
}
|
1931 |
-
|
1932 |
-
/**
|
1933 |
-
* Get tumblr button.
|
1934 |
-
*
|
1935 |
-
* @param array $arr_settings The current ssba settings.
|
1936 |
-
* @param string $url_current_page The current page url.
|
1937 |
-
* @param string $str_page_title The page title.
|
1938 |
-
* @param bool $boo_show_share_count Show share count or not.
|
1939 |
-
*
|
1940 |
-
* @return string
|
1941 |
-
*/
|
1942 |
-
public function ssba_tumblr( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
1943 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
1944 |
-
$network = 'Tumblr';
|
1945 |
-
$target =
|
1946 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
1947 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
1948 |
-
&& ! isset(
|
1949 |
-
$arr_settings['bar_call']
|
1950 |
-
) )
|
1951 |
-
||
|
1952 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
1953 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
1954 |
-
&& ! isset(
|
1955 |
-
$arr_settings['bar_call']
|
1956 |
-
) )
|
1957 |
-
||
|
1958 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
1959 |
-
&& isset(
|
1960 |
-
$arr_settings['bar_call']
|
1961 |
-
) ) ? ' target="_blank" ' : '';
|
1962 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-tumblr ssbp-btn' : '';
|
1963 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
1964 |
-
$html_share_buttons = '';
|
1965 |
-
|
1966 |
-
// Add li if plus.
|
1967 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
1968 |
-
$html_share_buttons .= '<li class="ssbp-li--tumblr">';
|
1969 |
-
}
|
1970 |
-
|
1971 |
-
// Tumblr share link.
|
1972 |
-
$html_share_buttons .= '<a data-site="tumblr" class="ssba_tumblr_share' . esc_attr( $plus_class ) . '" href="http://www.tumblr.com/share/link?url=' . esc_attr( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
1973 |
-
|
1974 |
-
// If image set is not custom.
|
1975 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
1976 |
-
// Show ssba image.
|
1977 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/tumblr.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="tumblr" class="ssba ssba-img" alt="Share on Tumblr" />';
|
1978 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
1979 |
-
// Show custom image.
|
1980 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_tumblr'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="tumblr" class="ssba ssba-img" alt="share on Tumblr" />';
|
1981 |
-
}
|
1982 |
-
|
1983 |
-
// Close href.
|
1984 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
1985 |
-
|
1986 |
-
// Close href.
|
1987 |
-
$html_share_buttons .= '</a>';
|
1988 |
-
|
1989 |
-
// If show share count is set to Y.
|
1990 |
-
if ( ( ( 'Y' === $arr_settings['ssba_show_share_count'] && 'Y' !== $arr_settings['ssba_new_buttons'] )
|
1991 |
-
||
|
1992 |
-
( 'Y' === $arr_settings['ssba_plus_show_share_count'] && 'Y' === $arr_settings['ssba_new_buttons'] )
|
1993 |
-
||
|
1994 |
-
( 'Y' === $arr_settings['ssba_bar_show_share_count'] && isset( $arr_settings['bar_call'] )
|
1995 |
-
)
|
1996 |
-
&& $boo_show_share_count
|
1997 |
-
) ) {
|
1998 |
-
$html_share_buttons .= '<span class="' . $count_class . '">' . esc_html( $this->get_tumblr_share_count( $url_current_page ) ) . '</span>';
|
1999 |
-
}
|
2000 |
-
|
2001 |
-
// Add closing li if plus.
|
2002 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2003 |
-
$html_share_buttons .= '</li>';
|
2004 |
-
}
|
2005 |
-
|
2006 |
-
// Return share buttons.
|
2007 |
-
return $html_share_buttons;
|
2008 |
-
}
|
2009 |
-
|
2010 |
-
/**
|
2011 |
-
* Get tumblr share count.
|
2012 |
-
*
|
2013 |
-
* @param string $url_current_page The current url.
|
2014 |
-
*
|
2015 |
-
* @return int|string
|
2016 |
-
*/
|
2017 |
-
public function get_tumblr_share_count( $url_current_page ) {
|
2018 |
-
// Get results from tumblr and return the number of shares.
|
2019 |
-
$result = wp_safe_remote_get(
|
2020 |
-
'http://api.tumblr.com/v2/share/stats?url=' . $url_current_page,
|
2021 |
-
array(
|
2022 |
-
'timeout' => 6,
|
2023 |
-
)
|
2024 |
-
);
|
2025 |
-
|
2026 |
-
// Check there was an error.
|
2027 |
-
if ( is_wp_error( $result ) ) {
|
2028 |
-
return 0;
|
2029 |
-
}
|
2030 |
-
|
2031 |
-
// Decode data.
|
2032 |
-
$array = json_decode( $result['body'], true );
|
2033 |
-
$count = isset( $array['response']['note_count'] ) ? $array['response']['note_count'] : 0;
|
2034 |
-
|
2035 |
-
return ( $count ) ? $count : '0';
|
2036 |
-
}
|
2037 |
-
|
2038 |
-
/**
|
2039 |
-
* Get print button.
|
2040 |
-
*
|
2041 |
-
* @param array $arr_settings The current ssba settings.
|
2042 |
-
* @param string $url_current_page The current page url.
|
2043 |
-
* @param string $str_page_title The page title.
|
2044 |
-
* @param bool $boo_show_share_count Show share count or not.
|
2045 |
-
*
|
2046 |
-
* @return string
|
2047 |
-
*/
|
2048 |
-
public function ssba_print( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
2049 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-print ssbp-btn' : '';
|
2050 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
2051 |
-
$network = 'Print';
|
2052 |
-
$html_share_buttons = '';
|
2053 |
-
|
2054 |
-
// Add li if plus.
|
2055 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2056 |
-
$html_share_buttons .= '<li class="ssbp-li--print">';
|
2057 |
-
}
|
2058 |
-
|
2059 |
-
$html_share_buttons .= '<a data-site="print" class="ssba_print ssba_share_link ' . esc_attr( $plus_class ) . '" href="#" onclick="window.print()">';
|
2060 |
-
|
2061 |
-
// If image set is not custom.
|
2062 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
2063 |
-
// Show ssba image.
|
2064 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/print.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Print" class="ssba ssba-img" alt="Print this page" />';
|
2065 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
2066 |
-
// Show custom image.
|
2067 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_print'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Print" class="ssba ssba-img" alt="Print this page" />';
|
2068 |
-
}
|
2069 |
-
|
2070 |
-
// Close href.
|
2071 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
2072 |
-
|
2073 |
-
// Close href.
|
2074 |
-
$html_share_buttons .= '</a>';
|
2075 |
-
|
2076 |
-
// Add closing li if plus.
|
2077 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2078 |
-
$html_share_buttons .= '</li>';
|
2079 |
-
}
|
2080 |
-
|
2081 |
-
// Return share buttons.
|
2082 |
-
return $html_share_buttons;
|
2083 |
-
}
|
2084 |
-
|
2085 |
-
/**
|
2086 |
-
* Get vk button.
|
2087 |
-
*
|
2088 |
-
* @param array $arr_settings The current ssba settings.
|
2089 |
-
* @param string $url_current_page The current page url.
|
2090 |
-
* @param string $str_page_title The page title.
|
2091 |
-
* @param bool $boo_show_share_count Show share count or not.
|
2092 |
-
*
|
2093 |
-
* @return string
|
2094 |
-
*/
|
2095 |
-
public function ssba_vk( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
2096 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
2097 |
-
$network = 'VK';
|
2098 |
-
$target =
|
2099 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
2100 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
2101 |
-
&& ! isset(
|
2102 |
-
$arr_settings['bar_call']
|
2103 |
-
) )
|
2104 |
-
||
|
2105 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
2106 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
2107 |
-
&& ! isset(
|
2108 |
-
$arr_settings['bar_call']
|
2109 |
-
) )
|
2110 |
-
||
|
2111 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
2112 |
-
&& isset(
|
2113 |
-
$arr_settings['bar_call']
|
2114 |
-
) ) ? ' target="_blank" ' : '';
|
2115 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-vk ssbp-btn' : '';
|
2116 |
-
$html_share_buttons = '';
|
2117 |
-
|
2118 |
-
// Add li if plus.
|
2119 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2120 |
-
$html_share_buttons .= '<li class="ssbp-li--vk">';
|
2121 |
-
}
|
2122 |
-
|
2123 |
-
// Vk share link.
|
2124 |
-
$html_share_buttons .= '<a data-site="vk" class="ssba_vk_share ssba_share_link' . esc_attr( $plus_class ) . '" href="http://vkontakte.ru/share.php?url=' . esc_attr( $url_current_page ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
2125 |
-
|
2126 |
-
// If image set is not custom.
|
2127 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
2128 |
-
// Show ssba image.
|
2129 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/vk.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="VK" class="ssba ssba-img" alt="Share on VK" />';
|
2130 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
2131 |
-
// Show custom image.
|
2132 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_vk'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="VK" class="ssba ssba-img" alt="Share on VK" />';
|
2133 |
-
}
|
2134 |
-
|
2135 |
-
// Close href.
|
2136 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
2137 |
-
|
2138 |
-
// Close href.
|
2139 |
-
$html_share_buttons .= '</a>';
|
2140 |
-
|
2141 |
-
// Add closing li if plus.
|
2142 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2143 |
-
$html_share_buttons .= '</li>';
|
2144 |
-
}
|
2145 |
-
|
2146 |
-
// Return share buttons.
|
2147 |
-
return $html_share_buttons;
|
2148 |
-
}
|
2149 |
-
|
2150 |
-
/**
|
2151 |
-
* Get yummly button.
|
2152 |
-
*
|
2153 |
-
* @param array $arr_settings The current ssba settings.
|
2154 |
-
* @param string $url_current_page The current page url.
|
2155 |
-
* @param string $str_page_title The page title.
|
2156 |
-
* @param bool $boo_show_share_count Show share count or not.
|
2157 |
-
*
|
2158 |
-
* @return string
|
2159 |
-
*/
|
2160 |
-
public function ssba_yummly( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
2161 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
2162 |
-
$network = 'Yummly';
|
2163 |
-
$target =
|
2164 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
2165 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
2166 |
-
&& ! isset(
|
2167 |
-
$arr_settings['bar_call']
|
2168 |
-
) )
|
2169 |
-
||
|
2170 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
2171 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
2172 |
-
&& ! isset(
|
2173 |
-
$arr_settings['bar_call']
|
2174 |
-
) )
|
2175 |
-
||
|
2176 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
2177 |
-
&& isset(
|
2178 |
-
$arr_settings['bar_call']
|
2179 |
-
) ) ? ' target="_blank" ' : '';
|
2180 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-yummly ssbp-btn' : '';
|
2181 |
-
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
2182 |
-
$html_share_buttons = '';
|
2183 |
-
|
2184 |
-
// Add li if plus.
|
2185 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2186 |
-
$html_share_buttons .= '<li class="ssbp-li--yummly">';
|
2187 |
-
}
|
2188 |
-
|
2189 |
-
// Yummly share link.
|
2190 |
-
$html_share_buttons .= '<a data-site="yummly" class="ssba_yummly_share ssba_share_link' . esc_attr( $plus_class ) . '" href="http://www.yummly.com/urb/verify?url=' . esc_attr( $url_current_page ) . '&title=' . esc_attr( rawurlencode( html_entity_decode( $str_page_title ) ) ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
2191 |
-
|
2192 |
-
// If image set is not custom.
|
2193 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
2194 |
-
// Show ssba image.
|
2195 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/yummly.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Yummly" class="ssba ssba-img" alt="Share on Yummly" />';
|
2196 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
2197 |
-
// Show custom image.
|
2198 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_yummly'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Yummly" class="ssba ssba-img" alt="Share on Yummly" />';
|
2199 |
-
}
|
2200 |
-
|
2201 |
-
// Close href.
|
2202 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
2203 |
-
|
2204 |
-
// Close href.
|
2205 |
-
$html_share_buttons .= '</a>';
|
2206 |
-
|
2207 |
-
// If show share count is set to Y.
|
2208 |
-
if ( ( ( 'Y' === $arr_settings['ssba_show_share_count'] && 'Y' !== $arr_settings['ssba_new_buttons'] )
|
2209 |
-
||
|
2210 |
-
( 'Y' === $arr_settings['ssba_plus_show_share_count'] && 'Y' === $arr_settings['ssba_new_buttons'] )
|
2211 |
-
||
|
2212 |
-
( 'Y' === $arr_settings['ssba_bar_show_share_count'] && isset( $arr_settings['bar_call'] )
|
2213 |
-
)
|
2214 |
-
&& $boo_show_share_count
|
2215 |
-
) ) {
|
2216 |
-
$html_share_buttons .= '<span class="' . esc_attr( $count_class ) . '">' . esc_html( $this->get_yummly_share_count( $url_current_page ) ) . '</span>';
|
2217 |
-
}
|
2218 |
-
|
2219 |
-
// Add closing li if plus.
|
2220 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2221 |
-
$html_share_buttons .= '</li>';
|
2222 |
-
}
|
2223 |
-
|
2224 |
-
// Return share buttons.
|
2225 |
-
return $html_share_buttons;
|
2226 |
-
}
|
2227 |
-
|
2228 |
-
/**
|
2229 |
-
* Get yummly share count.
|
2230 |
-
*
|
2231 |
-
* @param string $url_current_page the current page url.
|
2232 |
-
*
|
2233 |
-
* @return int|string
|
2234 |
-
*/
|
2235 |
-
public function get_yummly_share_count( $url_current_page ) {
|
2236 |
-
// Get results from yummly and return the number of shares.
|
2237 |
-
$result = wp_safe_remote_get(
|
2238 |
-
'http://www.yummly.com/services/yum-count?url=' . $url_current_page,
|
2239 |
-
array(
|
2240 |
-
'timeout' => 6,
|
2241 |
-
)
|
2242 |
-
);
|
2243 |
-
|
2244 |
-
// Check there was an error.
|
2245 |
-
if ( is_wp_error( $result ) ) {
|
2246 |
-
return 0;
|
2247 |
-
}
|
2248 |
-
|
2249 |
-
// Decode data.
|
2250 |
-
$array = json_decode( $result['body'], true );
|
2251 |
-
$count = isset( $array['count'] ) ? $array['count'] : '0';
|
2252 |
-
|
2253 |
-
// Return.
|
2254 |
-
return $count;
|
2255 |
-
}
|
2256 |
-
|
2257 |
-
/**
|
2258 |
-
* Get whatsapp button.
|
2259 |
-
*
|
2260 |
-
* @param array $arr_settings The current ssba settings.
|
2261 |
-
* @param string $url_current_page The current page url.
|
2262 |
-
* @param string $str_page_title The page title.
|
2263 |
-
* @param bool $boo_show_share_count Show share count or not.
|
2264 |
-
*
|
2265 |
-
* @return string
|
2266 |
-
*/
|
2267 |
-
public function ssba_whatsapp( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
2268 |
-
if ( ! wp_is_mobile() ) {
|
2269 |
-
return;
|
2270 |
-
}
|
2271 |
-
|
2272 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
2273 |
-
$network = 'Whatsapp';
|
2274 |
-
$target =
|
2275 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
2276 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
2277 |
-
&& ! isset(
|
2278 |
-
$arr_settings['bar_call']
|
2279 |
-
) )
|
2280 |
-
||
|
2281 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
2282 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
2283 |
-
&& ! isset(
|
2284 |
-
$arr_settings['bar_call']
|
2285 |
-
) )
|
2286 |
-
||
|
2287 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
2288 |
-
&& isset(
|
2289 |
-
$arr_settings['bar_call']
|
2290 |
-
) ) ? ' target="_blank" ' : '';
|
2291 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-whatsapp ssbp-btn' : '';
|
2292 |
-
$html_share_buttons = '';
|
2293 |
-
|
2294 |
-
// Add li if plus.
|
2295 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2296 |
-
$html_share_buttons .= '<li class="ssbp-li--whatsapp">';
|
2297 |
-
}
|
2298 |
-
|
2299 |
-
// Whatsapp share link.
|
2300 |
-
$html_share_buttons .= '<a data-site="whatsapp" class="ssba_whatsapp_share ssba_share_link' . esc_attr( $plus_class ) . '" href="whatsapp://send?text=' . rawurlencode( $url_current_page . ' ' . $str_page_title ) . '" ' . esc_attr( $target . $nofollow ) . '>';
|
2301 |
-
|
2302 |
-
// If image set is not custom.
|
2303 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
2304 |
-
// Show ssba image.
|
2305 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/whatsapp.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Whatsapp" class="ssba ssba-img" alt="Share on Whatsapp" />';
|
2306 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
2307 |
-
// Show custom image.
|
2308 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_whatsapp'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Whatsapp" class="ssba ssba-img" alt="Share on Whatsapp" />';
|
2309 |
-
}
|
2310 |
-
|
2311 |
-
// Close href.
|
2312 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
2313 |
-
|
2314 |
-
// Close href.
|
2315 |
-
$html_share_buttons .= '</a>';
|
2316 |
-
|
2317 |
-
// Add closing li if plus.
|
2318 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2319 |
-
$html_share_buttons .= '</li>';
|
2320 |
-
}
|
2321 |
-
|
2322 |
-
// Return share buttons.
|
2323 |
-
return $html_share_buttons;
|
2324 |
-
}
|
2325 |
-
|
2326 |
-
/**
|
2327 |
-
* Get xing button.
|
2328 |
-
*
|
2329 |
-
* @param array $arr_settings The current ssba settings.
|
2330 |
-
* @param string $url_current_page The current page url.
|
2331 |
-
* @param string $str_page_title The page title.
|
2332 |
-
* @param bool $boo_show_share_count Show share count or not.
|
2333 |
-
*
|
2334 |
-
* @return string
|
2335 |
-
*/
|
2336 |
-
public function ssba_xing( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count ) {
|
2337 |
-
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
2338 |
-
$network = 'Xing';
|
2339 |
-
$target =
|
2340 |
-
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
2341 |
-
&& 'Y' === $arr_settings['ssba_new_buttons']
|
2342 |
-
&& ! isset(
|
2343 |
-
$arr_settings['bar_call']
|
2344 |
-
) )
|
2345 |
-
||
|
2346 |
-
( 'Y' === $arr_settings['ssba_share_new_window']
|
2347 |
-
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
2348 |
-
&& ! isset(
|
2349 |
-
$arr_settings['bar_call']
|
2350 |
-
) )
|
2351 |
-
||
|
2352 |
-
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
2353 |
-
&& isset(
|
2354 |
-
$arr_settings['bar_call']
|
2355 |
-
) ) ? ' target="_blank" ' : '';
|
2356 |
-
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-xing ssbp-btn' : '';
|
2357 |
-
$html_share_buttons = '';
|
2358 |
-
|
2359 |
-
// Add li if plus.
|
2360 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2361 |
-
$html_share_buttons .= '<li class="ssbp-li--xing">';
|
2362 |
-
}
|
2363 |
-
|
2364 |
-
// Xing share link.
|
2365 |
-
$html_share_buttons .= '<a data-site="xing" class="ssba_xing_share ssba_share_link' . esc_attr( $plus_class ) . '" href="https://www.xing.com/spi/shares/new?url=' . $url_current_page . '" ' . esc_attr( $target . $nofollow ) . '>';
|
2366 |
-
|
2367 |
-
// If image set is not custom.
|
2368 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
2369 |
-
// Show ssba image.
|
2370 |
-
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/xing.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Xing" class="ssba ssba-img" alt="Share on Xing" />';
|
2371 |
-
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
2372 |
-
// Show custom image.
|
2373 |
-
$html_share_buttons .= '<img src="' . esc_url( $arr_settings['ssba_custom_xing'] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="Xing" class="ssba ssba-img" alt="Share on Xing" />';
|
2374 |
-
}
|
2375 |
-
|
2376 |
-
// Close href.
|
2377 |
-
$html_share_buttons .= '<div title="' . $network . '" class="ssbp-text">' . $network . '</div>';
|
2378 |
-
|
2379 |
-
// Close href.
|
2380 |
-
$html_share_buttons .= '</a>';
|
2381 |
-
|
2382 |
-
// Add closing li if plus.
|
2383 |
-
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
2384 |
-
$html_share_buttons .= '</li>';
|
2385 |
-
}
|
2386 |
-
|
2387 |
-
// Return share buttons.
|
2388 |
-
return $html_share_buttons;
|
2389 |
}
|
2390 |
}
|
49 |
$this->admin_panel = $admin_panel;
|
50 |
}
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
/**
|
53 |
* Format the returned number.
|
54 |
*
|
127 |
}
|
128 |
|
129 |
// Placement on pages/posts/categories/archives/homepage.
|
130 |
+
if ( (
|
131 |
+
false === is_home() &&
|
132 |
+
false === is_front_page() &&
|
133 |
+
true === is_page() &&
|
134 |
+
(
|
135 |
+
'Y' !== $arr_settings['ssba_new_buttons'] &&
|
136 |
+
'Y' === $arr_settings['ssba_pages'] ||
|
137 |
+
(
|
138 |
+
'Y' === $arr_settings['ssba_new_buttons'] &&
|
139 |
+
'Y' === $arr_settings['ssba_plus_pages']
|
140 |
+
)
|
141 |
+
) )
|
142 |
||
|
143 |
+
(
|
144 |
+
true === is_single() &&
|
145 |
+
(
|
146 |
+
'Y' !== $arr_settings['ssba_new_buttons'] &&
|
147 |
+
'Y' === $arr_settings['ssba_posts'] ||
|
148 |
+
(
|
149 |
+
'Y' === $arr_settings['ssba_new_buttons'] &&
|
150 |
+
'Y' === $arr_settings['ssba_plus_posts']
|
151 |
+
)
|
152 |
+
)
|
153 |
+
)
|
154 |
||
|
155 |
+
(
|
156 |
+
true === is_category() &&
|
157 |
+
(
|
158 |
+
'Y' !== $arr_settings['ssba_new_buttons'] &&
|
159 |
+
'Y' === $arr_settings['ssba_cats_archs'] ||
|
160 |
+
(
|
161 |
+
'Y' === $arr_settings['ssba_new_buttons'] &&
|
162 |
+
'Y' === $arr_settings['ssba_plus_cats_archs']
|
163 |
+
)
|
164 |
+
)
|
165 |
+
)
|
166 |
||
|
167 |
+
(
|
168 |
+
true === is_archive() &&
|
169 |
+
(
|
170 |
+
'Y' !== $arr_settings['ssba_new_buttons'] &&
|
171 |
+
'Y' === $arr_settings['ssba_cats_archs'] ||
|
172 |
+
(
|
173 |
+
'Y' === $arr_settings['ssba_new_buttons'] &&
|
174 |
+
'Y' === $arr_settings['ssba_plus_cats_archs']
|
175 |
+
)
|
176 |
+
)
|
177 |
+
)
|
178 |
||
|
179 |
+
(
|
180 |
+
(
|
181 |
+
true === is_home() ||
|
182 |
+
true === is_front_page()
|
183 |
+
) &&
|
184 |
+
(
|
185 |
+
'Y' !== $arr_settings['ssba_new_buttons'] &&
|
186 |
+
'Y' === $arr_settings['ssba_homepage'] ||
|
187 |
+
(
|
188 |
+
'Y' === $arr_settings['ssba_new_buttons'] &&
|
189 |
+
'Y' === $arr_settings['ssba_plus_homepage']
|
190 |
+
)
|
191 |
+
)
|
192 |
+
)
|
193 |
||
|
194 |
$boo_shortcode
|
195 |
) {
|
484 |
|
485 |
// For each included button.
|
486 |
foreach ( $arr_selected_ssba as $str_selected ) {
|
|
|
|
|
487 |
// Add a list item for each selected option.
|
488 |
+
$html_share_buttons .= $this->get_button( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count, $str_selected );
|
489 |
}
|
490 |
|
491 |
if ( 'Y' === $arr_settings['ssba_new_buttons'] ) {
|
497 |
return $html_share_buttons;
|
498 |
}
|
499 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
/**
|
501 |
* Get set share buttons.
|
502 |
*
|
551 |
$str_get_button = 'ssba_' . $str_selected;
|
552 |
|
553 |
// Add a list item for each selected option.
|
554 |
+
$html_share_buttons .= $this->get_button( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count, $str_selected, 'bar' );
|
555 |
}
|
556 |
}
|
557 |
}
|
561 |
}
|
562 |
|
563 |
/**
|
564 |
+
* Get button.
|
565 |
*
|
566 |
* @param array $arr_settings The current ssba settings.
|
567 |
* @param string $url_current_page The current page url.
|
568 |
* @param string $str_page_title The page title.
|
569 |
* @param bool $boo_show_share_count Show share count or not.
|
570 |
+
* @param string $button_name Button name string.
|
571 |
+
* @param string $button_type Button type string.
|
572 |
+
*
|
573 |
+
* @return string
|
574 |
+
*/
|
575 |
+
public function get_button( $arr_settings, $url_current_page, $str_page_title, $boo_show_share_count, $button_name, $button_type = 'plus' ) {
|
576 |
+
$nofollow = 'Y' === $arr_settings['ssba_rel_nofollow'] ? ' rel="nofollow"' : '';
|
577 |
+
$network = $button_name;
|
578 |
+
$flattr_id = isset( $arr_settings['ssba_plus_flattr_user_id'] ) ? $arr_settings['ssba_plus_flattr_user_id'] : '';
|
579 |
+
$network_url = self::get_share_url( $button_name, $str_page_title, '', $url_current_page, $flattr_id );
|
580 |
+
$network_color = self::get_button_color( $button_name );
|
581 |
+
$network_full = ucwords( str_replace( '_', ' ', $button_name ) );
|
582 |
+
$image_name = str_replace( array( 'get_pocket', 'diggit', '_' ), array( 'pocket', 'digg', '' ), $button_name );
|
583 |
+
$icon_code = self::get_button_image( $button_name );
|
584 |
+
$icon_white = self::get_button_image( $button_name, 'white' );
|
585 |
+
$print = 'print' === $button_name ? 'onclick="window.print()"' : '';
|
586 |
+
$target =
|
587 |
+
( 'Y' === $arr_settings['ssba_plus_share_new_window']
|
588 |
+
&& 'Y' === $arr_settings['ssba_new_buttons']
|
589 |
+
&& ! isset(
|
590 |
+
$arr_settings['bar_call']
|
591 |
+
) )
|
592 |
+
||
|
593 |
+
( 'Y' === $arr_settings['ssba_share_new_window']
|
594 |
+
&& 'Y' !== $arr_settings['ssba_new_buttons']
|
595 |
+
&& ! isset(
|
596 |
+
$arr_settings['bar_call']
|
597 |
+
) )
|
598 |
+
||
|
599 |
+
( 'Y' === $arr_settings['ssba_bar_share_new_window']
|
600 |
+
&& isset(
|
601 |
+
$arr_settings['bar_call']
|
602 |
+
) ) ? ' target="_blank" ' : '';
|
603 |
+
$plus_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? " ssbp-{$button_name} ssbp-btn" : '';
|
604 |
+
$button_back = $arr_settings['ssba_plus_button_color'] ? esc_attr( 'background: ' . $arr_settings[ "ssba_{$button_type}_button_color" ] . ';' ) : '';
|
605 |
+
$count_class = 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ? ' ssbp-each-share' : ' ssba_sharecount';
|
606 |
+
|
607 |
$html_share_buttons = '';
|
608 |
|
609 |
+
// Add li if plus.
|
610 |
+
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
611 |
+
$html_share_buttons .= "<li class='ssbp-li--{$button_name}'>";
|
612 |
+
}
|
|
|
|
|
613 |
|
614 |
+
// Share link.
|
615 |
+
$html_share_buttons .= '<a data-site="' . $button_name . '" class="ssba_' . $button_name . '_share ssba_share_link' . esc_attr( $plus_class ) . '" href="' . $network_url . '" ' . esc_attr( $target . $nofollow ) . ' style="color:' . esc_attr( $network_color ) . '; background-color: ' . esc_attr( $network_color ) . '; height: ' . esc_attr( $arr_settings['ssba_plus_height'] ) . 'px; width: ' . esc_attr( $arr_settings['ssba_plus_width'] ) . 'px; ' . $button_back . '" ' . $print . '>';
|
616 |
|
617 |
+
// If image set is not custom.
|
618 |
+
if ( 'custom' !== $arr_settings['ssba_image_set'] && 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) {
|
619 |
+
// Show ssba image.
|
620 |
+
$html_share_buttons .= '<img src="' . plugins_url() . '/simple-share-buttons-adder/buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/' . $button_name . '.png" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="' . $button_name . '" class="ssba ssba-img" alt="Share on ' . $button_name . '" />';
|
621 |
+
} elseif ( 'Y' !== $arr_settings['ssba_new_buttons'] && ! isset( $arr_settings['bar_call'] ) ) { // If using custom images.
|
622 |
+
// Show custom image.
|
623 |
+
$html_share_buttons .= '<img src="' . esc_url( $arr_settings[ 'ssba_custom_' . $button_name ] ) . '" style="width: ' . esc_html( $arr_settings['ssba_size'] ) . 'px;" title="' . $button_name . '" class="ssba ssba-img" alt="Share on ' . $button_name . '" />';
|
624 |
+
}
|
625 |
+
|
626 |
+
$html_share_buttons .= '<span>';
|
627 |
+
$html_share_buttons .= $icon_code;
|
628 |
+
$html_share_buttons .= '</span>';
|
629 |
+
$html_share_buttons .= '<span class="color-icon">';
|
630 |
+
$html_share_buttons .= $icon_white;
|
631 |
+
$html_share_buttons .= '</span>';
|
632 |
+
|
633 |
+
// Close href.
|
634 |
+
$html_share_buttons .= '<div title="' . $network_full . '" class="ssbp-text">' . $network_full . '</div>';
|
635 |
+
|
636 |
+
// Get and add share count.
|
637 |
+
if ( ( ( 'Y' === $arr_settings['ssba_show_share_count'] && 'Y' !== $arr_settings['ssba_new_buttons'] )
|
638 |
+
||
|
639 |
+
( 'Y' === $arr_settings['ssba_plus_show_share_count'] && 'Y' === $arr_settings['ssba_new_buttons'] )
|
640 |
+
||
|
641 |
+
( 'Y' === $arr_settings['ssba_bar_show_share_count'] && isset( $arr_settings['bar_call'] )
|
642 |
+
)
|
643 |
+
&& $boo_show_share_count
|
644 |
+
) ) {
|
645 |
+
$html_share_buttons .= '<span class="' . esc_attr( $count_class ) . '">' . esc_html(
|
646 |
+
$this->get_share_count(
|
647 |
+
$url_current_page,
|
648 |
+
$arr_settings,
|
649 |
+
$button_name
|
650 |
+
)
|
651 |
+
) . '</span>';
|
652 |
+
}
|
653 |
+
// Close href.
|
654 |
+
$html_share_buttons .= '</a>';
|
655 |
+
|
656 |
+
// Add closing li if plus.
|
657 |
+
if ( 'Y' === $arr_settings['ssba_new_buttons'] || isset( $arr_settings['bar_call'] ) ) {
|
658 |
+
$html_share_buttons .= '</li>';
|
659 |
}
|
660 |
|
661 |
+
// Return share buttons.
|
662 |
return $html_share_buttons;
|
663 |
}
|
664 |
|
667 |
*
|
668 |
* @param string $url_current_page Current url.
|
669 |
* @param array $arr_settings Current ssba settings.
|
670 |
+
* @param string $button_name The button name.
|
671 |
*
|
672 |
* @return string
|
673 |
*/
|
674 |
+
public function get_share_count( $url_current_page, $arr_settings, $button_name ) {
|
675 |
+
$cache_key = sprintf(
|
676 |
+
$button_name . '_sharecount_%s',
|
677 |
wp_hash( $url_current_page )
|
678 |
);
|
679 |
+
$share_count_url = $this->get_share_count_url( $button_name );
|
680 |
|
681 |
// Get the longer cached value from the Transient API.
|
682 |
$long_cached_count = get_transient( "ssba_{$cache_key}" );
|
692 |
( isset( $arr_settings['bar_sharedcount_enabled'] ) && 'Y' === $arr_settings['bar_sharedcount_enabled'] && isset( $arr_settings['bar_call'] )
|
693 |
)
|
694 |
) ) {
|
|
|
695 |
$shared_plan = 'Y' !== $arr_settings['ssba_new_buttons'] ? $arr_settings['sharedcount_plan'] : '';
|
696 |
$shared_plan = '' === $shared_plan && 'Y' === $arr_settings['ssba_new_buttons'] ? $arr_settings['plus_sharedcount_plan'] : '';
|
697 |
$shared_plan = isset( $arr_settings['bar_call'] ) ? $arr_settings['bar_sharedcount_plan'] : '';
|
713 |
$shared_resp = json_decode( $sharedcount['body'], true );
|
714 |
$sharedcount = $long_cached_count;
|
715 |
|
716 |
+
if ( isset( $shared_resp[ $button_name ]['share_count'] ) ) {
|
717 |
+
$sharedcount = (int) $shared_resp[ $button_name ]['share_count'];
|
718 |
wp_cache_set( $cache_key, $sharedcount, 'ssba', MINUTE_IN_SECONDS * 2 );
|
719 |
set_transient( "ssba_{$cache_key}", $sharedcount, DAY_IN_SECONDS );
|
720 |
}
|
722 |
return $this->ssba_format_number( $sharedcount );
|
723 |
} else {
|
724 |
// Get results from facebook.
|
725 |
+
$html_share_details = wp_safe_remote_get(
|
726 |
+
$share_count_url . $url_current_page,
|
727 |
array(
|
728 |
'timeout' => 6,
|
729 |
)
|
730 |
);
|
731 |
|
732 |
// If no error.
|
733 |
+
if ( is_wp_error( $html_share_details ) ) {
|
734 |
return $this->ssba_format_number( $long_cached_count );
|
735 |
}
|
736 |
|
737 |
// Decode and return count.
|
738 |
+
$arr_share_details = json_decode( $html_share_details['body'], true );
|
739 |
+
$int_share_count = $long_cached_count;
|
740 |
|
741 |
+
if ( isset( $arr_share_details['share']['share_count'] ) ) {
|
742 |
+
$int_facebook_share_count = (int) $arr_share_details['share']['share_count'];
|
743 |
|
744 |
+
wp_cache_set( $cache_key, $int_share_count, 'ssba', MINUTE_IN_SECONDS * 2 );
|
745 |
+
set_transient( "ssba_{$cache_key}", $int_share_count, DAY_IN_SECONDS );
|
746 |
}
|
747 |
|
748 |
+
return $this->ssba_format_number( $int_share_count );
|
749 |
}
|
750 |
}
|
751 |
|
752 |
/**
|
753 |
+
* Get share count URL.
|
754 |
*
|
755 |
+
* @param string $button Button string name.
|
|
|
|
|
|
|
756 |
*
|
757 |
+
* @return string Share count URL for button.
|
758 |
*/
|
759 |
+
public function get_share_count_url( $button ) {
|
760 |
+
$count_urls = array(
|
761 |
+
'facebook' => 'http://graph.facebook.com/',
|
762 |
+
'reddit' => 'http://www.reddit.com/api/info.json?url=',
|
763 |
+
'pinterest' => 'https://api.pinterest.com/v1/urls/count.json?url=',
|
764 |
+
'linkedin' => 'http://www.linkedin.com/countserv/count/share?url=',
|
765 |
+
'stumbleupon' => 'http://www.stumbleupon.com/services/1.01/badge.getinfo?url=',
|
766 |
+
'tumblr' => 'http://api.tumblr.com/v2/share/stats?url=',
|
767 |
+
'yummly' => 'http://www.yummly.com/services/yum-count?url=',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
);
|
769 |
|
770 |
+
return true === isset( $count_urls[ $button ] ) ? $count_urls[ $button ] : '';
|
771 |
+
}
|
772 |
+
|
773 |
+
/**
|
774 |
+
* Get button color.
|
775 |
+
*
|
776 |
+
* @param string $button Button name.
|
777 |
+
*
|
778 |
+
* @return string Button color.
|
779 |
+
*/
|
780 |
+
public static function get_button_color( $button ) {
|
781 |
+
$colors = array(
|
782 |
+
'airbnb' => '#FF5A5F',
|
783 |
+
'amazon' => '#FFB300',
|
784 |
+
'blogger' => '#ff8000',
|
785 |
+
'blm' => '#000000',
|
786 |
+
'buffer' => '#323B43',
|
787 |
+
'copy' => '#14682B',
|
788 |
+
'delicious' => '#205cc0',
|
789 |
+
'diaspora' => '#000000',
|
790 |
+
'diggit' => '#262626',
|
791 |
+
'douban' => '#2E963D',
|
792 |
+
'email' => '#7d7d7d',
|
793 |
+
'evernote' => '#5BA525',
|
794 |
+
'facebook' => '#4267B2',
|
795 |
+
'flattr' => '#f67c1a',
|
796 |
+
'flickr' => '#ff0084',
|
797 |
+
'flipboard' => '#e12828',
|
798 |
+
'get_pocket' => '#ef4056',
|
799 |
+
'gmail' => '#D44638',
|
800 |
+
'googlebookmarks' => '#4285F4',
|
801 |
+
'hackernews' => '#ff4000',
|
802 |
+
'instagram' => '#bc2a8d',
|
803 |
+
'instapaper' => '#000000',
|
804 |
+
'iorbix' => '#364447',
|
805 |
+
'kakao' => '#F9DD4A',
|
806 |
+
'kindleit' => '#363C3D',
|
807 |
+
'kooapp' => '#FACD00',
|
808 |
+
'line' => '#00c300',
|
809 |
+
'linkedin' => '#0077b5',
|
810 |
+
'livejournal' => '#00b0ea',
|
811 |
+
'mailru' => '#168de2',
|
812 |
+
'medium' => '#333333',
|
813 |
+
'meneame' => '#ff6400',
|
814 |
+
'messenger' => '#448AFF',
|
815 |
+
'odnoklassniki' => '#d7772d',
|
816 |
+
'outlook' => '#3070CB',
|
817 |
+
'patreon' => '#F96854',
|
818 |
+
'pinterest' => '#CB2027',
|
819 |
+
'print' => '#222222',
|
820 |
+
'qzone' => '#F1C40F',
|
821 |
+
'quora' => '#a62100',
|
822 |
+
'refind' => '#4286f4',
|
823 |
+
'reddit' => '#ff4500',
|
824 |
+
'renren' => '#005baa',
|
825 |
+
'skype' => '#00aff0',
|
826 |
+
'snapchat' => '#fffc00',
|
827 |
+
'stumbleupon' => '#eb4924',
|
828 |
+
'soundcloud' => '#ff8800',
|
829 |
+
'spotify' => '#1ED760',
|
830 |
+
'surfingbird' => '#6dd3ff',
|
831 |
+
'telegram' => '#0088cc',
|
832 |
+
'tencentqq' => '#5790F7',
|
833 |
+
'threema' => '#000000',
|
834 |
+
'trello' => '#0D63DE',
|
835 |
+
'tumblr' => '#32506d',
|
836 |
+
'twitch' => '#6441A4',
|
837 |
+
'twitter' => '#55acee',
|
838 |
+
'vk' => '#4c6c91',
|
839 |
+
'viber' => '#645EA4',
|
840 |
+
'wechat' => '#4EC034',
|
841 |
+
'weibo' => '#ff9933',
|
842 |
+
'whatsapp' => '#25d366',
|
843 |
+
'wordpress' => '#21759b',
|
844 |
+
'xing' => '#1a7576',
|
845 |
+
'yelp' => '#d32323',
|
846 |
+
'youtube' => '#FF0000',
|
847 |
+
'yahoo_mail' => '#720e9e',
|
848 |
+
'yummly' => '#E16120',
|
849 |
+
);
|
850 |
|
851 |
+
return isset( $colors[ $button ] ) ? $colors[ $button ] : '';
|
852 |
+
}
|
853 |
+
|
854 |
+
/**
|
855 |
+
* Get share URL.
|
856 |
+
*
|
857 |
+
* @param string $button Button name string.
|
858 |
+
* @param string $title Title string.
|
859 |
+
* @param string $description Description string.
|
860 |
+
* @param string $share_url Share URL string.
|
861 |
+
* @param string $user_id User ID string.
|
862 |
+
* @param string $subject Subject string.
|
863 |
+
* @param string $message Message string.
|
864 |
+
* @param string $image Image string.
|
865 |
+
* @param string $username Username string.
|
866 |
+
* @param string $bookmarklet Bookmarklet string.
|
867 |
+
* @param string $agg Agg string.
|
868 |
+
* @param string $popup Popup string.
|
869 |
+
* @param string $viber Viber string.
|
870 |
+
*
|
871 |
+
* @return string
|
872 |
+
*/
|
873 |
+
public static function get_share_url(
|
874 |
+
$button,
|
875 |
+
$title = '',
|
876 |
+
$description = '',
|
877 |
+
$share_url = '',
|
878 |
+
$user_id = '',
|
879 |
+
$subject = '',
|
880 |
+
$message = '',
|
881 |
+
$image = '',
|
882 |
+
$username = '',
|
883 |
+
$bookmarklet = '',
|
884 |
+
$agg = '',
|
885 |
+
$popup = '',
|
886 |
+
$viber = ''
|
887 |
+
) {
|
888 |
+
$share_urls = array(
|
889 |
+
'blogger' => "https://www.blogger.com/blog-this.g?n={$title}&t={$description}&u={$share_url}",
|
890 |
+
'buffer' => "https://buffer.com/add?text={$title}&url={$share_url}",
|
891 |
+
'diaspora' => "https://share.diasporafoundation.org/?title={$title}&url={$share_url}",
|
892 |
+
'delicious' => "https://del.icio.us/save?provider=sharethis&title={$title}&url={$share_url}&v=5",
|
893 |
+
'diggit' => "https://digg.com/submit?url={$share_url}",
|
894 |
+
'douban' => "http://www.douban.com/recommend/?title={$title}&url={$share_url}",
|
895 |
+
'email' => "mailto:?subject={$subject}&body={$message}",
|
896 |
+
'evernote' => "http://www.evernote.com/clip.action?title={$title}&url={$share_url}",
|
897 |
+
'facebook' => "https://www.facebook.com/sharer.php?t={$title}&u={$share_url}",
|
898 |
+
'flipboard' => "https://share.flipboard.com/bookmarklet/popout?ext=sharethis&title={$title}&url={$share_url}&utm_campaign=widgets&utm_content=hostname&utm_source=sharethis&v=2",
|
899 |
+
'flattr' => "https://flattr.com/submit/auto?user={$user_id}&title={$title}&url={$share_url}",
|
900 |
+
'get_pocket' => "https://getpocket.com/edit?url={$share_url}",
|
901 |
+
'gmail' => "https://mail.google.com/mail/?view=cm&to=&su{$title}&body{$share_url}&bcc=&cc=",
|
902 |
+
'googlebookmarks' => "https://www.google.com/bookmarks/mark?op=edit&bkmk={$share_url}&title{$title}&annotation{$description}",
|
903 |
+
'hackernews' => "https://news.ycombinator.com/submitlink?u={$share_url}&t={$title}",
|
904 |
+
'instapaper' => "http://www.instapaper.com/edit?url={$share_url}&title={$title}&description={$description}",
|
905 |
+
'iorbix' => "https://iorbix.com/m-share?url={$share_url}&title={$title}",
|
906 |
+
'kakao' => "https://story.kakao.com/share?url={$share_url}",
|
907 |
+
'kindleit' => "https://pushtokindle.fivefilters.org/send.php?url={$share_url}",
|
908 |
+
'kooapp' => "https://www.kooapp.com/create?title={$title}&link={$share_url}",
|
909 |
+
'line' => "https://lineit.line.me/share/ui?url={$share_url}&text{$title}",
|
910 |
+
'linkedin' => "https://www.linkedin.com/shareArticle?title={$title}&url={$share_url}",
|
911 |
+
'livejournal' => "https://www.livejournal.com/update.bml?event={$share_url}&subject{$title}",
|
912 |
+
'mailru' => "https://connect.mail.ru/share?share_url={$share_url}",
|
913 |
+
'meneame' => "https://meneame.net/submit.php?url={$share_url}",
|
914 |
+
'messenger' => "https://www.facebook.com/dialog/send?link={$share_url}&app_id=291494419107518&redirect_uri=https://www.sharethis.com",
|
915 |
+
'odnoklassniki' => "https://connect.ok.ru/dk?st.cmd=WidgetSharePreview&st.shareUrl{$share_url}",
|
916 |
+
'outlook' => "https://outlook.live.com/mail/deeplink/compose?path=mail inbox&subject={$subject}&body={$message}",
|
917 |
+
'pinterest' => "https://pinterest.com/pin/create/button/?description={$title}&media={$image}&url={$share_url}",
|
918 |
+
'qzone' => "http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url={$share_url}",
|
919 |
+
'print' => '#',
|
920 |
+
'reddit' => "https://reddit.com/submit?title={$title}&url={$share_url}",
|
921 |
+
'refind' => "https://refind.com?url={$share_url}",
|
922 |
+
'renren' => "http://widget.renren.com/dialog/share?resourceUrl={$share_url}&srcUrl={$share_url}&title={$title}&description={$description}",
|
923 |
+
'skype' => "https://web.skype.com/share?url={$share_url}&text{$title}",
|
924 |
+
'snapchat' => "https://snapchat.com/scan?attachmentUrl={$share_url}&utm_source=sharethis",
|
925 |
+
'surfingbird' => "http://surfingbird.ru/share?url={$share_url}&description={$description}&title={$title}",
|
926 |
+
'telegram' => "https://t.me/share/url?url={$share_url}&text={$title}&to=",
|
927 |
+
'stumbleupon' => "http://www.stumbleupon.com/submit?url={$share_url}&title={$title}",
|
928 |
+
'tencentqq' => "https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url={$share_url}&title={$title}&summary={$share_url}&desc={$description}&pics={$image}",
|
929 |
+
'threema' => "threema://compose?text={$share_url}&id=",
|
930 |
+
'trello' => "https://trello.com/add-card?mode={$popup}&url={$share_url}&desc={$description}",
|
931 |
+
'tumblr' => "https://www.tumblr.com/share?t={$title}&u={$share_url}&v=3",
|
932 |
+
'twitter' => "https://twitter.com/intent/tweet?text={$title}&url={$share_url}&via={$username}",
|
933 |
+
'vk' => "https://vk.com/share.php?url={$share_url}",
|
934 |
+
'viber' => "viber://forward?text={$share_url}&url={$viber}",
|
935 |
+
'wechat' => "https://api.qrserver.com/v1/create-qr-code/?data={$share_url}&size=154x154",
|
936 |
+
'weibo' => "http://service.weibo.com/share/share.php?title={$title}&url={$share_url}&pic={$image}",
|
937 |
+
'whatsapp' => "https://web.whatsapp.com/send?text={$share_url}",
|
938 |
+
'wordpress' => "http://wordpress.com/wp-admin/press-this.php?u={$share_url}&t={$title}&s{$description}i=",
|
939 |
+
'yahoo_mail' => "http://compose.mail.yahoo.com/?to=&subject={$title}&body={$share_url}",
|
940 |
+
'yummly' => "https://www.yummly.com/urb/verify?url={$share_url}&title={$title}&urbtype={$bookmarklet}&type={$agg}&vendor=sharethis&image={$image}",
|
941 |
+
'xing' => "https://www.xing.com/spi/shares/new?url={$share_url}",
|
942 |
+
);
|
943 |
|
944 |
+
return isset( $share_urls[ $button ] ) ? $share_urls[ $button ] : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
945 |
}
|
946 |
|
947 |
/**
|
948 |
+
* Get button image.
|
949 |
*
|
950 |
+
* @param string $button Button name string.
|
951 |
+
* @param boolean $white Whether to fetch the white version of the icon.
|
|
|
|
|
952 |
*
|
953 |
+
* @return string SVG image body.
|
954 |
*/
|
955 |
+
public static function get_button_image( $button, $white = false ) {
|
956 |
+
$transient_name = sprintf(
|
957 |
+
'ssba_get_button_image_%s_%s',
|
958 |
+
$button,
|
959 |
+
false !== $white ? 'white' : 'default'
|
960 |
+
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
961 |
|
962 |
+
$icon = get_transient( $transient_name );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
963 |
|
964 |
+
if ( false === $icon ) {
|
965 |
+
$button_name = str_replace(
|
966 |
+
array(
|
967 |
+
'get_pocket',
|
968 |
+
'diggit',
|
969 |
+
'_',
|
970 |
+
),
|
971 |
+
array(
|
972 |
+
'pocket',
|
973 |
+
'digg',
|
974 |
+
'',
|
975 |
+
),
|
976 |
+
$button
|
977 |
+
);
|
978 |
|
979 |
+
if ( false === $white ) {
|
980 |
+
$icon = wp_remote_retrieve_body( wp_remote_get( 'https://platform-cdn.sharethis.com/img/' . $button_name . '.svg' ) );
|
981 |
+
} else {
|
982 |
+
$icon = wp_remote_retrieve_body( wp_remote_get( 'https://platform-cdn.sharethis.com/img/' . $button_name . '-white.svg' ) );
|
983 |
+
}
|
984 |
|
985 |
+
set_transient( $transient_name, $icon );
|
|
|
|
|
986 |
}
|
987 |
|
988 |
+
return $icon;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
989 |
}
|
990 |
}
|
php/class-database.php
CHANGED
@@ -509,6 +509,93 @@ class Database {
|
|
509 |
'yummly' => array(
|
510 |
'full_name' => esc_html__( 'Yummly', 'simple-share-buttons-adder' ),
|
511 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
512 |
);
|
513 |
|
514 |
// Helper array for ssbp.
|
509 |
'yummly' => array(
|
510 |
'full_name' => esc_html__( 'Yummly', 'simple-share-buttons-adder' ),
|
511 |
),
|
512 |
+
'blogger' => array(
|
513 |
+
'full_name' => esc_html__( 'Blogger', 'simple-share-buttons-adder' ),
|
514 |
+
),
|
515 |
+
'copy' => array(
|
516 |
+
'full_name' => esc_html__( 'Copy', 'simple-share-buttons-adder' ),
|
517 |
+
),
|
518 |
+
'diaspora' => array(
|
519 |
+
'full_name' => esc_html__( 'Diaspora', 'simple-share-buttons-adder' ),
|
520 |
+
),
|
521 |
+
'douban' => array(
|
522 |
+
'full_name' => esc_html__( 'Douban', 'simple-share-buttons-adder' ),
|
523 |
+
),
|
524 |
+
'evernote' => array(
|
525 |
+
'full_name' => esc_html__( 'Evernote', 'simple-share-buttons-adder' ),
|
526 |
+
),
|
527 |
+
'get_pocket' => array(
|
528 |
+
'full_name' => esc_html__( 'Get Pocket', 'simple-share-buttons-adder' ),
|
529 |
+
),
|
530 |
+
'gmail' => array(
|
531 |
+
'full_name' => esc_html__( 'gmail', 'simple-share-buttons-adder' ),
|
532 |
+
),
|
533 |
+
'hackernews' => array(
|
534 |
+
'full_name' => esc_html__( 'Hacker News', 'simple-share-buttons-adder' ),
|
535 |
+
),
|
536 |
+
'instapaper' => array(
|
537 |
+
'full_name' => esc_html__( 'Instapaper', 'simple-share-buttons-adder' ),
|
538 |
+
),
|
539 |
+
'iorbix' => array(
|
540 |
+
'full_name' => esc_html__( 'Iorbix', 'simple-share-buttons-adder' ),
|
541 |
+
),
|
542 |
+
'kakao' => array(
|
543 |
+
'full_name' => esc_html__( 'Kakao', 'simple-share-buttons-adder' ),
|
544 |
+
),
|
545 |
+
'kindleit' => array(
|
546 |
+
'full_name' => esc_html__( 'Kindleit', 'simple-share-buttons-adder' ),
|
547 |
+
),
|
548 |
+
'kooapp' => array(
|
549 |
+
'full_name' => esc_html__( 'Kooapp', 'simple-share-buttons-adder' ),
|
550 |
+
),
|
551 |
+
'livejournal' => array(
|
552 |
+
'full_name' => esc_html__( 'Live Journal', 'simple-share-buttons-adder' ),
|
553 |
+
),
|
554 |
+
'mailru' => array(
|
555 |
+
'full_name' => esc_html__( 'Mailru', 'simple-share-buttons-adder' ),
|
556 |
+
),
|
557 |
+
'meneame' => array(
|
558 |
+
'full_name' => esc_html__( 'Meneame', 'simple-share-buttons-adder' ),
|
559 |
+
),
|
560 |
+
'messenger' => array(
|
561 |
+
'full_name' => esc_html__( 'Messenger', 'simple-share-buttons-adder' ),
|
562 |
+
),
|
563 |
+
'outlook' => array(
|
564 |
+
'full_name' => esc_html__( 'Outlook', 'simple-share-buttons-adder' ),
|
565 |
+
),
|
566 |
+
'qzone' => array(
|
567 |
+
'full_name' => esc_html__( 'Qzone', 'simple-share-buttons-adder' ),
|
568 |
+
),
|
569 |
+
'refind' => array(
|
570 |
+
'full_name' => esc_html__( 'Refind', 'simple-share-buttons-adder' ),
|
571 |
+
),
|
572 |
+
'renren' => array(
|
573 |
+
'full_name' => esc_html__( 'Renren', 'simple-share-buttons-adder' ),
|
574 |
+
),
|
575 |
+
'surfingbird' => array(
|
576 |
+
'full_name' => esc_html__( 'Surfing Bird', 'simple-share-buttons-adder' ),
|
577 |
+
),
|
578 |
+
'tencentqq' => array(
|
579 |
+
'full_name' => esc_html__( 'Tencent QQ', 'simple-share-buttons-adder' ),
|
580 |
+
),
|
581 |
+
'threema' => array(
|
582 |
+
'full_name' => esc_html__( 'Threema', 'simple-share-buttons-adder' ),
|
583 |
+
),
|
584 |
+
'trello' => array(
|
585 |
+
'full_name' => esc_html__( 'Trello', 'simple-share-buttons-adder' ),
|
586 |
+
),
|
587 |
+
'viber' => array(
|
588 |
+
'full_name' => esc_html__( 'Viber', 'simple-share-buttons-adder' ),
|
589 |
+
),
|
590 |
+
'wechat' => array(
|
591 |
+
'full_name' => esc_html__( 'Wechat', 'simple-share-buttons-adder' ),
|
592 |
+
),
|
593 |
+
'wordpress' => array(
|
594 |
+
'full_name' => esc_html__( 'WordPress', 'simple-share-buttons-adder' ),
|
595 |
+
),
|
596 |
+
'yahoo_mail' => array(
|
597 |
+
'full_name' => esc_html__( 'Yahoo Mail', 'simple-share-buttons-adder' ),
|
598 |
+
),
|
599 |
);
|
600 |
|
601 |
// Helper array for ssbp.
|
php/class-styles.php
CHANGED
@@ -277,14 +277,14 @@ class Styles {
|
|
277 |
// Plus styles.
|
278 |
$plus_height = '' !== $arr_settings['ssba_plus_height'] ? 'height: ' . $arr_settings['ssba_plus_height'] . 'px!important;' : 'height: 48px!important;';
|
279 |
$plus_width = '' !== $arr_settings['ssba_plus_width'] ? 'width: ' . $arr_settings['ssba_plus_width'] . 'px!important;' : 'width: 48px!important;';
|
280 |
-
$plus_icon = '' !== $arr_settings['ssba_plus_icon_size'] ? 'line-' . $plus_height . ';
|
281 |
$plus_margin = '' !== $arr_settings['ssba_plus_margin'] ? 'margin-left: ' . $arr_settings['ssba_plus_margin'] . 'px!important;' : 'margin-left: 7px!important;';
|
282 |
$plus_font_style = '' !== $arr_settings['ssba_plus_font_family'] ? 'font-family: ' . $arr_settings['ssba_plus_font_family'] . ';' : 'font-family: inherit;';
|
283 |
$plus_font_size = '' !== $arr_settings['ssba_plus_font_size'] ? 'font-size: ' . $arr_settings['ssba_plus_font_size'] . 'px;' : 'font-size: 12px;';
|
284 |
$plus_font_weight = '' !== $arr_settings['ssba_plus_font_weight'] ? 'font-weight: ' . $arr_settings['ssba_plus_font_weight'] . ';' : 'font-weight: normal;';
|
285 |
$plus_font_color = '' !== $arr_settings['ssba_plus_font_color'] ? 'color: ' . $arr_settings['ssba_plus_font_color'] . '!important;' : '';
|
286 |
-
$plus_icon_color = '' !== $arr_settings['ssba_plus_icon_color'] ? '
|
287 |
-
$plus_icon_hover = '' !== $arr_settings['ssba_plus_icon_hover_color'] ? '
|
288 |
$plus_button_color = '' !== $arr_settings['ssba_plus_button_color'] ? 'background-color: ' . $arr_settings['ssba_plus_button_color'] . '!important;' : '';
|
289 |
$plus_button_hover = '' !== $arr_settings['ssba_plus_button_hover_color'] ? 'background-color: ' . $arr_settings['ssba_plus_button_hover_color'] . '!important;' : '';
|
290 |
|
@@ -309,11 +309,11 @@ class Styles {
|
|
309 |
esc_html( $plus_button_hover ) . '
|
310 |
}
|
311 |
|
312 |
-
.ssbp-list li a
|
313 |
esc_html( $plus_icon ) .
|
314 |
esc_html( $plus_icon_color ) .
|
315 |
'}
|
316 |
-
.ssbp-list li a:hover
|
317 |
esc_html( $plus_icon_hover ) .
|
318 |
'}
|
319 |
.ssbp-list li {
|
@@ -340,12 +340,12 @@ class Styles {
|
|
340 |
// Share bar styles.
|
341 |
$bar_height = $this->class_ssba->get_bar_height_style();
|
342 |
$bar_width = $this->class_ssba->get_bar_width_style();
|
343 |
-
$bar_icon = '' !== $arr_settings['ssba_bar_icon_size'] ? 'line-' . $bar_height . ';
|
344 |
$bar_margin = '' !== $arr_settings['ssba_bar_margin'] ? 'margin: ' . $arr_settings['ssba_bar_margin'] . 'px 0!important;' : '';
|
345 |
$bar_button_color = '' !== $arr_settings['ssba_bar_button_color'] ? 'background-color: ' . $arr_settings['ssba_bar_button_color'] . '!important;' : '';
|
346 |
$bar_button_hover = '' !== $arr_settings['ssba_bar_button_hover_color'] ? 'background-color: ' . $arr_settings['ssba_bar_button_hover_color'] . '!important;' : '';
|
347 |
-
$bar_icon_color = '' !== $arr_settings['ssba_bar_icon_color'] ? '
|
348 |
-
$bar_icon_hover = '' !== $arr_settings['ssba_bar_icon_hover_color'] ? '
|
349 |
$bar_break_point = 'Y' !== $arr_settings['ssba_bar_mobile'] ? 'display: none;' : 'display: block;';
|
350 |
$the_breakpoint = '' === $arr_settings['ssba_mobile_breakpoint'] || null === $arr_settings['ssba_mobile_breakpoint'] ? '750' : $arr_settings['ssba_mobile_breakpoint'];
|
351 |
|
@@ -362,11 +362,13 @@ class Styles {
|
|
362 |
esc_html( $bar_button_hover ) . '
|
363 |
}
|
364 |
|
365 |
-
#ssba-bar-2 .ssbp-bar-list li a
|
|
|
366 |
esc_html( $bar_icon ) .
|
367 |
esc_html( $bar_icon_color ) .
|
368 |
'}
|
369 |
-
#ssba-bar-2 .ssbp-bar-list li a:hover
|
|
|
370 |
esc_html( $bar_icon_hover ) .
|
371 |
'}
|
372 |
#ssba-bar-2 .ssbp-bar-list li {
|
277 |
// Plus styles.
|
278 |
$plus_height = '' !== $arr_settings['ssba_plus_height'] ? 'height: ' . $arr_settings['ssba_plus_height'] . 'px!important;' : 'height: 48px!important;';
|
279 |
$plus_width = '' !== $arr_settings['ssba_plus_width'] ? 'width: ' . $arr_settings['ssba_plus_width'] . 'px!important;' : 'width: 48px!important;';
|
280 |
+
$plus_icon = '' !== $arr_settings['ssba_plus_icon_size'] ? 'line-' . $plus_height . '; width: ' . $arr_settings['ssba_plus_icon_size'] . 'px; height: ' . $arr_settings['ssba_plus_icon_size'] . 'px;' : 'line-' . $plus_height . '; font-size: 18px;';
|
281 |
$plus_margin = '' !== $arr_settings['ssba_plus_margin'] ? 'margin-left: ' . $arr_settings['ssba_plus_margin'] . 'px!important;' : 'margin-left: 7px!important;';
|
282 |
$plus_font_style = '' !== $arr_settings['ssba_plus_font_family'] ? 'font-family: ' . $arr_settings['ssba_plus_font_family'] . ';' : 'font-family: inherit;';
|
283 |
$plus_font_size = '' !== $arr_settings['ssba_plus_font_size'] ? 'font-size: ' . $arr_settings['ssba_plus_font_size'] . 'px;' : 'font-size: 12px;';
|
284 |
$plus_font_weight = '' !== $arr_settings['ssba_plus_font_weight'] ? 'font-weight: ' . $arr_settings['ssba_plus_font_weight'] . ';' : 'font-weight: normal;';
|
285 |
$plus_font_color = '' !== $arr_settings['ssba_plus_font_color'] ? 'color: ' . $arr_settings['ssba_plus_font_color'] . '!important;' : '';
|
286 |
+
$plus_icon_color = '' !== $arr_settings['ssba_plus_icon_color'] ? 'fill: ' . $arr_settings['ssba_plus_icon_color'] : '';
|
287 |
+
$plus_icon_hover = '' !== $arr_settings['ssba_plus_icon_hover_color'] ? 'fill: ' . $arr_settings['ssba_plus_icon_hover_color'] . '!important;' : '';
|
288 |
$plus_button_color = '' !== $arr_settings['ssba_plus_button_color'] ? 'background-color: ' . $arr_settings['ssba_plus_button_color'] . '!important;' : '';
|
289 |
$plus_button_hover = '' !== $arr_settings['ssba_plus_button_hover_color'] ? 'background-color: ' . $arr_settings['ssba_plus_button_hover_color'] . '!important;' : '';
|
290 |
|
309 |
esc_html( $plus_button_hover ) . '
|
310 |
}
|
311 |
|
312 |
+
.ssbp-list li a svg, .ssbp-list li a svg path {' .
|
313 |
esc_html( $plus_icon ) .
|
314 |
esc_html( $plus_icon_color ) .
|
315 |
'}
|
316 |
+
.ssbp-list li a:hover svg, .ssbp-list li a:hover svg path {' .
|
317 |
esc_html( $plus_icon_hover ) .
|
318 |
'}
|
319 |
.ssbp-list li {
|
340 |
// Share bar styles.
|
341 |
$bar_height = $this->class_ssba->get_bar_height_style();
|
342 |
$bar_width = $this->class_ssba->get_bar_width_style();
|
343 |
+
$bar_icon = '' !== $arr_settings['ssba_bar_icon_size'] ? 'line-' . $bar_height . '; width: ' . $arr_settings['ssba_bar_icon_size'] . 'px; height: ' . $arr_settings['ssba_bar_icon_size'] . 'px;' : 'line-' . $bar_height . '; font-size: 18px;';
|
344 |
$bar_margin = '' !== $arr_settings['ssba_bar_margin'] ? 'margin: ' . $arr_settings['ssba_bar_margin'] . 'px 0!important;' : '';
|
345 |
$bar_button_color = '' !== $arr_settings['ssba_bar_button_color'] ? 'background-color: ' . $arr_settings['ssba_bar_button_color'] . '!important;' : '';
|
346 |
$bar_button_hover = '' !== $arr_settings['ssba_bar_button_hover_color'] ? 'background-color: ' . $arr_settings['ssba_bar_button_hover_color'] . '!important;' : '';
|
347 |
+
$bar_icon_color = '' !== $arr_settings['ssba_bar_icon_color'] ? 'fill: ' . $arr_settings['ssba_bar_icon_color'] . ';' : '';
|
348 |
+
$bar_icon_hover = '' !== $arr_settings['ssba_bar_icon_hover_color'] ? 'fill: ' . $arr_settings['ssba_bar_icon_hover_color'] . '!important;' : '';
|
349 |
$bar_break_point = 'Y' !== $arr_settings['ssba_bar_mobile'] ? 'display: none;' : 'display: block;';
|
350 |
$the_breakpoint = '' === $arr_settings['ssba_mobile_breakpoint'] || null === $arr_settings['ssba_mobile_breakpoint'] ? '750' : $arr_settings['ssba_mobile_breakpoint'];
|
351 |
|
362 |
esc_html( $bar_button_hover ) . '
|
363 |
}
|
364 |
|
365 |
+
#ssba-bar-2 .ssbp-bar-list li a svg,
|
366 |
+
#ssba-bar-2 .ssbp-bar-list li a svg path {' .
|
367 |
esc_html( $bar_icon ) .
|
368 |
esc_html( $bar_icon_color ) .
|
369 |
'}
|
370 |
+
#ssba-bar-2 .ssbp-bar-list li a:hover svg,
|
371 |
+
#ssba-bar-2 .ssbp-bar-list li a:hover svg path {' .
|
372 |
esc_html( $bar_icon_hover ) .
|
373 |
'}
|
374 |
#ssba-bar-2 .ssbp-bar-list li {
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Simple Share Buttons Adder ===
|
2 |
-
Contributors: sharethis, scottstorebloom, scottmweaver
|
3 |
-
Tags: share buttons, social buttons, facebook, twitter, google+, share, share links, stumble upon, linkedin, pinterest, yummly, vk, flattr
|
4 |
Requires at least: 5.9
|
5 |
-
Tested up to: 6.
|
6 |
-
Stable tag: 8.
|
7 |
-
Version: 8.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
A simple plugin that enables you to add share buttons to all of your posts and/or pages.
|
@@ -67,6 +67,12 @@ Please visit the <a href="https://wordpress.org/support/plugin/simple-share-butt
|
|
67 |
|
68 |
== Changelog ==
|
69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
= 8.3.2 =
|
71 |
* Add source.
|
72 |
|
1 |
=== Simple Share Buttons Adder ===
|
2 |
+
Contributors: sharethis, scottstorebloom, scottmweaver
|
3 |
+
Tags: share buttons, social buttons, facebook, twitter, google+, share, share links, stumble upon, linkedin, pinterest, yummly, vk, flattr, viber
|
4 |
Requires at least: 5.9
|
5 |
+
Tested up to: 6.1.1
|
6 |
+
Stable tag: 8.4.0
|
7 |
+
Version: 8.4.0
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
A simple plugin that enables you to add share buttons to all of your posts and/or pages.
|
67 |
|
68 |
== Changelog ==
|
69 |
|
70 |
+
= 8.4.0 =
|
71 |
+
* Test with WordPress 6.1.1.
|
72 |
+
* Add new networks.
|
73 |
+
* Hide classic tab.
|
74 |
+
* Fix bugs in admin preview.
|
75 |
+
|
76 |
= 8.3.2 =
|
77 |
* Add source.
|
78 |
|
simple-share-buttons-adder.php
CHANGED
@@ -3,12 +3,12 @@
|
|
3 |
* Plugin Name: Simple Share Buttons Adder
|
4 |
* Plugin URI: https://simplesharebuttons.com
|
5 |
* Description: A simple plugin that enables you to add share buttons to all of your posts and/or pages.
|
6 |
-
* Version: 8.
|
7 |
* Author: Simple Share Buttons
|
8 |
* Author URI: https://simplesharebuttons.com
|
9 |
* License: GPLv2
|
10 |
|
11 |
-
Copyright
|
12 |
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -58,9 +58,9 @@ add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), '_simple_share
|
|
58 |
* @return array
|
59 |
*/
|
60 |
function _simple_share_buttons_adder_add_action_links( $links ) {
|
61 |
-
$mylinks =
|
62 |
'<a href="' . admin_url( 'options-general.php?page=simple-share-buttons-adder' ) . '">Settings</a>',
|
63 |
-
|
64 |
|
65 |
return array_merge( $links, $mylinks );
|
66 |
}
|
3 |
* Plugin Name: Simple Share Buttons Adder
|
4 |
* Plugin URI: https://simplesharebuttons.com
|
5 |
* Description: A simple plugin that enables you to add share buttons to all of your posts and/or pages.
|
6 |
+
* Version: 8.4.0
|
7 |
* Author: Simple Share Buttons
|
8 |
* Author URI: https://simplesharebuttons.com
|
9 |
* License: GPLv2
|
10 |
|
11 |
+
Copyright 2022 Simple Share Buttons admin@simplesharebuttons.com
|
12 |
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License, version 2, as
|
58 |
* @return array
|
59 |
*/
|
60 |
function _simple_share_buttons_adder_add_action_links( $links ) {
|
61 |
+
$mylinks = [
|
62 |
'<a href="' . admin_url( 'options-general.php?page=simple-share-buttons-adder' ) . '">Settings</a>',
|
63 |
+
];
|
64 |
|
65 |
return array_merge( $links, $mylinks );
|
66 |
}
|
templates/admin-footer.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
|
10 |
?>
|
11 |
</div>
|
12 |
-
<?php if ( empty( get_option( 'ssba-hide-review' ) ) ) : ?>
|
13 |
<div class="ssba-review-us">
|
14 |
<h3>
|
15 |
<?php echo esc_html__( 'Love this plugin?', 'simple-share-buttons-adder' ); ?>
|
9 |
|
10 |
?>
|
11 |
</div>
|
12 |
+
<?php if ( true === empty( get_option( 'ssba-hide-review' ) ) ) : ?>
|
13 |
<div class="ssba-review-us">
|
14 |
<h3>
|
15 |
<?php echo esc_html__( 'Love this plugin?', 'simple-share-buttons-adder' ); ?>
|
templates/admin-panel.php
CHANGED
@@ -9,8 +9,7 @@
|
|
9 |
|
10 |
$selected_tab = get_option( 'ssba_selected_tab' );
|
11 |
$selected_tab = null !== $selected_tab && false !== $selected_tab ? $selected_tab : 'modern';
|
12 |
-
$
|
13 |
-
$modern = isset( $selected_tab ) && 'modern' === $selected_tab ? 'active' : '';
|
14 |
$bar = isset( $selected_tab ) && 'bar' === $selected_tab ? 'active' : '';
|
15 |
$gdpr = isset( $selected_tab ) && 'gdpr' === $selected_tab ? 'active' : '';
|
16 |
|
@@ -23,11 +22,6 @@ echo $this->forms->open( false ); // phpcs:ignore
|
|
23 |
<h2><?php echo esc_html__( 'Settings', 'simple-share-buttons-adder' ); ?></h2>
|
24 |
|
25 |
<ul class="nav nav-tabs">
|
26 |
-
<li class="ssba-classic-tab <?php echo esc_attr( $classic ); ?>">
|
27 |
-
<a href="#classic-share-buttons" data-toggle="tab">
|
28 |
-
<?php echo esc_html__( 'Classic Share Buttons', 'simple-share-buttons-adder' ); ?>
|
29 |
-
</a>
|
30 |
-
</li>
|
31 |
<li class="ssba-modern-tab <?php echo esc_attr( $modern ); ?>">
|
32 |
<a href="#plus-share-buttons" data-toggle="tab">
|
33 |
<?php echo esc_html__( 'Modern Share Buttons', 'simple-share-buttons-adder' ); ?>
|
9 |
|
10 |
$selected_tab = get_option( 'ssba_selected_tab' );
|
11 |
$selected_tab = null !== $selected_tab && false !== $selected_tab ? $selected_tab : 'modern';
|
12 |
+
$modern = isset( $selected_tab ) && false === in_array( $selected_tab, array( 'bar', 'gdpr' ), true ) ? 'active' : '';
|
|
|
13 |
$bar = isset( $selected_tab ) && 'bar' === $selected_tab ? 'active' : '';
|
14 |
$gdpr = isset( $selected_tab ) && 'gdpr' === $selected_tab ? 'active' : '';
|
15 |
|
22 |
<h2><?php echo esc_html__( 'Settings', 'simple-share-buttons-adder' ); ?></h2>
|
23 |
|
24 |
<ul class="nav nav-tabs">
|
|
|
|
|
|
|
|
|
|
|
25 |
<li class="ssba-modern-tab <?php echo esc_attr( $modern ); ?>">
|
26 |
<a href="#plus-share-buttons" data-toggle="tab">
|
27 |
<?php echo esc_html__( 'Modern Share Buttons', 'simple-share-buttons-adder' ); ?>
|
templates/classic-tab.php
CHANGED
@@ -1,365 +1,6 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
-
*
|
5 |
-
* The template wrapper for the classic tab.
|
6 |
*
|
7 |
* @package SimpleShareButtonsAdder
|
8 |
-
*
|
9 |
-
* @var $this Admin_Panel
|
10 |
*/
|
11 |
-
|
12 |
-
use SimpleShareButtonsAdder\Admin_Panel;
|
13 |
-
|
14 |
-
?>
|
15 |
-
<div class="tab-pane fade <?php echo 'active' === $classic ? esc_attr( $classic . ' in' ) : ''; ?>" id="classic-share-buttons">
|
16 |
-
<div class="col-sm-12 ssba-tab-container">
|
17 |
-
<blockquote class="yellow">
|
18 |
-
<p><?php echo esc_html__( 'Dear valued SSB users,', 'simple-share-buttons-adder' ); ?></p>
|
19 |
-
<p><?php echo esc_html__( 'We would like to inform you that all updates and support moving forward will be focused on our "Modern Share Buttons" version.', 'simple-share-buttons-adder' ); ?></p>
|
20 |
-
<p><?php echo esc_html__( 'Modern Share Buttons was once our paid product (which we now provide for free!); it has a lot more custom ability and social channels.', 'simple-share-buttons-adder' ); ?></p>
|
21 |
-
<p><?php echo esc_html__( 'We plan on moving the "Classic Share Buttons" tab within this plugin to highlight our "Modern Share Buttons." Please make the switch over to the Modern Share Buttons version as soon as possible!', 'simple-share-buttons-adder' ); ?></p>
|
22 |
-
<p><?php echo esc_html__( 'Thank you :)', 'simple-share-buttons-adder' ); ?></p>
|
23 |
-
</blockquote>
|
24 |
-
<?php if ( isset( $arr_settings['ssba_new_buttons'] ) && 'Y' === $arr_settings['ssba_new_buttons'] ) : ?>
|
25 |
-
<blockquote class="yellow">
|
26 |
-
<p>
|
27 |
-
<?php echo esc_html__( 'The "Modern Share Buttons" are currently active. To use the buttons below you must deactivate the "Modern Share Buttons".', 'simple-share-buttons-adder' ); ?>
|
28 |
-
|
29 |
-
<button id="new-tab-notice" type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
|
30 |
-
</p>
|
31 |
-
</blockquote>
|
32 |
-
<?php else : ?>
|
33 |
-
<blockquote class="yellow" style="display: none;">
|
34 |
-
<p>
|
35 |
-
<?php echo esc_html__( 'The "Modern Share Buttons" are currently active. To use the buttons below you must deactivate the "Modern Share Buttons".', 'simple-share-buttons-adder' ); ?>
|
36 |
-
|
37 |
-
<button id="new-tab-notice" type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
|
38 |
-
</p>
|
39 |
-
</blockquote>
|
40 |
-
<?php endif; ?>
|
41 |
-
<blockquote>
|
42 |
-
<p>
|
43 |
-
<?php echo esc_html__( 'The', 'simple-share-buttons-adder' ); ?> <b><?php echo esc_html__( 'simple', 'simple-share-buttons-adder' ); ?></b> <?php echo esc_html__( 'options you can see below are all you need to complete to get your', 'simple-share-buttons-adder' ); ?> <b><?php echo esc_html__( 'share buttons', 'simple-share-buttons-adder' ); ?></b> <?php echo esc_html__( 'to appear on your website. Once you\'re done here, you can further customize the share buttons via the Styling accordion.', 'simple-share-buttons-adder' ); ?>
|
44 |
-
</p>
|
45 |
-
</blockquote>
|
46 |
-
<blockquote>
|
47 |
-
<p>
|
48 |
-
<?php echo esc_html__( 'Classic Share Buttons are image-based. If you\'re looking for CSS-based buttons, head over to the Modern Share Buttons tab!', 'simple-share-buttons-adder' ); ?>
|
49 |
-
</p>
|
50 |
-
</blockquote>
|
51 |
-
|
52 |
-
<label for="ssba_choices" class="control-label" data-toggle="tooltip" data-placement="right" data-original-title="<?php echo esc_attr__( 'Drag, drop and reorder those buttons that you wish to include', 'simple-share-buttons-adder' ); ?>"><?php echo esc_html__( 'Networks', 'simple-share-buttons-adder' ); ?></label>
|
53 |
-
|
54 |
-
<div>
|
55 |
-
<div class="ssbp-wrap ssbp--centred ssbp--theme-4">
|
56 |
-
<div class="ssbp-container">
|
57 |
-
<ul id="ssbasort1" class="ssbp-list ssbaSortable">
|
58 |
-
<?php echo wp_kses_post( $this->get_available_ssba( $arr_settings['ssba_selected_buttons'], $arr_settings, 'classic' ) ); ?>
|
59 |
-
</ul>
|
60 |
-
</div>
|
61 |
-
</div>
|
62 |
-
<div class="well">
|
63 |
-
<div class="ssba-well-instruction">
|
64 |
-
<i class="fa fa-download"></i> <?php echo esc_html__( 'Drop icons below - the order of your preview will update when you save.', 'simple-share-buttons-adder' ); ?>
|
65 |
-
</div>
|
66 |
-
<div class="ssbp-wrap ssbp--centred ssbp--theme-4">
|
67 |
-
<div class="ssbp-container">
|
68 |
-
<ul id="ssbasort2" class="ssba-include-list ssbp-list ssbaSortable">
|
69 |
-
<?php echo wp_kses_post( $this->get_selected_ssba( $arr_settings['ssba_selected_buttons'], $arr_settings, 'classic' ) ); ?>
|
70 |
-
</ul>
|
71 |
-
</div>
|
72 |
-
</div>
|
73 |
-
</div>
|
74 |
-
|
75 |
-
<?php if ( in_array( 'whatsapp', explode( ',', $arr_settings['ssba_selected_buttons'] ), true ) ) : ?>
|
76 |
-
<div class="ssbp--theme-4 whatsapp-message">
|
77 |
-
<span class="ssbp-btn ssbp-whatsapp"></span>
|
78 |
-
<?php echo esc_html__( 'The whatsapp button only appears on mobile devices. It is included in your desktop preview for reference only.', 'simple-share-buttons-adder' ); ?>
|
79 |
-
</div>
|
80 |
-
<?php endif; ?>
|
81 |
-
|
82 |
-
<input type="hidden" name="ssba_selected_buttons" id="ssba_selected_buttons" value="<?php esc_attr( $arr_settings['ssba_selected_buttons'] ); ?>"/>
|
83 |
-
</div>
|
84 |
-
<?php
|
85 |
-
echo $this->forms->ssbp_checkboxes( $opts1 ); // phpcs:ignore
|
86 |
-
echo $this->forms->ssbp_input( $opts2 ); // phpcs:ignore
|
87 |
-
echo $this->forms->ssbp_input( $page_omit ); // phpcs:ignore
|
88 |
-
|
89 |
-
$line_height = 'below' === $arr_settings['ssba_text_placement'] || 'above' === $arr_settings['ssba_text_placement'] ? 'inherit' : ( (int) $arr_settings['ssba_size'] + (int) $arr_settings['ssba_padding'] + 3 ) . 'px';
|
90 |
-
$image_line_height = $arr_settings['ssba_size'] . 'px';
|
91 |
-
?>
|
92 |
-
|
93 |
-
<h3 id="ssba-preview-title"><?php echo esc_html__( 'Preview', 'simple-share-buttons-adder' ); ?></h3>
|
94 |
-
|
95 |
-
<div class="master-ssba-prev-wrap">
|
96 |
-
<div id="ssba-preview-1" class="ssbp-wrap" style="text-align: <?php echo esc_attr( $arr_settings['ssba_align'] ); ?>; border-radius: <?php echo 'Y' === $arr_settings['ssba_div_rounded_corners'] ? esc_attr( '10px' ) : esc_attr( '0' ); ?>; border: <?php echo esc_attr( $arr_settings['ssba_border_width'] . 'px solid ' . $arr_settings['ssba_div_border'] ); ?>; background: <?php echo esc_attr( $arr_settings['ssba_div_background'] ); ?>; padding: <?php echo esc_attr( $arr_settings['ssba_div_padding'] ); ?>px;">
|
97 |
-
<div class="ssba-preview-content">
|
98 |
-
<div style="display: <?php echo esc_attr( 'below' === $arr_settings['ssba_text_placement'] ? 'table-footer-group' : '' ); ?>; line-height: <?php echo esc_attr( $line_height ); ?>; float: <?php echo esc_attr( 'above' === $arr_settings['ssba_text_placement'] ? 'none' : $arr_settings['ssba_text_placement'] ); ?>; color: <?php echo esc_attr( $arr_settings['ssba_font_color'] ); ?>; font-family: <?php echo esc_attr( $arr_settings['ssba_font_family'] ); ?>; font-weight: <?php echo esc_attr( $arr_settings['ssba_font_weight'] ); ?>; font-size: <?php echo esc_attr( $arr_settings['ssba_font_size'] ); ?>px;" class="ssba-share-text-prev">
|
99 |
-
<?php echo esc_html( $arr_settings['ssba_share_text'] ); ?>
|
100 |
-
</div>
|
101 |
-
|
102 |
-
<ul class="ssbp-list">
|
103 |
-
<?php
|
104 |
-
foreach ( $arr_buttons as $buttons ) :
|
105 |
-
$button = strtolower( str_replace( ' ', '_', str_replace( '+', '', $buttons['full_name'] ) ) );
|
106 |
-
|
107 |
-
if ( false === Admin_Panel::show_in_classic( 'classic', $buttons['full_name'] ) ) {
|
108 |
-
continue;
|
109 |
-
}
|
110 |
-
|
111 |
-
if ( 'custom' !== $arr_settings['ssba_image_set'] ) {
|
112 |
-
$img_src = esc_attr( $this->plugin->dir_url ) . 'buttons/' . esc_attr( $arr_settings['ssba_image_set'] ) . '/' . esc_attr( $button ) . '.png';
|
113 |
-
} else {
|
114 |
-
$img_src = isset( $custom_buttons[ $button ] ) ? $custom_buttons[ $button ] : '';
|
115 |
-
}
|
116 |
-
?>
|
117 |
-
<li class="ssbp-li--
|
118 |
-
<?php
|
119 |
-
echo esc_attr( $button );
|
120 |
-
if ( ! in_array( $button, explode( ',', $arr_settings['ssba_selected_buttons'] ), true ) ) {
|
121 |
-
echo esc_attr( ' ssba-hide-button' );
|
122 |
-
}
|
123 |
-
?>
|
124 |
-
">
|
125 |
-
<img style="line-height: <?php echo esc_attr( $image_line_height ); ?>; height: <?php echo esc_attr( $arr_settings['ssba_size'] ); ?>px; padding: <?php echo esc_attr( $arr_settings['ssba_padding'] ); ?>px;" src="<?php echo esc_attr( $img_src ); ?>" title="<?php echo esc_attr( $buttons['full_name'] ); ?>" class="ssba ssba-img" alt="Share on <?php echo esc_attr( $button ); ?>" />
|
126 |
-
<span style="vertical-align: middle;" class="<?php echo 'Y' === $arr_settings['ssba_show_share_count'] ? esc_attr( 'ssba_sharecount ssba_' . $arr_settings['ssba_share_count_style'] ) : ''; ?> ssbp-total-<?php echo esc_attr( $button ); ?>-shares">1.8k</span>
|
127 |
-
</li>
|
128 |
-
<?php endforeach; ?>
|
129 |
-
</ul>
|
130 |
-
</div>
|
131 |
-
</div>
|
132 |
-
</div>
|
133 |
-
<div class="accor-wrap">
|
134 |
-
<div class="accor-tab">
|
135 |
-
<span class="accor-arrow">►</span>
|
136 |
-
<?php echo esc_html__( 'Styling', 'simple-share-buttons-adder' ); ?>
|
137 |
-
</div>
|
138 |
-
<div class="accor-content">
|
139 |
-
<div class="well">
|
140 |
-
<div class="col-md-12">
|
141 |
-
<h3><?php echo esc_html__( 'Appearance', 'simple-share-buttons-adder' ); ?></h3>
|
142 |
-
</div>
|
143 |
-
|
144 |
-
<div class="col-md-6">
|
145 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $opts4 ), $this->forms_validation->allowed_input_fields() ); ?>
|
146 |
-
|
147 |
-
<div id="ssba-custom-images" <?php echo 'custom' !== $arr_settings['ssba_image_set'] ? 'style="display: none;"' : null; ?>>
|
148 |
-
<?php
|
149 |
-
// Loop through each button.
|
150 |
-
foreach ( $arr_buttons as $button => $arr_button ) {
|
151 |
-
$custom_button = strtolower( str_replace( ' ', '_', str_replace( '+', '', $arr_button['full_name'] ) ) );
|
152 |
-
|
153 |
-
// Enable custom images.
|
154 |
-
$opts5 = array(
|
155 |
-
'form_group' => false,
|
156 |
-
'type' => 'image_upload',
|
157 |
-
'name' => 'ssba_custom_' . $custom_button,
|
158 |
-
'label' => $arr_button['full_name'],
|
159 |
-
'tooltip' => 'Upload a custom ' . $arr_button['full_name'] . ' image',
|
160 |
-
'value' => isset( $arr_settings[ 'ssba_custom_' . $custom_button ] ) ? $arr_settings[ 'ssba_custom_' . $custom_button ] : '',
|
161 |
-
);
|
162 |
-
echo wp_kses( $this->forms->ssbp_input( $opts5 ), $this->forms_validation->allowed_input_fields() );
|
163 |
-
}
|
164 |
-
?>
|
165 |
-
</div>
|
166 |
-
|
167 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $opts6 ), $this->forms_validation->allowed_input_fields() ); ?>
|
168 |
-
</div>
|
169 |
-
<div class="col-md-6">
|
170 |
-
<?php
|
171 |
-
echo wp_kses( $this->forms->ssbp_input( $opts7 ), $this->forms_validation->allowed_input_fields() );
|
172 |
-
echo wp_kses( $this->forms->ssbp_input( $opts8 ), $this->forms_validation->allowed_input_fields() );
|
173 |
-
?>
|
174 |
-
</div>
|
175 |
-
|
176 |
-
<div class="col-md-12">
|
177 |
-
<h3><?php echo esc_html__( 'Share Text', 'simple-share-buttons-adder' ); ?></h3>
|
178 |
-
</div>
|
179 |
-
<div class="col-md-6 share-text-prev">
|
180 |
-
<?php
|
181 |
-
echo wp_kses( $this->forms->ssbp_input( $opts3 ), $this->forms_validation->allowed_input_fields() );
|
182 |
-
echo wp_kses( $this->forms->ssbp_input( $opts10 ), $this->forms_validation->allowed_input_fields() );
|
183 |
-
echo wp_kses( $this->forms->ssbp_input( $opts11 ), $this->forms_validation->allowed_input_fields() );
|
184 |
-
?>
|
185 |
-
</div>
|
186 |
-
<div class="col-md-6 share-text-prev">
|
187 |
-
<?php
|
188 |
-
echo wp_kses( $this->forms->ssbp_input( $opts12 ), $this->forms_validation->allowed_input_fields() );
|
189 |
-
echo wp_kses( $this->forms->ssbp_input( $opts13 ), $this->forms_validation->allowed_input_fields() );
|
190 |
-
echo wp_kses( $this->forms->ssbp_input( $opts9 ), $this->forms_validation->allowed_input_fields() );
|
191 |
-
?>
|
192 |
-
</div>
|
193 |
-
|
194 |
-
<div class="col-md-12">
|
195 |
-
<h3><?php echo esc_html__( 'Container', 'simple-share-buttons-adder' ); ?></h3>
|
196 |
-
</div>
|
197 |
-
|
198 |
-
<div class="col-md-12 share-cont-prev">
|
199 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $opts18 ), $this->forms_validation->allowed_input_fields() ); ?>
|
200 |
-
</div>
|
201 |
-
|
202 |
-
<div class="col-md-6 share-cont-prev">
|
203 |
-
<?php
|
204 |
-
echo wp_kses( $this->forms->ssbp_input( $opts14 ), $this->forms_validation->allowed_input_fields() );
|
205 |
-
echo wp_kses( $this->forms->ssbp_input( $opts17 ), $this->forms_validation->allowed_input_fields() );
|
206 |
-
?>
|
207 |
-
</div>
|
208 |
-
<div class="col-md-6 share-cont-prev">
|
209 |
-
<?php
|
210 |
-
echo wp_kses( $this->forms->ssbp_input( $opts16 ), $this->forms_validation->allowed_input_fields() );
|
211 |
-
echo wp_kses( $this->forms->ssbp_input( $opts15 ), $this->forms_validation->allowed_input_fields() );
|
212 |
-
?>
|
213 |
-
</div>
|
214 |
-
</div>
|
215 |
-
</div>
|
216 |
-
</div>
|
217 |
-
<div class="accor-wrap">
|
218 |
-
<div class="accor-tab">
|
219 |
-
<span class="accor-arrow">►</span>
|
220 |
-
<?php echo esc_html__( 'Counters', 'simple-share-buttons-adder' ); ?>
|
221 |
-
</div>
|
222 |
-
<div class="accor-content">
|
223 |
-
<div class="well">
|
224 |
-
<div class="col-md-12">
|
225 |
-
<h3><?php echo esc_html__( 'Share Counts', 'simple-share-buttons-adder' ); ?></h3>
|
226 |
-
</div>
|
227 |
-
|
228 |
-
<div class="col-md-12 share-count-prev">
|
229 |
-
<?php
|
230 |
-
echo wp_kses( $this->forms->ssbp_input( $opts19 ), $this->forms_validation->allowed_input_fields() );
|
231 |
-
echo wp_kses( $this->forms->ssbp_input( $opts20 ), $this->forms_validation->allowed_input_fields() );
|
232 |
-
echo wp_kses( $this->forms->ssbp_input( $opts21 ), $this->forms_validation->allowed_input_fields() );
|
233 |
-
?>
|
234 |
-
</div>
|
235 |
-
</div>
|
236 |
-
</div>
|
237 |
-
</div>
|
238 |
-
|
239 |
-
<div class="accor-wrap">
|
240 |
-
<div class="accor-tab">
|
241 |
-
<span class="accor-arrow">►</span>
|
242 |
-
<?php echo esc_html__( 'Shortcode', 'simple-share-buttons-adder' ); ?>
|
243 |
-
</div>
|
244 |
-
<div class="accor-content">
|
245 |
-
<div class="well">
|
246 |
-
<div class="col-md-12 text-center">
|
247 |
-
Use the shortcode below to insert your buttons in pages and posts.
|
248 |
-
<p>
|
249 |
-
<textarea id="holdtext" style="display:none;"></textarea>
|
250 |
-
<input type="text" class="form-control ssba-buttons-shortcode" value="<?php echo esc_attr( '[ssba-buttons]' ); ?>" readonly size="40"/>
|
251 |
-
<button class="input-group-addon" type="button" id="ssba-copy-shortcode"><?php esc_html_e( 'Copy', 'simple-share-buttons-adder' ); ?></button>
|
252 |
-
</p>
|
253 |
-
</div>
|
254 |
-
</div>
|
255 |
-
</div>
|
256 |
-
</div>
|
257 |
-
|
258 |
-
<div class="accor-wrap">
|
259 |
-
<div class="accor-tab">
|
260 |
-
<span class="accor-arrow">►</span>
|
261 |
-
<?php echo esc_html__( 'Advanced', 'simple-share-buttons-adder' ); ?>
|
262 |
-
</div>
|
263 |
-
<div class="accor-content">
|
264 |
-
<div class="well">
|
265 |
-
<div class="col-md-12">
|
266 |
-
<h3><?php echo esc_html__( 'Advanced functionality', 'simple-share-buttons-adder' ); ?></h3>
|
267 |
-
</div>
|
268 |
-
|
269 |
-
<div class="col-md-12">
|
270 |
-
<?php
|
271 |
-
echo wp_kses( $this->forms->ssbp_input( $opts26 ), $this->forms_validation->allowed_input_fields() );
|
272 |
-
echo wp_kses( $this->forms->ssbp_input( $opts27 ), $this->forms_validation->allowed_input_fields() );
|
273 |
-
echo wp_kses( $this->forms->ssbp_input( $opts28 ), $this->forms_validation->allowed_input_fields() );
|
274 |
-
echo wp_kses( $this->forms->ssbp_input( $opts29 ), $this->forms_validation->allowed_input_fields() );
|
275 |
-
?>
|
276 |
-
</div>
|
277 |
-
|
278 |
-
<div class="col-md-6">
|
279 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $opts30 ), $this->forms_validation->allowed_input_fields() ); // phcs:ignore. ?>
|
280 |
-
</div>
|
281 |
-
|
282 |
-
<div class="col-md-6">
|
283 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $opts31 ), $this->forms_validation->allowed_input_fields() ); // phcs:ignore. ?>
|
284 |
-
</div>
|
285 |
-
|
286 |
-
<div class="col-md-12">
|
287 |
-
<?php echo esc_html__( 'You need to follow the instructions here before enabling this feature', 'simple-share-buttons-adder' ); ?> - <a target="_blank" href="https://developers.facebook.com/docs/apps/register"><?php echo esc_html( 'https://developers.facebook.com/docs/apps/register' ); ?></a>
|
288 |
-
</div>
|
289 |
-
|
290 |
-
<div class="col-md-12">
|
291 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $opts33 ), $this->forms_validation->allowed_input_fields() ); ?>
|
292 |
-
</div>
|
293 |
-
|
294 |
-
<div class="col-md-12">
|
295 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $ignore_sdk ), $this->forms_validation->allowed_input_fields() ); ?>
|
296 |
-
</div>
|
297 |
-
|
298 |
-
<div class="col-md-12">
|
299 |
-
<?php echo esc_html__( 'You shall need have created and added a Facebook App ID above to make use of this feature', 'simple-share-buttons-adder' ); ?>
|
300 |
-
</div>
|
301 |
-
|
302 |
-
<div class="col-md-12">
|
303 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $opts32 ), $this->forms_validation->allowed_input_fields() ); ?>
|
304 |
-
</div>
|
305 |
-
|
306 |
-
<div class="col-md-6">
|
307 |
-
<?php
|
308 |
-
echo wp_kses( $this->forms->ssbp_input( $opts34 ), $this->forms_validation->allowed_input_fields() );
|
309 |
-
echo wp_kses( $this->forms->ssbp_input( $opts37 ), $this->forms_validation->allowed_input_fields() );
|
310 |
-
?>
|
311 |
-
</div>
|
312 |
-
<div class="col-md-6">
|
313 |
-
<?php
|
314 |
-
echo wp_kses( $this->forms->ssbp_input( $opts35 ), $this->forms_validation->allowed_input_fields() );
|
315 |
-
echo wp_kses( $this->forms->ssbp_input( $opts36 ), $this->forms_validation->allowed_input_fields() );
|
316 |
-
?>
|
317 |
-
</div>
|
318 |
-
|
319 |
-
<div class="col-md-12">
|
320 |
-
<?php
|
321 |
-
echo wp_kses( $this->forms->ssbp_input( $opts38 ), $this->forms_validation->allowed_input_fields() );
|
322 |
-
echo wp_kses( $this->forms->ssbp_input( $opts39 ), $this->forms_validation->allowed_input_fields() );
|
323 |
-
?>
|
324 |
-
</div>
|
325 |
-
</div>
|
326 |
-
</div>
|
327 |
-
</div>
|
328 |
-
<div class="accor-wrap">
|
329 |
-
<div class="accor-tab">
|
330 |
-
<span class="accor-arrow">►</span>
|
331 |
-
<?php echo esc_html__( 'CSS', 'simple-share-buttons-adder' ); ?>
|
332 |
-
</div>
|
333 |
-
<div class="accor-content">
|
334 |
-
<div class="well">
|
335 |
-
<div class="col-md-12">
|
336 |
-
<h3><?php echo esc_html__( 'CSS overrides', 'simple-share-buttons-adder' ); ?></h3>
|
337 |
-
</div>
|
338 |
-
|
339 |
-
<div class="col-md-12">
|
340 |
-
<blockquote>
|
341 |
-
<p><?php echo esc_html__( 'The contents of the text area below will be appended to Simple Share Button Adder\'s CSS.', 'simple-share-buttons-adder' ); ?></p>
|
342 |
-
</blockquote>
|
343 |
-
</div>
|
344 |
-
|
345 |
-
<div class="col-sm-12">
|
346 |
-
<?php echo wp_kses( $this->forms->ssbp_input( $opts40 ), $this->forms_validation->allowed_input_fields() ); ?>
|
347 |
-
</div>
|
348 |
-
|
349 |
-
<div class="col-md-12">
|
350 |
-
<blockquote>
|
351 |
-
<p><?php echo esc_html__( 'If you want to take over control of your share buttons\' CSS entirely, turn on the switch below and enter your custom CSS.', 'simple-share-buttons-adder' ); ?> <strong><?php echo esc_html__( 'ALL of Simple Share Buttons Adder\'s CSS will be disabled', 'simple-share-buttons-adder' ); ?></strong>.</p>
|
352 |
-
</blockquote>
|
353 |
-
</div>
|
354 |
-
|
355 |
-
<div class="col-sm-12">
|
356 |
-
<?php
|
357 |
-
echo wp_kses( $this->forms->ssbp_input( $opts41 ), $this->forms_validation->allowed_input_fields() );
|
358 |
-
echo wp_kses( $this->forms->ssbp_input( $opts42 ), $this->forms_validation->allowed_input_fields() );
|
359 |
-
?>
|
360 |
-
</div>
|
361 |
-
</div>
|
362 |
-
</div>
|
363 |
-
</div>
|
364 |
-
</div>
|
365 |
-
</div>
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Silence is golden.
|
|
|
|
|
4 |
*
|
5 |
* @package SimpleShareButtonsAdder
|
|
|
|
|
6 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
templates/plus-tab.php
CHANGED
@@ -8,7 +8,8 @@
|
|
8 |
*/
|
9 |
|
10 |
?>
|
11 |
-
<div class="tab-pane fade <?php echo 'active' === $modern ? esc_attr( $modern . ' in' ) : ''; ?>"
|
|
|
12 |
<div class="col-sm-12 ssba-tab-container">
|
13 |
<?php echo $this->forms->ssbp_input( $opts43 ); // phpcs:ignore ?>
|
14 |
|
@@ -17,18 +18,23 @@
|
|
17 |
<?php echo esc_html__( 'Modern Share Buttons are CSS-based and allow for Button, Icon, and Icon Hover color customization. You can use our predefined CSS themes or your own custom CSS.' ); ?>
|
18 |
</p>
|
19 |
</blockquote>
|
20 |
-
<blockquote>
|
21 |
-
<p>
|
22 |
-
<?php echo esc_html__( 'Activating Modern Share Buttons will override your Classic Share Buttons. None of your classic settings will be lost. If you wish to switch back to classic buttons simply deactivate the Modern Share Buttons. Use the simple settings below to get started. Once you’re done you can further customize the share buttons via the options in the styling, counters, advanced, and CSS sections located below the preview.' ); ?>
|
23 |
-
</p>
|
24 |
-
</blockquote>
|
25 |
|
26 |
-
<h3 id="ssba-preview-title-2"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
<div class="master-ssba-prev-wrap2">
|
29 |
-
<div id="ssba-preview"
|
|
|
|
|
30 |
<div class="ssba-preview-content ssbp-container">
|
31 |
-
<div style="position: relative; display: <?php echo esc_attr( 'below' === $arr_settings['ssba_plus_text_placement'] ? 'table-footer-group' : '' ); ?>; float: <?php echo esc_attr( 'above' === $arr_settings['ssba_plus_text_placement'] ? 'none' : $arr_settings['ssba_plus_text_placement'] ); ?>; color: <?php echo esc_attr( $arr_settings['ssba_plus_font_color'] ); ?>; font-family: <?php echo esc_attr( $arr_settings['ssba_plus_font_family'] ); ?>; font-weight: <?php echo esc_attr( $arr_settings['ssba_plus_font_weight'] ); ?>; font-size: <?php echo esc_attr( $arr_settings['ssba_plus_font_size'] ); ?>px;"
|
|
|
32 |
<?php echo esc_html( $arr_settings['ssba_plus_share_text'] ); ?>
|
33 |
</div>
|
34 |
|
@@ -36,19 +42,49 @@
|
|
36 |
<?php if ( true === is_array( $arr_plus_buttons ) ) : ?>
|
37 |
<?php
|
38 |
foreach ( $arr_plus_buttons as $buttons ) :
|
39 |
-
$button
|
|
|
40 |
?>
|
41 |
-
|
42 |
-
|
43 |
<?php
|
44 |
-
if ( false === in_array(
|
|
|
|
|
|
|
|
|
45 |
echo esc_attr( ' ssba-hide-button' );
|
46 |
}
|
47 |
?>
|
48 |
">
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
<?php endforeach; ?>
|
53 |
<?php endif; ?>
|
54 |
</ul>
|
@@ -56,25 +92,59 @@
|
|
56 |
</div>
|
57 |
</div>
|
58 |
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
|
61 |
<div>
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
</div>
|
68 |
</div>
|
69 |
-
</div>
|
70 |
<div class="well">
|
71 |
<div class="ssba-well-instruction">
|
72 |
-
<i class="fa fa-download"></i>
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
</div>
|
74 |
<div class="ssbp-wrap ssbp--centred ssbp--theme-4">
|
75 |
<div class="ssbp-container">
|
76 |
<ul id="ssbasort6" class="ssba-include-list ssbp-list ssbaSortable">
|
77 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
</ul>
|
79 |
</div>
|
80 |
</div>
|
@@ -83,11 +153,17 @@
|
|
83 |
<?php if ( in_array( 'whatsapp', explode( ',', $arr_settings['ssba_selected_plus_buttons'] ), true ) ) : ?>
|
84 |
<div class="ssbp--theme-4 whatsapp-message">
|
85 |
<span class="ssbp-btn ssbp-whatsapp"></span>
|
86 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
87 |
</div>
|
88 |
<?php endif; ?>
|
89 |
|
90 |
-
<input type="hidden" name="ssba_selected_plus_buttons" id="ssba_selected_plus_buttons"
|
|
|
91 |
|
92 |
<?php
|
93 |
echo $this->forms->ssbp_checkboxes( $opts48 ); // phpcs:ignore
|
@@ -207,7 +283,15 @@
|
|
207 |
</div>
|
208 |
|
209 |
<div class="col-md-12">
|
210 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
</div>
|
212 |
|
213 |
<div class="col-md-12">
|
@@ -219,7 +303,12 @@
|
|
219 |
</div>
|
220 |
|
221 |
<div class="col-md-12">
|
222 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
223 |
</div>
|
224 |
|
225 |
<div class="col-md-12">
|
@@ -261,7 +350,14 @@
|
|
261 |
|
262 |
<div class="col-md-12">
|
263 |
<blockquote>
|
264 |
-
<p
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
</blockquote>
|
266 |
</div>
|
267 |
|
8 |
*/
|
9 |
|
10 |
?>
|
11 |
+
<div class="tab-pane fade <?php echo 'active' === $modern ? esc_attr( $modern . ' in' ) : ''; ?>"
|
12 |
+
id="plus-share-buttons">
|
13 |
<div class="col-sm-12 ssba-tab-container">
|
14 |
<?php echo $this->forms->ssbp_input( $opts43 ); // phpcs:ignore ?>
|
15 |
|
18 |
<?php echo esc_html__( 'Modern Share Buttons are CSS-based and allow for Button, Icon, and Icon Hover color customization. You can use our predefined CSS themes or your own custom CSS.' ); ?>
|
19 |
</p>
|
20 |
</blockquote>
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
+
<h3 id="ssba-preview-title-2">
|
23 |
+
<?php
|
24 |
+
echo esc_html__(
|
25 |
+
'Preview - the order of your preview will update when you save.',
|
26 |
+
'simple-share-buttons-adder'
|
27 |
+
);
|
28 |
+
?>
|
29 |
+
</h3>
|
30 |
|
31 |
<div class="master-ssba-prev-wrap2">
|
32 |
+
<div id="ssba-preview"
|
33 |
+
style="<?php echo esc_attr( 'text-align: ' . $arr_settings['ssba_plus_align'] . ';' ); ?>"
|
34 |
+
class="<?php echo isset( $arr_settings['ssba_plus_position'] ) ? esc_attr( $arr_settings['ssba_plus_position'] ) : ''; ?> ssbp-wrap ssbp--theme-<?php echo esc_attr( $arr_settings['ssba_plus_button_style'] ); ?>">
|
35 |
<div class="ssba-preview-content ssbp-container">
|
36 |
+
<div style="position: relative; display: <?php echo esc_attr( 'below' === $arr_settings['ssba_plus_text_placement'] ? 'table-footer-group' : '' ); ?>; float: <?php echo esc_attr( 'above' === $arr_settings['ssba_plus_text_placement'] ? 'none' : $arr_settings['ssba_plus_text_placement'] ); ?>; color: <?php echo esc_attr( $arr_settings['ssba_plus_font_color'] ); ?>; font-family: <?php echo esc_attr( $arr_settings['ssba_plus_font_family'] ); ?>; font-weight: <?php echo esc_attr( $arr_settings['ssba_plus_font_weight'] ); ?>; font-size: <?php echo esc_attr( $arr_settings['ssba_plus_font_size'] ); ?>px;"
|
37 |
+
class="ssba-share-text-prev">
|
38 |
<?php echo esc_html( $arr_settings['ssba_plus_share_text'] ); ?>
|
39 |
</div>
|
40 |
|
42 |
<?php if ( true === is_array( $arr_plus_buttons ) ) : ?>
|
43 |
<?php
|
44 |
foreach ( $arr_plus_buttons as $buttons ) :
|
45 |
+
$button = strtolower( str_replace( [ ' ', '+' ], [ '_', '' ], $buttons['full_name'] ) );
|
46 |
+
$network_color = \SimpleShareButtonsAdder\Buttons::get_button_color( $button );
|
47 |
?>
|
48 |
+
<li style="margin-left: <?php echo esc_attr( $arr_settings['ssba_plus_margin'] ); ?>px;"
|
49 |
+
class="ssbp-li--<?php echo esc_attr( $button ); ?>
|
50 |
<?php
|
51 |
+
if ( false === in_array(
|
52 |
+
$button,
|
53 |
+
explode( ',', $arr_settings['ssba_selected_plus_buttons'] ),
|
54 |
+
true
|
55 |
+
) ) {
|
56 |
echo esc_attr( ' ssba-hide-button' );
|
57 |
}
|
58 |
?>
|
59 |
">
|
60 |
+
<a href="#" class="ssbp-btn ssbp-<?php echo esc_attr( $button ); ?>"
|
61 |
+
style="color:<?php echo esc_attr( $network_color ); ?>; background-color: <?php echo esc_attr( $network_color ); ?>; height: <?php echo esc_attr( $arr_settings['ssba_plus_height'] ); ?>px; width: <?php echo esc_attr( $arr_settings['ssba_plus_width'] ); ?>px; <?php echo '' !== $arr_settings['ssba_plus_button_color'] ? esc_attr( 'background: ' . $arr_settings['ssba_plus_button_color'] . ';' ) : ''; ?>">
|
62 |
+
<span>
|
63 |
+
<?php echo $icon_code[ $button ]; // phpcs:ignore
|
64 |
+
?>
|
65 |
+
</span>
|
66 |
+
<span class="color-icon">
|
67 |
+
<?php echo $icon_white[ $button ]; // phpcs:ignore
|
68 |
+
?>
|
69 |
+
</span>
|
70 |
+
<div title="<?php echo esc_attr( $buttons['full_name'] ); ?>"
|
71 |
+
style="color:<?php echo esc_attr( $network_color ); ?> class="ssbp-text">
|
72 |
+
<?php
|
73 |
+
echo esc_html(
|
74 |
+
str_replace(
|
75 |
+
[
|
76 |
+
'Yahoo Mail',
|
77 |
+
'StumbleUpon',
|
78 |
+
],
|
79 |
+
[ 'Yahoo', 'Stumble' ],
|
80 |
+
$buttons['full_name']
|
81 |
+
)
|
82 |
+
);
|
83 |
+
?>
|
84 |
+
</div>
|
85 |
+
</a>
|
86 |
+
<span class="<?php echo 'Y' !== $arr_settings['ssba_plus_show_share_count'] ? esc_attr( 'ssba-hide-button' ) : ''; ?> ssbp-each-share">1.8k</span>
|
87 |
+
</li>
|
88 |
<?php endforeach; ?>
|
89 |
<?php endif; ?>
|
90 |
</ul>
|
92 |
</div>
|
93 |
</div>
|
94 |
|
95 |
+
data-original-title="
|
96 |
+
<?php
|
97 |
+
echo esc_attr__(
|
98 |
+
'Drag, drop and reorder those buttons that you wish to include',
|
99 |
+
'simple-share-buttons-adder'
|
100 |
+
);
|
101 |
+
?>
|
102 |
+
">
|
103 |
+
<?php
|
104 |
+
echo esc_html__(
|
105 |
+
'Networks',
|
106 |
+
'simple-share-buttons-adder'
|
107 |
+
);
|
108 |
+
?>
|
109 |
+
</label>
|
110 |
|
111 |
<div>
|
112 |
+
<div class="ssbp-wrap ssbp--centred">
|
113 |
+
<div class="ssbp-container">
|
114 |
+
<ul id="ssbasort5" class="ssbp-list ssbaSortable">
|
115 |
+
<?php
|
116 |
+
echo wp_kses_post(
|
117 |
+
$this->get_available_ssba(
|
118 |
+
$arr_settings['ssba_selected_plus_buttons'],
|
119 |
+
$arr_settings
|
120 |
+
)
|
121 |
+
);
|
122 |
+
?>
|
123 |
+
</ul>
|
124 |
+
</div>
|
125 |
</div>
|
126 |
</div>
|
|
|
127 |
<div class="well">
|
128 |
<div class="ssba-well-instruction">
|
129 |
+
<i class="fa fa-download"></i>
|
130 |
+
<?php
|
131 |
+
echo esc_html__(
|
132 |
+
'Drop icons below',
|
133 |
+
'simple-share-buttons-adder'
|
134 |
+
);
|
135 |
+
?>
|
136 |
</div>
|
137 |
<div class="ssbp-wrap ssbp--centred ssbp--theme-4">
|
138 |
<div class="ssbp-container">
|
139 |
<ul id="ssbasort6" class="ssba-include-list ssbp-list ssbaSortable">
|
140 |
+
<?php
|
141 |
+
echo wp_kses_post(
|
142 |
+
$this->get_selected_ssba(
|
143 |
+
$arr_settings['ssba_selected_plus_buttons'],
|
144 |
+
$arr_settings
|
145 |
+
)
|
146 |
+
);
|
147 |
+
?>
|
148 |
</ul>
|
149 |
</div>
|
150 |
</div>
|
153 |
<?php if ( in_array( 'whatsapp', explode( ',', $arr_settings['ssba_selected_plus_buttons'] ), true ) ) : ?>
|
154 |
<div class="ssbp--theme-4 whatsapp-message">
|
155 |
<span class="ssbp-btn ssbp-whatsapp"></span>
|
156 |
+
<?php
|
157 |
+
echo esc_html__(
|
158 |
+
'The whatsapp button only appears on mobile devices. It is included in your desktop preview for reference only.',
|
159 |
+
'simple-share-buttons-adder'
|
160 |
+
);
|
161 |
+
?>
|
162 |
</div>
|
163 |
<?php endif; ?>
|
164 |
|
165 |
+
<input type="hidden" name="ssba_selected_plus_buttons" id="ssba_selected_plus_buttons"
|
166 |
+
value="<?php esc_attr( $arr_settings['ssba_selected_plus_buttons'] ); ?>"/>
|
167 |
|
168 |
<?php
|
169 |
echo $this->forms->ssbp_checkboxes( $opts48 ); // phpcs:ignore
|
283 |
</div>
|
284 |
|
285 |
<div class="col-md-12">
|
286 |
+
<?php
|
287 |
+
echo esc_html__(
|
288 |
+
'You shall need to follow the instructions here before enabling this feature',
|
289 |
+
'simple-share-buttons-adder'
|
290 |
+
);
|
291 |
+
?>
|
292 |
+
- <a target="_blank" href="https://developers.facebook.com/docs/apps/register">
|
293 |
+
<?php echo esc_html( 'https://developers.facebook.com/docs/apps/register' ); ?>
|
294 |
+
</a>
|
295 |
</div>
|
296 |
|
297 |
<div class="col-md-12">
|
303 |
</div>
|
304 |
|
305 |
<div class="col-md-12">
|
306 |
+
<?php
|
307 |
+
echo esc_html__(
|
308 |
+
'You shall need have created and added a Facebook App ID above to make use of this feature',
|
309 |
+
'simple-share-buttons-adder'
|
310 |
+
);
|
311 |
+
?>
|
312 |
</div>
|
313 |
|
314 |
<div class="col-md-12">
|
350 |
|
351 |
<div class="col-md-12">
|
352 |
<blockquote>
|
353 |
+
<p>
|
354 |
+
<?php
|
355 |
+
echo esc_html__(
|
356 |
+
'The contents of the text area below will be appended to Simple Share Button Adder\'s CSS.',
|
357 |
+
'simple-share-buttons-adder'
|
358 |
+
);
|
359 |
+
?>
|
360 |
+
</p>
|
361 |
</blockquote>
|
362 |
</div>
|
363 |
|
templates/share-bar-tab.php
CHANGED
@@ -73,22 +73,27 @@
|
|
73 |
<?php if ( is_array( $arr_bar_buttons ) ) : ?>
|
74 |
<?php
|
75 |
foreach ( $arr_bar_buttons as $buttons ) :
|
76 |
-
$button
|
|
|
77 |
?>
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
|
|
92 |
<?php endforeach; ?>
|
93 |
<?php endif; ?>
|
94 |
</ul>
|
73 |
<?php if ( is_array( $arr_bar_buttons ) ) : ?>
|
74 |
<?php
|
75 |
foreach ( $arr_bar_buttons as $buttons ) :
|
76 |
+
$button = strtolower( str_replace( array( ' ', '+' ), array( '_', '' ), $buttons['full_name'] ) );
|
77 |
+
$network_color = \SimpleShareButtonsAdder\Buttons::get_button_color( $button );
|
78 |
?>
|
79 |
+
<li style="margin-left: <?php echo esc_attr( $arr_settings['ssba_bar_margin'] ); ?>px;" class="ssbp-li--<?php echo esc_attr( $button ); ?>
|
80 |
+
<?php
|
81 |
+
if ( false === in_array( $button, explode( ',', $arr_settings['ssba_selected_bar_buttons'] ), true ) ) {
|
82 |
+
echo esc_attr( ' ssba-hide-button' );
|
83 |
+
}
|
84 |
+
?>
|
85 |
+
">
|
86 |
+
<a href="#" class="ssbp-btn ssbp-<?php echo esc_attr( $button ); ?>" style="color:<?php echo esc_attr( $network_color ); ?>; background-color: <?php echo esc_attr( $network_color ); ?>; height: <?php echo esc_attr( $arr_settings['ssba_plus_height'] ); ?>px; width: <?php echo esc_attr( $arr_settings['ssba_bar_width'] ); ?>px; <?php echo '' !== $arr_settings['ssba_bar_button_color'] ? esc_attr( 'background: ' . $arr_settings['ssba_bar_button_color'] . ';' ) : ''; ?>">
|
87 |
+
<span>
|
88 |
+
<?php echo $icon_code[ $button ]; // phpcs:ignore ?>
|
89 |
+
</span>
|
90 |
+
<span class="color-icon">
|
91 |
+
<?php echo $icon_white[ $button ]; // phpcs:ignore ?>
|
92 |
+
</span>
|
93 |
+
<div title="<?php echo esc_attr( $buttons['full_name'] ); ?>" style="color:<?php echo esc_attr( $network_color ); ?>;" class="ssbp-text"><?php echo esc_html( str_replace( 'Yahoo Mail', 'Yahoo', $buttons['full_name'] ) ); ?></div>
|
94 |
+
</a>
|
95 |
+
<span class="<?php echo 'Y' !== $arr_settings['ssba_bar_show_share_count'] ? esc_attr( 'ssba-hide-button' ) : ''; ?> ssbp-each-share">1.8k</span>
|
96 |
+
</li>
|
97 |
<?php endforeach; ?>
|
98 |
<?php endif; ?>
|
99 |
</ul>
|