Version Description
(29 JUN 2017) =
- Added the option to use the custom Pinterest image for the image hover pin buttons rather than the image being hovered.
- Added the option to use the custom Pinterest description for the image hover pin buttons rather than the alt text of the image.
- Added the option to turn off UTM tracking for Pinterest since Pinterest seems to tally pin counts separately when UTM is used.
- Added an option to force new shares. Normally the plugin ignores new share counts if the count is lower than the count that we previously fetched from the API's. If you activate this feature, it will go with the new count even if it is lower than previously reported by the API's.
- Fixed an issue that was affecting share counts being fetched on some sites.
- Fixed an issue that was affecting the open graph image on some sites when posts were scheduled.
- Fixed an issue that was causing some sites not to generate Bitly links on new posts.
- Added some debugging tools to make it easier to diagnose any future issues with Bitly links.
- Added a conditional to catch an undefined index warning.
- Changed the link in the head html comment to be https.
Download this release
Release Info
Developer | WarfarePlugins |
Plugin | WordPress Social Sharing Plugin – Social Warfare |
Version | 2.2.8 |
Comparing to | |
See all releases |
Code changes from version 2.2.7 to 2.2.8
- README.md +55 -0
- css/style.css +1754 -1754
- css/style.min.css +1 -1
- functions/admin/options-array.php +16 -0
- functions/admin/options-fetch.php +4 -0
- functions/frontend-output/buttons-standard.php +4 -4
- functions/frontend-output/header-meta-tags.php +3 -3
- functions/utilities/share-cache.php +3 -1
- functions/utilities/share-count-function.php +2 -2
- functions/utilities/url_processing.php +28 -10
- js/admin-options-page.min.js +1 -1
- js/admin.min.js +1 -1
- js/script.js +6 -2
- js/script.min.js +1 -1
- readme.txt +14 -1
- social-warfare.php +2 -2
README.md
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Warfare Plugins / Social Warfare Repository and Issue Tracker
|
2 |
+
This is a public repository for the Social Warfare WordPress plugin created primarily for the purpose of publishing and maintaining a public list of bugs, known issues, and feature requests with the community at large. Please use the "Issues" link above to track or add information to existing issues or to submit new issues altogether.
|
3 |
+
|
4 |
+
***
|
5 |
+
|
6 |
+
## Guidelines & Standards for Creating & Updating Code on This Project
|
7 |
+
|
8 |
+
Coding Standards are an important factor for achieving a high code quality. A common visual style, naming conventions and other technical settings allow us to produce a homogenous code which is easy to read and maintain.
|
9 |
+
|
10 |
+
While this project has used various coding standards over time, this guide should provide the framework for all new code additions and to updates made to existing code.
|
11 |
+
|
12 |
+
**WordPress Coding Standards:** All WordPress coding standards should be followed. Anything not specifically defined here should defer to WordPress's recommended coding standards found here: [WordPress Coding Standards](https://codex.wordpress.org/WordPress_Coding_Standards).
|
13 |
+
|
14 |
+
**Variables and Class Names:** All PHP and Javascript variables, functions and classes, and CSS classes and ID's should follow the following naming standards. All names will use the Snake Case nomenclature and be preceded with the swp_ prefix (e.g. swp_my_variable_name).
|
15 |
+
|
16 |
+
**Docblocking:** Each file should begin with a docblock, as well as each function and class should be preceded with a docblock to explain it's purpose and functionality. There is no such thing as too much documentation on this project. The purpose is that any developer or non-developer should be able to easily browser each file and know exactly what is happening in that file.
|
17 |
+
|
18 |
+
***
|
19 |
+
|
20 |
+
## Guidelines for Submitting Issues to this GitHub Issue Tracker
|
21 |
+
Before submitting an issue to the issue tracker, please be sure of a few things. By following these guidelines, you maximize the possibility of our development team being able to find a solution to the issue in a quick and thorough manner.
|
22 |
+
|
23 |
+
### Prerequisites: Do this BEFORE submitting an issue
|
24 |
+
|
25 |
+
#### 1. Check the Documentation
|
26 |
+
First check the [support documentation](https://warfareplugins.com/support/) on the Warfare Plugins website to ensure that a solution to your issue has not already been addressed. Once you've determined that there is no useful information for your particular issue, you may proceed to step 2.
|
27 |
+
|
28 |
+
#### 2. Submit a Support Ticket First
|
29 |
+
Once you have completed step 1, you need to submit a ticket using the [contact form on the Warfare Plugins website](https://warfareplugins.com/). Once submitted, most tickets are responded to on the same or next business day so please allow until the end of the next business day for a response.
|
30 |
+
|
31 |
+
Many tickets being posted here are issues that simply require adjusting a single setting to accomodate themes or plugins in certain ways. The support team is able to respond to these much, much more quickly than here in the developer's workspace. Since this is the case, any issues submitted without first going through the support team will be deleted. Otherwise it is a waste of both your time and ours.
|
32 |
+
|
33 |
+
#### 3. Create an Issue on GitHub
|
34 |
+
Only once you have completed the above steps should you submit an issue to GitHub. GitHub is the workspace of the development team. In the rare instances where the support team is unable to solve a particular issue, it will be brought here to be tracked and solved by the development team. GitHub is public so that not only the support team, but also all users can view and track the progress of issues as well as commenting and participating in the conversation regarding each issue.
|
35 |
+
|
36 |
+
### Required Information: Provide this information WHILE submitting an issue
|
37 |
+
Once you've gone through support and you're ready to submit a GitHub issue, please **copy and paste the following information into your GitHub issue and fill out the blanks**:
|
38 |
+
|
39 |
+
#### Description of the Issue
|
40 |
+
|
41 |
+
A. Describe the nature of the issue:
|
42 |
+
|
43 |
+
B. How can this issue be replicated?:
|
44 |
+
|
45 |
+
C. Is this issue able to be viewed on your site right now? If so, where?
|
46 |
+
|
47 |
+
#### Additional Information
|
48 |
+
|
49 |
+
A. What version of the plugin are you using?
|
50 |
+
|
51 |
+
B. What version of WordPress are you using?
|
52 |
+
|
53 |
+
C. What caching plugin(s) are you using?
|
54 |
+
|
55 |
+
D. What version of PHP are you using?
|
css/style.css
CHANGED
@@ -1,1754 +1,1754 @@
|
|
1 |
-
.nc_socialPanel {
|
2 |
-
clear: both;
|
3 |
-
display: -webkit-box;
|
4 |
-
display: -webkit-flex;
|
5 |
-
display: -moz-box;
|
6 |
-
display: -ms-flexbox;
|
7 |
-
display: flex;
|
8 |
-
height: 34px;
|
9 |
-
line-height: 1;
|
10 |
-
margin-bottom: 20px!important;
|
11 |
-
margin-top: 20px!important;
|
12 |
-
overflow: hidden;
|
13 |
-
padding: 0;
|
14 |
-
|
15 |
-
-webkit-align-items: stretch;
|
16 |
-
align-items: stretch;
|
17 |
-
-webkit-box-align: stretch;
|
18 |
-
-moz-box-align: stretch;
|
19 |
-
-webkit-box-pack: justify;
|
20 |
-
-moz-box-pack: justify;
|
21 |
-
-ms-flex-align: stretch;
|
22 |
-
-ms-flex-line-pack: center;
|
23 |
-
-ms-flex-pack: justify;
|
24 |
-
-webkit-flex-wrap: wrap;
|
25 |
-
-ms-flex-wrap: wrap;
|
26 |
-
flex-wrap: wrap;
|
27 |
-
-webkit-justify-content: space-between;
|
28 |
-
justify-content: space-between;
|
29 |
-
}
|
30 |
-
|
31 |
-
.nc_socialPanel:not(.nc_floater):not(.nc_socialPanelSide) {
|
32 |
-
width: 100%!important;
|
33 |
-
}
|
34 |
-
|
35 |
-
.nc_wrapper .nc_socialPanel {
|
36 |
-
margin-bottom: 10px!important;
|
37 |
-
margin-top: 10px!important;
|
38 |
-
}
|
39 |
-
|
40 |
-
div.nc_socialPanel .nc_tweetContainer {
|
41 |
-
-webkit-border-radius: 2px;
|
42 |
-
border-radius: 2px;
|
43 |
-
cursor: pointer;
|
44 |
-
float: left;
|
45 |
-
font-family: Lato;
|
46 |
-
height: 32px;
|
47 |
-
margin: 0 5px;
|
48 |
-
min-width: 34px;
|
49 |
-
overflow: hidden;
|
50 |
-
text-align: center;
|
51 |
-
-webkit-transition: all 0.1s linear;
|
52 |
-
transition: all 0.1s linear;
|
53 |
-
|
54 |
-
border-size: 1px;
|
55 |
-
}
|
56 |
-
|
57 |
-
div.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer {
|
58 |
-
-webkit-box-flex: 1;
|
59 |
-
-moz-box-flex: 1;
|
60 |
-
-webkit-flex: 1;
|
61 |
-
-ms-flex: 1;
|
62 |
-
flex: 1;
|
63 |
-
}
|
64 |
-
|
65 |
-
.nc_socialPanel .nc_tweetContainer a.nc_tweet,
|
66 |
-
.nc_socialPanel .totes .swp_count {
|
67 |
-
display: block;
|
68 |
-
display: -webkit-box;
|
69 |
-
display: -webkit-flex;
|
70 |
-
display: -moz-box;
|
71 |
-
display: -ms-flexbox;
|
72 |
-
display: flex;
|
73 |
-
font-family: Lato, sans-serif;
|
74 |
-
font-size: 18px!important;
|
75 |
-
font-weight: bold;
|
76 |
-
height: 30px;
|
77 |
-
text-decoration: none;
|
78 |
-
text-decoration: none!important;
|
79 |
-
text-transform: none;
|
80 |
-
|
81 |
-
-webkit-box-direction: normal;
|
82 |
-
-moz-box-direction: normal;
|
83 |
-
-webkit-box-orient: horizontal;
|
84 |
-
-moz-box-orient: horizontal;
|
85 |
-
-webkit-flex-flow: row wrap;
|
86 |
-
-ms-flex-flow: row wrap;
|
87 |
-
flex-flow: row wrap;
|
88 |
-
}
|
89 |
-
|
90 |
-
.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-child(1) {
|
91 |
-
margin-left: 0;
|
92 |
-
}
|
93 |
-
|
94 |
-
.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-last-child(1) {
|
95 |
-
margin-right: 0;
|
96 |
-
}
|
97 |
-
|
98 |
-
.nc_socialPanel a .swp_count:not(.swp_hide) {
|
99 |
-
display: inline-block;
|
100 |
-
line-height: 32px;
|
101 |
-
margin: 0;
|
102 |
-
padding: 0 5px;
|
103 |
-
|
104 |
-
-webkit-box-flex: 1;
|
105 |
-
-moz-box-flex: 1;
|
106 |
-
-webkit-flex: 1;
|
107 |
-
-ms-flex: 1;
|
108 |
-
flex: 1;
|
109 |
-
}
|
110 |
-
|
111 |
-
.nc_socialPanel a .swp_count.swp_hide {
|
112 |
-
margin: 0 auto;
|
113 |
-
}
|
114 |
-
|
115 |
-
.nc_socialPanel span:before {
|
116 |
-
content: initial!important;
|
117 |
-
}
|
118 |
-
|
119 |
-
.nc_socialPanel .totes .swp_count {
|
120 |
-
line-height: 30px;
|
121 |
-
}
|
122 |
-
|
123 |
-
.nc_socialPanel span.swp_count {
|
124 |
-
font-size: 14px;
|
125 |
-
}
|
126 |
-
|
127 |
-
.nc_socialPanel span.iconFiller {
|
128 |
-
font-size: 18px;
|
129 |
-
margin: 0 auto;
|
130 |
-
}
|
131 |
-
|
132 |
-
.nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1) {
|
133 |
-
margin-left: 0;
|
134 |
-
}
|
135 |
-
|
136 |
-
.nc_socialPanel:not(.nc_socialPanelSide) {
|
137 |
-
-webkit-transition: opacity 0.2s ease-in-out;
|
138 |
-
transition: opacity 0.2s ease-in-out;
|
139 |
-
}
|
140 |
-
|
141 |
-
.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1) {
|
142 |
-
margin-left: 0;
|
143 |
-
margin-right: 15px;
|
144 |
-
padding-left: 0;
|
145 |
-
}
|
146 |
-
|
147 |
-
.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1) {
|
148 |
-
margin-right: 0;
|
149 |
-
padding-right: 0;
|
150 |
-
}
|
151 |
-
|
152 |
-
a.swp_CTT {
|
153 |
-
cursor: pointer;
|
154 |
-
}
|
155 |
-
|
156 |
-
span.swp_share {
|
157 |
-
display: block;
|
158 |
-
float: right;
|
159 |
-
float: left;
|
160 |
-
font-size: 14px;
|
161 |
-
font-weight: normal;
|
162 |
-
height: 30px;
|
163 |
-
line-height: 30px;
|
164 |
-
margin: 0 0 0 6px;
|
165 |
-
max-width: none!important;
|
166 |
-
vertical-align: middle;
|
167 |
-
}
|
168 |
-
|
169 |
-
.nc_socialPanelSide span.swp_share {
|
170 |
-
margin: 0;
|
171 |
-
}
|
172 |
-
|
173 |
-
.nc_socialPanel .sw {
|
174 |
-
float: left;
|
175 |
-
height: 30px;
|
176 |
-
line-height: 32px;
|
177 |
-
margin: 0 5px;
|
178 |
-
text-shadow: none!important;
|
179 |
-
width: 20px;
|
180 |
-
}
|
181 |
-
|
182 |
-
.iconFiller {
|
183 |
-
display: block;
|
184 |
-
float: left;
|
185 |
-
height: 30px;
|
186 |
-
overflow: hidden;
|
187 |
-
-webkit-transition: width 0.1s linear;
|
188 |
-
transition: width 0.1s linear;
|
189 |
-
}
|
190 |
-
|
191 |
-
.nc_socialPanel .iconFiller {
|
192 |
-
width: 30px;
|
193 |
-
}
|
194 |
-
|
195 |
-
span.spaceManWilly {
|
196 |
-
display: block;
|
197 |
-
width: 120px;
|
198 |
-
}
|
199 |
-
|
200 |
-
.nc_socialPanel .totes {
|
201 |
-
background: #c4c4c4;
|
202 |
-
border: 1px solid #e08a0f;
|
203 |
-
-webkit-border-radius: 2px;
|
204 |
-
border-radius: 2px;
|
205 |
-
color: white;
|
206 |
-
cursor: default;
|
207 |
-
display: block;
|
208 |
-
font-size: 19px;
|
209 |
-
padding: 0 10px;
|
210 |
-
|
211 |
-
-webkit-box-flex: 0!important;
|
212 |
-
-moz-box-flex: 0!important;
|
213 |
-
-webkit-flex: none!important;
|
214 |
-
-ms-flex: none!important;
|
215 |
-
flex: none!important;
|
216 |
-
}
|
217 |
-
|
218 |
-
.nc_socialPanel div.totes.totesalt,
|
219 |
-
.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {
|
220 |
-
background: transparent!important;
|
221 |
-
border: none;
|
222 |
-
color: #474b4d;
|
223 |
-
margin-left: 0!important;
|
224 |
-
}
|
225 |
-
|
226 |
-
div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {
|
227 |
-
background: transparent;
|
228 |
-
color: #474b4d;
|
229 |
-
margin-left: 10px;
|
230 |
-
}
|
231 |
-
|
232 |
-
.nc_socialPanel .totes.totesalt .swp_label {
|
233 |
-
color: #474b4d;
|
234 |
-
font-size: 10px;
|
235 |
-
letter-spacing: 0;
|
236 |
-
min-width: 40px;
|
237 |
-
vertical-align: middle;
|
238 |
-
}
|
239 |
-
|
240 |
-
.nc_socialPanel .totes .swp_label {
|
241 |
-
font-size: 10px;
|
242 |
-
vertical-align: middle;
|
243 |
-
}
|
244 |
-
|
245 |
-
.nc_socialPanel .totes.totesalt .swp_count {
|
246 |
-
color: #474b4d;
|
247 |
-
font-size: 24px;
|
248 |
-
}
|
249 |
-
|
250 |
-
.nc_socialPanel:hover .totes,
|
251 |
-
.nc_socialPanel.swp_fullColor .totes,
|
252 |
-
.nc_socialPanel.swp_fade .totes,
|
253 |
-
.nc_socialPanel.swp_customFull:hover div.totes {
|
254 |
-
background: #e08a0f;
|
255 |
-
}
|
256 |
-
|
257 |
-
.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer.totes.totesalt:before {
|
258 |
-
content: "o";
|
259 |
-
display: inline-block;
|
260 |
-
font-family: sw-icon-font;
|
261 |
-
margin-top: 7px;
|
262 |
-
vertical-align: top;
|
263 |
-
}
|
264 |
-
|
265 |
-
.nc_socialPanel:not(.nc_socialPanelSide) .totes.totesalt .swp_count {
|
266 |
-
display: inline-block;
|
267 |
-
line-height: 0;
|
268 |
-
margin-left: 8px;
|
269 |
-
margin-top: 12px;
|
270 |
-
min-width: 45px;
|
271 |
-
position: relative;
|
272 |
-
vertical-align: middle;
|
273 |
-
}
|
274 |
-
|
275 |
-
span.swp_label {
|
276 |
-
display: block;
|
277 |
-
font-size: 9px!important;
|
278 |
-
margin-top: 13px;
|
279 |
-
position: absolute;
|
280 |
-
text-align: center!important;
|
281 |
-
text-transform: uppercase;
|
282 |
-
}
|
283 |
-
|
284 |
-
.nc_socialPanelSide span.swp_label {
|
285 |
-
margin-top: 0;
|
286 |
-
}
|
287 |
-
|
288 |
-
.nc_socialPanel.swp_leaf .nc_tweetContainer {
|
289 |
-
-webkit-border-radius: 15px 0;
|
290 |
-
border-radius: 15px 0;
|
291 |
-
border-width: 1px;
|
292 |
-
}
|
293 |
-
|
294 |
-
.nc_socialPanel.swp_pill .nc_tweetContainer {
|
295 |
-
-webkit-border-radius: 50px;
|
296 |
-
border-radius: 50px;
|
297 |
-
border-width: 1px;
|
298 |
-
}
|
299 |
-
|
300 |
-
.nc_socialPanel.swp_shift .nc_tweetContainer:not(.totes) {
|
301 |
-
border-width: 1px;
|
302 |
-
-moz-transform: skew(-25deg);
|
303 |
-
-o-transform: skew(-25deg);
|
304 |
-
-webkit-transform: skew(-25deg);
|
305 |
-
}
|
306 |
-
|
307 |
-
.nc_socialPanel.swp_shift .nc_tweetContainer a {
|
308 |
-
-moz-transform: skew(25deg);
|
309 |
-
-o-transform: skew(25deg);
|
310 |
-
-webkit-transform: skew(25deg);
|
311 |
-
}
|
312 |
-
|
313 |
-
.swp_connected .nc_tweetContainer,
|
314 |
-
.swp_connected:hover .nc_tweetContainer,
|
315 |
-
.swp_connected .nc_tweetContainer:hover {
|
316 |
-
-webkit-border-radius: 0!important;
|
317 |
-
border-radius: 0!important;
|
318 |
-
border-width: 1px;
|
319 |
-
margin: 0!important;
|
320 |
-
}
|
321 |
-
|
322 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus,
|
323 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover,
|
324 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover) {
|
325 |
-
border: 1px solid #df4b37;
|
326 |
-
}
|
327 |
-
|
328 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter,
|
329 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover,
|
330 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover) {
|
331 |
-
border: 1px solid #429cd6;
|
332 |
-
}
|
333 |
-
|
334 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb,
|
335 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover,
|
336 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover) {
|
337 |
-
border: 1px solid #3a589e;
|
338 |
-
}
|
339 |
-
|
340 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest,
|
341 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover,
|
342 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover) {
|
343 |
-
border: 1px solid #cd2029;
|
344 |
-
}
|
345 |
-
|
346 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .linkedIn,
|
347 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .linkedIn:hover,
|
348 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .linkedIn:not(:hover) {
|
349 |
-
border: 1px solid #0d77b7;
|
350 |
-
}
|
351 |
-
|
352 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_tumblr,
|
353 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_tumblr:hover,
|
354 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_tumblr:not(:hover) {
|
355 |
-
border: 1px solid #39475d;
|
356 |
-
}
|
357 |
-
|
358 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_stumbleupon,
|
359 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_stumbleupon:hover,
|
360 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_stumbleupon:not(:hover) {
|
361 |
-
border: 1px solid #ef5025;
|
362 |
-
}
|
363 |
-
|
364 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_yummly,
|
365 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_yummly:hover,
|
366 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_yummly:not(:hover) {
|
367 |
-
border: 1px solid #e26426;
|
368 |
-
}
|
369 |
-
|
370 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_reddit,
|
371 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_reddit:hover,
|
372 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_reddit:not(:hover) {
|
373 |
-
border: 1px solid #f04b23;
|
374 |
-
}
|
375 |
-
|
376 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_email,
|
377 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_email:hover,
|
378 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_email:not(:hover) {
|
379 |
-
border: 1px solid #6bcce9;
|
380 |
-
}
|
381 |
-
|
382 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_whatsapp,
|
383 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_whatsapp:hover,
|
384 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_whatsapp:not(:hover) {
|
385 |
-
border: 1px solid #71c169;
|
386 |
-
}
|
387 |
-
|
388 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_pocket,
|
389 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_pocket:hover,
|
390 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_pocket:not(:hover) {
|
391 |
-
border: 1px solid #ef4056;
|
392 |
-
}
|
393 |
-
|
394 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_buffer,
|
395 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_buffer:hover,
|
396 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_buffer:not(:hover) {
|
397 |
-
border: 1px solid #323b43;
|
398 |
-
}
|
399 |
-
|
400 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_hacker_news,
|
401 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_hacker_news:hover,
|
402 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_hacker_news:not(:hover) {
|
403 |
-
border: 1px solid #d85623;
|
404 |
-
}
|
405 |
-
|
406 |
-
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_flipboard,
|
407 |
-
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_flipboard:hover,
|
408 |
-
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_flipboard:not(:hover) {
|
409 |
-
border: 1px solid #bf2626;
|
410 |
-
}
|
411 |
-
|
412 |
-
.nc_socialPanel.swp_d_fullColor .googlePlus,
|
413 |
-
html body .nc_socialPanel.swp_i_fullColor .googlePlus:hover,
|
414 |
-
body .nc_socialPanel.swp_o_fullColor:hover .googlePlus {
|
415 |
-
background: #df4b37;
|
416 |
-
border: 1px solid #c44133;
|
417 |
-
}
|
418 |
-
|
419 |
-
.nc_socialPanel.swp_d_fullColor .twitter,
|
420 |
-
html body .nc_socialPanel.swp_i_fullColor .twitter:hover,
|
421 |
-
body .nc_socialPanel.swp_o_fullColor:hover .twitter {
|
422 |
-
background: #429cd6;
|
423 |
-
border: 1px solid #3c87b2;
|
424 |
-
}
|
425 |
-
|
426 |
-
.nc_socialPanel.swp_d_fullColor .swp_fb,
|
427 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_fb:hover,
|
428 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_fb {
|
429 |
-
background: #3a589e;
|
430 |
-
border: 1px solid #2e4675;
|
431 |
-
}
|
432 |
-
|
433 |
-
.nc_socialPanel.swp_d_fullColor .nc_pinterest,
|
434 |
-
html body .nc_socialPanel.swp_i_fullColor .nc_pinterest:hover,
|
435 |
-
body .nc_socialPanel.swp_o_fullColor:hover .nc_pinterest {
|
436 |
-
background: #cd2029;
|
437 |
-
border: 1px solid #aa1b29;
|
438 |
-
}
|
439 |
-
|
440 |
-
.nc_socialPanel.swp_d_fullColor .linkedIn,
|
441 |
-
html body .nc_socialPanel.swp_i_fullColor .linkedIn:hover,
|
442 |
-
body .nc_socialPanel.swp_o_fullColor:hover .linkedIn {
|
443 |
-
background: #0d77b7;
|
444 |
-
border: 1px solid #0c6591;
|
445 |
-
}
|
446 |
-
|
447 |
-
.nc_socialPanel.swp_d_fullColor .swp_tumblr,
|
448 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_tumblr:hover,
|
449 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_tumblr {
|
450 |
-
background: #39475d;
|
451 |
-
border: 1px solid #27313f;
|
452 |
-
}
|
453 |
-
|
454 |
-
.nc_socialPanel.swp_d_fullColor .swp_stumbleupon,
|
455 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_stumbleupon:hover,
|
456 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_stumbleupon {
|
457 |
-
background: #ef5025;
|
458 |
-
border: 1px solid #d34427;
|
459 |
-
}
|
460 |
-
|
461 |
-
.nc_socialPanel.swp_d_fullColor .swp_yummly,
|
462 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_yummly:hover,
|
463 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_yummly {
|
464 |
-
background: #e26426;
|
465 |
-
border: 1px solid #b65027;
|
466 |
-
}
|
467 |
-
|
468 |
-
.nc_socialPanel.swp_d_fullColor .swp_reddit,
|
469 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_reddit:hover,
|
470 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_reddit {
|
471 |
-
background: #f04b23;
|
472 |
-
border: 1px solid #d33f27;
|
473 |
-
}
|
474 |
-
|
475 |
-
.nc_socialPanel.swp_d_fullColor .swp_email,
|
476 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_email:hover,
|
477 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_email {
|
478 |
-
background: #6bcce9;
|
479 |
-
border: 1px solid #61bace;
|
480 |
-
}
|
481 |
-
|
482 |
-
.nc_socialPanel.swp_d_fullColor .swp_whatsapp,
|
483 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_whatsapp:hover,
|
484 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_whatsapp {
|
485 |
-
background: #71c169;
|
486 |
-
border: 1px solid #28b04b;
|
487 |
-
}
|
488 |
-
|
489 |
-
.nc_socialPanel.swp_d_fullColor .swp_pocket,
|
490 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_pocket:hover,
|
491 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_pocket {
|
492 |
-
background: #ef4056;
|
493 |
-
border: 1px solid #ce3d55;
|
494 |
-
}
|
495 |
-
|
496 |
-
.nc_socialPanel.swp_d_fullColor .swp_buffer,
|
497 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_buffer:hover,
|
498 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_buffer {
|
499 |
-
background: #323b43;
|
500 |
-
border: 1px solid #000;
|
501 |
-
}
|
502 |
-
|
503 |
-
.nc_socialPanel.swp_d_fullColor .swp_hacker_news,
|
504 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_hacker_news:hover,
|
505 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_hacker_news {
|
506 |
-
background: #f16522;
|
507 |
-
border: 1px solid #d85623;
|
508 |
-
}
|
509 |
-
|
510 |
-
.nc_socialPanel.swp_d_fullColor .swp_flipboard,
|
511 |
-
html body .nc_socialPanel.swp_i_fullColor .swp_flipboard:hover,
|
512 |
-
body .nc_socialPanel.swp_o_fullColor:hover .swp_flipboard {
|
513 |
-
background: #e02828;
|
514 |
-
border: 1px solid #bf2626;
|
515 |
-
}
|
516 |
-
|
517 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .googlePlus,
|
518 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .googlePlus:hover,
|
519 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .googlePlus {
|
520 |
-
border-bottom: 3px solid #c44133;
|
521 |
-
}
|
522 |
-
|
523 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .twitter,
|
524 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .twitter:hover,
|
525 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .twitter {
|
526 |
-
border-bottom: 3px solid #5595bc;
|
527 |
-
}
|
528 |
-
|
529 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_fb,
|
530 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_fb:hover,
|
531 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_fb {
|
532 |
-
border-bottom: 3px solid #2e4675;
|
533 |
-
}
|
534 |
-
|
535 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .nc_pinterest,
|
536 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .nc_pinterest:hover,
|
537 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .nc_pinterest {
|
538 |
-
border-bottom: 3px solid #aa1b29;
|
539 |
-
}
|
540 |
-
|
541 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .linkedIn,
|
542 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .linkedIn:hover,
|
543 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .linkedIn {
|
544 |
-
border-bottom: 3px solid #0c6591;
|
545 |
-
}
|
546 |
-
|
547 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_tumblr,
|
548 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_tumblr:hover,
|
549 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_tumblr {
|
550 |
-
border-bottom: 3px solid #27313f;
|
551 |
-
}
|
552 |
-
|
553 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_stumbleupon,
|
554 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_stumbleupon:hover,
|
555 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_stumbleupon {
|
556 |
-
border-bottom: 3px solid #d34427;
|
557 |
-
}
|
558 |
-
|
559 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_yummly,
|
560 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_yummly:hover,
|
561 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_yummly {
|
562 |
-
border-bottom: 3px solid #b65027;
|
563 |
-
}
|
564 |
-
|
565 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_reddit,
|
566 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_reddit:hover,
|
567 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_reddit {
|
568 |
-
border-bottom: 3px solid #d33f27;
|
569 |
-
}
|
570 |
-
|
571 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_email,
|
572 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_email:hover,
|
573 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_email {
|
574 |
-
border-bottom: 3px solid #61bace;
|
575 |
-
}
|
576 |
-
|
577 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_whatsapp,
|
578 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_whatsapp:hover,
|
579 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_whatsapp {
|
580 |
-
border-bottom: 3px solid #28b04b;
|
581 |
-
}
|
582 |
-
|
583 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_pocket,
|
584 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_pocket:hover,
|
585 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_pocket {
|
586 |
-
border-bottom: 3px solid #ce3d55;
|
587 |
-
}
|
588 |
-
|
589 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_buffer,
|
590 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_buffer:hover,
|
591 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_buffer {
|
592 |
-
border-bottom: 3px solid #000;
|
593 |
-
}
|
594 |
-
|
595 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_hacker_news,
|
596 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_hacker_news:hover,
|
597 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_hacker_news {
|
598 |
-
border-bottom: 3px solid #d85623;
|
599 |
-
}
|
600 |
-
|
601 |
-
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_flipboard,
|
602 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_flipboard:hover,
|
603 |
-
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_flipboard {
|
604 |
-
border-bottom: 3px solid #bf2626;
|
605 |
-
}
|
606 |
-
|
607 |
-
.nc_socialPanel.swp_d_lightGray .nc_tweetContainer,
|
608 |
-
html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover,
|
609 |
-
body .nc_socialPanel.swp_o_lightGray:hover .nc_tweetContainer {
|
610 |
-
background-color: #ccc;
|
611 |
-
border: 1px solid #ccc;
|
612 |
-
}
|
613 |
-
|
614 |
-
.nc_socialPanel.swp_threeDee.swp_d_lightGray .nc_tweetContainer:not(.totesalt),
|
615 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_lightGray .nc_tweetContainer:not(.totesalt):hover,
|
616 |
-
body .nc_socialPanel.swp_threeDee.swp_o_lightGray:hover .nc_tweetContainer:not(.totesalt) {
|
617 |
-
border-bottom: 3px solid #999;
|
618 |
-
}
|
619 |
-
|
620 |
-
.nc_socialPanel.swp_d_mediumGray .nc_tweetContainer,
|
621 |
-
html body .nc_socialPanel.swp_i_mediumGray .nc_tweetContainer:hover,
|
622 |
-
body .nc_socialPanel.swp_o_mediumGray:hover .nc_tweetContainer {
|
623 |
-
background-color: #999;
|
624 |
-
border: 1px solid #999;
|
625 |
-
}
|
626 |
-
|
627 |
-
.nc_socialPanel.swp_threeDee.swp_d_mediumGray .nc_tweetContainer:not(.totesalt),
|
628 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_mediumGray .nc_tweetContainer:not(.totesalt):hover,
|
629 |
-
body .nc_socialPanel.swp_threeDee.swp_o_mediumGray:hover .nc_tweetContainer:not(.totesalt) {
|
630 |
-
border-bottom: 3px solid #444;
|
631 |
-
}
|
632 |
-
|
633 |
-
.nc_socialPanel.swp_d_darkGray .nc_tweetContainer,
|
634 |
-
html body .nc_socialPanel.swp_i_darkGray .nc_tweetContainer:hover,
|
635 |
-
body .nc_socialPanel.swp_o_darkGray:hover .nc_tweetContainer {
|
636 |
-
background-color: #444;
|
637 |
-
border: 1px solid #444;
|
638 |
-
}
|
639 |
-
|
640 |
-
.nc_socialPanel.swp_threeDee.swp_d_darkGray .nc_tweetContainer:not(.totesalt),
|
641 |
-
html body .nc_socialPanel.swp_threeDee.swp_i_darkGray .nc_tweetContainer:not(.totesalt):hover,
|
642 |
-
body .nc_socialPanel.swp_threeDee.swp_o_darkGray:hover .nc_tweetContainer:not(.totesalt) {
|
643 |
-
border-bottom: 3px solid #222;
|
644 |
-
}
|
645 |
-
|
646 |
-
.nc_socialPanel.swp_d_lgOutlines a,
|
647 |
-
html body .nc_socialPanel.swp_i_lgOutlines a:hover,
|
648 |
-
body .nc_socialPanel.swp_o_lgOutlines:hover a {
|
649 |
-
color: #ccc;
|
650 |
-
}
|
651 |
-
|
652 |
-
.nc_socialPanel.swp_d_lgOutlines .nc_tweetContainer,
|
653 |
-
html body .nc_socialPanel.swp_i_lgOutlines .nc_tweetContainer:hover,
|
654 |
-
body .nc_socialPanel.swp_o_lgOutlines:hover .nc_tweetContainer {
|
655 |
-
background: transparent;
|
656 |
-
border: 1px solid #ccc;
|
657 |
-
}
|
658 |
-
|
659 |
-
.nc_socialPanel.swp_d_mdOutlines a,
|
660 |
-
html body .nc_socialPanel.swp_i_mdOutlines a:hover,
|
661 |
-
body .nc_socialPanel.swp_o_mdOutlines:hover a {
|
662 |
-
color: #999;
|
663 |
-
}
|
664 |
-
|
665 |
-
.nc_socialPanel.swp_d_mdOutlines .nc_tweetContainer,
|
666 |
-
html body .nc_socialPanel.swp_i_mdOutlines .nc_tweetContainer:hover,
|
667 |
-
body .nc_socialPanel.swp_o_mdOutlines:hover .nc_tweetContainer {
|
668 |
-
background: transparent;
|
669 |
-
border: 1px solid #999;
|
670 |
-
}
|
671 |
-
|
672 |
-
.nc_socialPanel.swp_d_dgOutlines a,
|
673 |
-
html body .nc_socialPanel.swp_i_dgOutlines a:hover,
|
674 |
-
body .nc_socialPanel.swp_o_dgOutlines:hover a {
|
675 |
-
color: #444;
|
676 |
-
}
|
677 |
-
|
678 |
-
.nc_socialPanel.swp_d_dgOutlines .nc_tweetContainer,
|
679 |
-
html body .nc_socialPanel.swp_i_dgOutlines .nc_tweetContainer:hover,
|
680 |
-
body .nc_socialPanel.swp_o_dgOutlines:hover .nc_tweetContainer {
|
681 |
-
background: transparent;
|
682 |
-
border: 1px solid #444;
|
683 |
-
}
|
684 |
-
|
685 |
-
.nc_socialPanel.swp_d_colorOutlines .googlePlus a,
|
686 |
-
html body .nc_socialPanel.swp_i_colorOutlines .googlePlus a:hover,
|
687 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus a {
|
688 |
-
color: #df4b37;
|
689 |
-
}
|
690 |
-
|
691 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_fb a,
|
692 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_fb a:hover,
|
693 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb a {
|
694 |
-
color: #3a589e;
|
695 |
-
}
|
696 |
-
|
697 |
-
.nc_socialPanel.swp_d_colorOutlines .nc_pinterest a,
|
698 |
-
html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest a:hover,
|
699 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest a {
|
700 |
-
color: #cd2029;
|
701 |
-
}
|
702 |
-
|
703 |
-
.nc_socialPanel.swp_d_colorOutlines .linkedIn a,
|
704 |
-
html body .nc_socialPanel.swp_i_colorOutlines .linkedIn a:hover,
|
705 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn a {
|
706 |
-
color: #0d77b7;
|
707 |
-
}
|
708 |
-
|
709 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_tumblr a,
|
710 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr a:hover,
|
711 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr a {
|
712 |
-
color: #39475d;
|
713 |
-
}
|
714 |
-
|
715 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon a,
|
716 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon a:hover,
|
717 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon a {
|
718 |
-
color: #ef5025;
|
719 |
-
}
|
720 |
-
|
721 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_yummly a,
|
722 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly a:hover,
|
723 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly a {
|
724 |
-
color: #e26426;
|
725 |
-
}
|
726 |
-
|
727 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp a,
|
728 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp a:hover,
|
729 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp a {
|
730 |
-
color: #71c169;
|
731 |
-
}
|
732 |
-
|
733 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_pocket a,
|
734 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket a:hover,
|
735 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket a {
|
736 |
-
color: #ef4056;
|
737 |
-
}
|
738 |
-
|
739 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_reddit a,
|
740 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit a:hover,
|
741 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit a {
|
742 |
-
color: #f04b23;
|
743 |
-
}
|
744 |
-
|
745 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_email a,
|
746 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_email a:hover,
|
747 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email a {
|
748 |
-
color: #6bcce9;
|
749 |
-
}
|
750 |
-
|
751 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_buffer a,
|
752 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer a:hover,
|
753 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer a {
|
754 |
-
color: #323b43;
|
755 |
-
}
|
756 |
-
|
757 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news a,
|
758 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news a:hover,
|
759 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news a {
|
760 |
-
color: #f16522;
|
761 |
-
}
|
762 |
-
|
763 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_flipboard a,
|
764 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard a:hover,
|
765 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard a {
|
766 |
-
color: #e02828;
|
767 |
-
}
|
768 |
-
|
769 |
-
.nc_socialPanel.swp_d_colorOutlines .googlePlus,
|
770 |
-
html body .nc_socialPanel.swp_i_colorOutlines .googlePlus:hover,
|
771 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus {
|
772 |
-
background: transparent;
|
773 |
-
border: 1px solid #df4b37;
|
774 |
-
}
|
775 |
-
|
776 |
-
.nc_socialPanel.swp_d_colorOutlines .twitter,
|
777 |
-
html body .nc_socialPanel.swp_i_colorOutlines .twitter:hover,
|
778 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .twitter {
|
779 |
-
background: transparent;
|
780 |
-
border: 1px solid #429cd6;
|
781 |
-
}
|
782 |
-
|
783 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_fb,
|
784 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_fb:hover,
|
785 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb {
|
786 |
-
background: transparent;
|
787 |
-
border: 1px solid #3a589e;
|
788 |
-
}
|
789 |
-
|
790 |
-
.nc_socialPanel.swp_d_colorOutlines .nc_pinterest,
|
791 |
-
html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest:hover,
|
792 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest {
|
793 |
-
background: transparent;
|
794 |
-
border: 1px solid #cd2029;
|
795 |
-
}
|
796 |
-
|
797 |
-
.nc_socialPanel.swp_d_colorOutlines .linkedIn,
|
798 |
-
html body .nc_socialPanel.swp_i_colorOutlines .linkedIn:hover,
|
799 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn {
|
800 |
-
background: transparent;
|
801 |
-
border: 1px solid #0d77b7;
|
802 |
-
}
|
803 |
-
|
804 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_tumblr,
|
805 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr:hover,
|
806 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr {
|
807 |
-
background: transparent;
|
808 |
-
border: 1px solid #39475d;
|
809 |
-
}
|
810 |
-
|
811 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon,
|
812 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon:hover,
|
813 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon {
|
814 |
-
background: transparent;
|
815 |
-
border: 1px solid #ef5025;
|
816 |
-
}
|
817 |
-
|
818 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_yummly,
|
819 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly:hover,
|
820 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly {
|
821 |
-
background: transparent;
|
822 |
-
border: 1px solid #e26426;
|
823 |
-
}
|
824 |
-
|
825 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp,
|
826 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp:hover,
|
827 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp {
|
828 |
-
background: transparent;
|
829 |
-
border: 1px solid #71c169;
|
830 |
-
}
|
831 |
-
|
832 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_reddit,
|
833 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit:hover,
|
834 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit {
|
835 |
-
background: transparent;
|
836 |
-
border: 1px solid #f04b23;
|
837 |
-
}
|
838 |
-
|
839 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_email,
|
840 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_email:hover,
|
841 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email {
|
842 |
-
background: transparent;
|
843 |
-
border: 1px solid #6bcce9;
|
844 |
-
}
|
845 |
-
|
846 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_pocket,
|
847 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket:hover,
|
848 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket {
|
849 |
-
background: transparent;
|
850 |
-
border: 1px solid #ef4056;
|
851 |
-
}
|
852 |
-
|
853 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_buffer,
|
854 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer:hover,
|
855 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer {
|
856 |
-
background: transparent;
|
857 |
-
border: 1px solid #323b43;
|
858 |
-
}
|
859 |
-
|
860 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news,
|
861 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news:hover,
|
862 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news {
|
863 |
-
background: transparent;
|
864 |
-
border: 1px solid #f16522;
|
865 |
-
}
|
866 |
-
|
867 |
-
.nc_socialPanel.swp_d_colorOutlines .swp_flipboard,
|
868 |
-
html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard:hover,
|
869 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard {
|
870 |
-
background: transparent;
|
871 |
-
border: 1px solid #bf2626;
|
872 |
-
}
|
873 |
-
|
874 |
-
.nc_socialPanelSide {
|
875 |
-
flex-direction: column;
|
876 |
-
height: auto;
|
877 |
-
overflow: visible;
|
878 |
-
top: 200px;
|
879 |
-
-webkit-transition: all 0.2s linear;
|
880 |
-
transition: all 0.2s linear;
|
881 |
-
width: 100px!important;
|
882 |
-
z-index: 9999999;
|
883 |
-
|
884 |
-
-webkit-box-direction: normal;
|
885 |
-
-moz-box-direction: normal;
|
886 |
-
-webkit-box-orient: vertical;
|
887 |
-
-moz-box-orient: vertical;
|
888 |
-
-webkit-flex-direction: column;
|
889 |
-
-ms-flex-direction: column;
|
890 |
-
}
|
891 |
-
|
892 |
-
.nc_socialPanelSide.slide {
|
893 |
-
position: fixed;
|
894 |
-
left: -100px;
|
895 |
-
-webkit-transition: all 0.2s linear;
|
896 |
-
transition: all 0.2s linear;
|
897 |
-
}
|
898 |
-
|
899 |
-
.nc_socialPanelSide.fade {
|
900 |
-
display: none;
|
901 |
-
position: fixed;
|
902 |
-
left: 5px;
|
903 |
-
-webkit-transition: all 0.2s linear;
|
904 |
-
transition: all 0.2s linear;
|
905 |
-
}
|
906 |
-
|
907 |
-
.nc_socialPanelSide .nc_tweetContainer {
|
908 |
-
background: #dd4b38;
|
909 |
-
-webkit-border-radius: 3px;
|
910 |
-
border-radius: 3px;
|
911 |
-
clear: both;
|
912 |
-
display: block;
|
913 |
-
font-family: Lato, sans-serif;
|
914 |
-
height: 32px;
|
915 |
-
margin: 3px 0!important;
|
916 |
-
overflow: hidden;
|
917 |
-
padding: 0;
|
918 |
-
-webkit-transition: all 0.1s linear;
|
919 |
-
transition: all 0.1s linear;
|
920 |
-
vertical-align: top;
|
921 |
-
width: 90px;
|
922 |
-
}
|
923 |
-
|
924 |
-
.nc_socialPanelSide .nc_tweetContainer .iconFiller {
|
925 |
-
display: inline-block;
|
926 |
-
height: 40px;
|
927 |
-
margin: 0 6px;
|
928 |
-
padding: 0;
|
929 |
-
-webkit-transition: all 0.1s linear;
|
930 |
-
transition: all 0.1s linear;
|
931 |
-
vertical-align: middle;
|
932 |
-
width: 21px;
|
933 |
-
}
|
934 |
-
|
935 |
-
.nc_socialPanelSide .nc_tweetContainer .swp_count {
|
936 |
-
display: inline-block;
|
937 |
-
font-size: 14px;
|
938 |
-
height: 32px;
|
939 |
-
line-height: 35px;
|
940 |
-
margin: 0;
|
941 |
-
overflow: hidden;
|
942 |
-
padding: 0;
|
943 |
-
text-align: right;
|
944 |
-
-webkit-transition: all 0.1s linear;
|
945 |
-
transition: all 0.1s linear;
|
946 |
-
vertical-align: top;
|
947 |
-
width: 0;
|
948 |
-
}
|
949 |
-
|
950 |
-
.nc_socialPanelSide .nc_tweetContainer a {
|
951 |
-
cursor: pointer;
|
952 |
-
display: block;
|
953 |
-
font-weight: 500;
|
954 |
-
height: 36px;
|
955 |
-
margin: 0;
|
956 |
-
padding: 0;
|
957 |
-
text-decoration: none;
|
958 |
-
-webkit-transition: all 0.1s linear;
|
959 |
-
transition: all 0.1s linear;
|
960 |
-
vertical-align: top;
|
961 |
-
}
|
962 |
-
|
963 |
-
.nc_socialPanelSide .nc_tweetContainer .sw,
|
964 |
-
.nc_socialPanelSide .nc_tweetContainer .swp_share {
|
965 |
-
float: left;
|
966 |
-
line-height: 34px;
|
967 |
-
}
|
968 |
-
|
969 |
-
.nc_socialPanelSide.swp_default .nc_tweetContainer .sw {
|
970 |
-
line-height: 32px;
|
971 |
-
}
|
972 |
-
|
973 |
-
.nc_socialPanelSide.swp_default .nc_tweetContainer .swp_share {
|
974 |
-
line-height: 30px;
|
975 |
-
}
|
976 |
-
|
977 |
-
.nc_socialPanelSide .nc_tweetContainer .swp_share {
|
978 |
-
font-size: 13px;
|
979 |
-
}
|
980 |
-
|
981 |
-
.nc_socialPanelSide .nc_tweetContainer:hover,
|
982 |
-
.nc_socialPanelSide .nc_tweetContainer:hover .iconFiller,
|
983 |
-
.nc_socialPanelSide .nc_tweetContainer:hover .swp_count {
|
984 |
-
-webkit-transition: all 0.1s linear;
|
985 |
-
transition: all 0.1s linear;
|
986 |
-
}
|
987 |
-
|
988 |
-
.nc_socialPanelSide.swp_boxed {
|
989 |
-
-ms-transform: scale(0.9);
|
990 |
-
-webkit-transform: scale(0.9);
|
991 |
-
transform: scale(0.9);
|
992 |
-
}
|
993 |
-
|
994 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer {
|
995 |
-
margin-bottom: 5px;
|
996 |
-
}
|
997 |
-
|
998 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer,
|
999 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer a {
|
1000 |
-
height: 75px;
|
1001 |
-
position: relative;
|
1002 |
-
width: 75px;
|
1003 |
-
}
|
1004 |
-
|
1005 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer i.sw {
|
1006 |
-
font-size: 27px;
|
1007 |
-
height: 40px;
|
1008 |
-
margin: 0;
|
1009 |
-
padding-top: 10px;
|
1010 |
-
text-align: center;
|
1011 |
-
width: 100%;
|
1012 |
-
}
|
1013 |
-
|
1014 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_share {
|
1015 |
-
height: 35px;
|
1016 |
-
opacity: 0;
|
1017 |
-
position: absolute;
|
1018 |
-
bottom: 0;
|
1019 |
-
left: 0;
|
1020 |
-
text-align: center;
|
1021 |
-
width: 75px;
|
1022 |
-
}
|
1023 |
-
|
1024 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count {
|
1025 |
-
height: 35px;
|
1026 |
-
margin: 0;
|
1027 |
-
padding: 0;
|
1028 |
-
position: absolute;
|
1029 |
-
bottom: 0;
|
1030 |
-
left: 0;
|
1031 |
-
text-align: center;
|
1032 |
-
-webkit-transition: padding 0.1s linear;
|
1033 |
-
transition: padding 0.1s linear;
|
1034 |
-
width: 100%;
|
1035 |
-
}
|
1036 |
-
|
1037 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count.swp_hide,
|
1038 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,
|
1039 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly {
|
1040 |
-
height: 75px;
|
1041 |
-
opacity: 1;
|
1042 |
-
}
|
1043 |
-
|
1044 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.iconFiller {
|
1045 |
-
height: 40px;
|
1046 |
-
width: 75px;
|
1047 |
-
}
|
1048 |
-
|
1049 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_count:not(.swp_hide) {
|
1050 |
-
opacity: 0;
|
1051 |
-
}
|
1052 |
-
|
1053 |
-
.nc_socialPanelSide.swp_boxed .totes {
|
1054 |
-
padding: 0;
|
1055 |
-
width: 75px!important;
|
1056 |
-
}
|
1057 |
-
|
1058 |
-
.nc_socialPanelSide .nc_tweetContainer:not(.totes) {
|
1059 |
-
line-height: 34px;
|
1060 |
-
}
|
1061 |
-
|
1062 |
-
.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes) .iconFiller {
|
1063 |
-
margin-left: 2px;
|
1064 |
-
width: 30px;
|
1065 |
-
}
|
1066 |
-
|
1067 |
-
.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count {
|
1068 |
-
padding: 0 8px;
|
1069 |
-
width: 48px;
|
1070 |
-
}
|
1071 |
-
|
1072 |
-
.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count.swp_hide {
|
1073 |
-
padding: 0;
|
1074 |
-
width: 100%;
|
1075 |
-
}
|
1076 |
-
|
1077 |
-
.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_hide .iconFiller {
|
1078 |
-
display: block;
|
1079 |
-
float: none;
|
1080 |
-
margin: 0 auto;
|
1081 |
-
}
|
1082 |
-
|
1083 |
-
.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes):hover {
|
1084 |
-
width: 150px;
|
1085 |
-
}
|
1086 |
-
|
1087 |
-
.nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller,
|
1088 |
-
.nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly {
|
1089 |
-
width: 90px;
|
1090 |
-
}
|
1091 |
-
|
1092 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover .iconFiller,
|
1093 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .spaceManWilly {
|
1094 |
-
width: 100%;
|
1095 |
-
}
|
1096 |
-
|
1097 |
-
.nc_socialPanelSide .nc_tweetContainer.totes {
|
1098 |
-
background: rgba(0, 0, 0, 0);
|
1099 |
-
border: 0!important;
|
1100 |
-
font-weight: 800;
|
1101 |
-
height: 45px;
|
1102 |
-
margin: 0;
|
1103 |
-
padding: 0;
|
1104 |
-
text-align: center;
|
1105 |
-
width: 90px;
|
1106 |
-
}
|
1107 |
-
|
1108 |
-
.nc_socialPanelSide .nc_tweetContainer.totes .swp_count {
|
1109 |
-
color: #444;
|
1110 |
-
display: block;
|
1111 |
-
font-family: Lato, sans-serif;
|
1112 |
-
height: 28px;
|
1113 |
-
text-align: center;
|
1114 |
-
width: 100%;
|
1115 |
-
}
|
1116 |
-
|
1117 |
-
.nc_socialPanelSide .nc_tweetContainer.totes .swp_label {
|
1118 |
-
color: #444;
|
1119 |
-
display: block;
|
1120 |
-
font-family: Lato, sans-serif;
|
1121 |
-
font-size: 50%;
|
1122 |
-
position: relative;
|
1123 |
-
text-align: center;
|
1124 |
-
width: 100%;
|
1125 |
-
}
|
1126 |
-
|
1127 |
-
.nc_wrapper {
|
1128 |
-
background: white;
|
1129 |
-
position: fixed;
|
1130 |
-
-webkit-transition: top 0.5s bottom 0.5s;
|
1131 |
-
transition: top 0.5s bottom 0.5s;
|
1132 |
-
width: 100%;
|
1133 |
-
z-index: 99999;
|
1134 |
-
}
|
1135 |
-
|
1136 |
-
.nc_wrapper.floatBottom {
|
1137 |
-
bottom: 0;
|
1138 |
-
left: 0;
|
1139 |
-
}
|
1140 |
-
|
1141 |
-
.nc_wrapper.floatTop {
|
1142 |
-
top: 0;
|
1143 |
-
left: 0;
|
1144 |
-
}
|
1145 |
-
|
1146 |
-
.nc_floater {
|
1147 |
-
margin: 10px 0;
|
1148 |
-
position: relative;
|
1149 |
-
left: 304px;
|
1150 |
-
width: 740px;
|
1151 |
-
}
|
1152 |
-
|
1153 |
-
.nc_socialPanelSide.hideCounts a {
|
1154 |
-
text-align: center;
|
1155 |
-
}
|
1156 |
-
|
1157 |
-
.nc_socialPanelSide.hideCounts .iconFiller {
|
1158 |
-
float: none;
|
1159 |
-
text-align: left;
|
1160 |
-
}
|
1161 |
-
|
1162 |
-
.sw {
|
1163 |
-
display: inline-block;
|
1164 |
-
font-family: sw-icon-font!important;
|
1165 |
-
font-size: inherit;
|
1166 |
-
-moz-osx-font-smoothing: grayscale;
|
1167 |
-
-webkit-font-smoothing: antialiased;
|
1168 |
-
font-style: normal;
|
1169 |
-
font-weight: normal;
|
1170 |
-
text-rendering: auto;
|
1171 |
-
-ms-transform: translate(0, 0);
|
1172 |
-
-webkit-transform: translate(0, 0);
|
1173 |
-
transform: translate(0, 0);
|
1174 |
-
}
|
1175 |
-
|
1176 |
-
.sw:before {
|
1177 |
-
display: block!important;
|
1178 |
-
}
|
1179 |
-
|
1180 |
-
.wp-editor-container .sw:before {
|
1181 |
-
font-size: 18px;
|
1182 |
-
line-height: 22px;
|
1183 |
-
}
|
1184 |
-
|
1185 |
-
.wp-editor-container .sw-social-warfare:before {
|
1186 |
-
color: #ee464f;
|
1187 |
-
}
|
1188 |
-
|
1189 |
-
.mce-container .sw-social-warfare {
|
1190 |
-
color: #ee464f;
|
1191 |
-
font-size: 20px;
|
1192 |
-
margin-right: 15px;
|
1193 |
-
vertical-align: middle;
|
1194 |
-
}
|
1195 |
-
|
1196 |
-
.sw-google-plus:before {
|
1197 |
-
content: "h";
|
1198 |
-
}
|
1199 |
-
|
1200 |
-
.sw-pinterest:before {
|
1201 |
-
content: "b";
|
1202 |
-
}
|
1203 |
-
|
1204 |
-
.sw-twitter:before {
|
1205 |
-
content: "s";
|
1206 |
-
}
|
1207 |
-
|
1208 |
-
.sw-facebook:before {
|
1209 |
-
content: "j";
|
1210 |
-
}
|
1211 |
-
|
1212 |
-
.sw-linkedin:before {
|
1213 |
-
content: "f";
|
1214 |
-
}
|
1215 |
-
|
1216 |
-
.sw-tumblr:before {
|
1217 |
-
content: "r";
|
1218 |
-
}
|
1219 |
-
|
1220 |
-
.sw-stumbleupon:before {
|
1221 |
-
content: "q";
|
1222 |
-
}
|
1223 |
-
|
1224 |
-
.sw-reddit:before {
|
1225 |
-
content: "a";
|
1226 |
-
}
|
1227 |
-
|
1228 |
-
.sw-email:before {
|
1229 |
-
content: "k";
|
1230 |
-
}
|
1231 |
-
|
1232 |
-
.sw-yummly:before {
|
1233 |
-
content: "x";
|
1234 |
-
}
|
1235 |
-
|
1236 |
-
.sw-whatsapp:before {
|
1237 |
-
content: "y";
|
1238 |
-
}
|
1239 |
-
|
1240 |
-
.sw-pocket:before {
|
1241 |
-
content: "B";
|
1242 |
-
}
|
1243 |
-
|
1244 |
-
.sw-buffer:before {
|
1245 |
-
content: "z";
|
1246 |
-
}
|
1247 |
-
|
1248 |
-
.sw-hacker_news:before {
|
1249 |
-
content: "D";
|
1250 |
-
}
|
1251 |
-
|
1252 |
-
.sw-flipboard:before {
|
1253 |
-
content: "C";
|
1254 |
-
}
|
1255 |
-
|
1256 |
-
.sw-social-warfare:before {
|
1257 |
-
content: "p";
|
1258 |
-
}
|
1259 |
-
|
1260 |
-
.swp_CTT {
|
1261 |
-
text-decoration: none!important;
|
1262 |
-
}
|
1263 |
-
|
1264 |
-
.sw-tweet-clear {
|
1265 |
-
zoom: 1;
|
1266 |
-
}
|
1267 |
-
|
1268 |
-
.sw-tweet-clear:after {
|
1269 |
-
clear: both;
|
1270 |
-
content: ".";
|
1271 |
-
display: block;
|
1272 |
-
height: 0;
|
1273 |
-
visibility: hidden;
|
1274 |
-
}
|
1275 |
-
|
1276 |
-
.sw-click-to-tweet {
|
1277 |
-
display: block;
|
1278 |
-
margin: 15px 0;
|
1279 |
-
padding: 15px 30px;
|
1280 |
-
position: relative;
|
1281 |
-
}
|
1282 |
-
|
1283 |
-
.sw-click-to-tweet:after {
|
1284 |
-
clear: both;
|
1285 |
-
content: ".";
|
1286 |
-
display: block;
|
1287 |
-
height: 0;
|
1288 |
-
line-height: 0;
|
1289 |
-
visibility: hidden;
|
1290 |
-
}
|
1291 |
-
|
1292 |
-
.sw-click-to-tweet .sw-ctt-text {
|
1293 |
-
margin: 0 0 10px;
|
1294 |
-
padding: 0;
|
1295 |
-
position: relative;
|
1296 |
-
word-wrap: break-word;
|
1297 |
-
}
|
1298 |
-
|
1299 |
-
a .sw-click-to-tweet .sw-ctt-text {
|
1300 |
-
display: block;
|
1301 |
-
font-size: 24px;
|
1302 |
-
font-weight: 500;
|
1303 |
-
line-height: 140%;
|
1304 |
-
margin: 0;
|
1305 |
-
padding: 0;
|
1306 |
-
position: relative;
|
1307 |
-
text-decoration: none;
|
1308 |
-
text-transform: none;
|
1309 |
-
}
|
1310 |
-
|
1311 |
-
.sw-click-to-tweet .sw-ctt-btn {
|
1312 |
-
display: block;
|
1313 |
-
float: right;
|
1314 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1315 |
-
font-size: 12px;
|
1316 |
-
font-weight: bold;
|
1317 |
-
line-height: 100%;
|
1318 |
-
margin: 10px 0 0;
|
1319 |
-
padding: 3px 5px 3px 3px;
|
1320 |
-
position: relative;
|
1321 |
-
text-decoration: none;
|
1322 |
-
text-transform: uppercase;
|
1323 |
-
}
|
1324 |
-
|
1325 |
-
.sw-click-to-tweet i.sw-twitter {
|
1326 |
-
float: right;
|
1327 |
-
font-size: 21px;
|
1328 |
-
margin-left: 15px;
|
1329 |
-
margin-top: 2px;
|
1330 |
-
text-transform: none;
|
1331 |
-
}
|
1332 |
-
|
1333 |
-
a.swp_CTT.style1 .sw-click-to-tweet {
|
1334 |
-
background-color: #fff;
|
1335 |
-
border: 1px solid #ddd;
|
1336 |
-
-webkit-border-radius: 4px;
|
1337 |
-
border-radius: 4px;
|
1338 |
-
}
|
1339 |
-
|
1340 |
-
a.swp_CTT.style2 .sw-click-to-tweet {
|
1341 |
-
background-color: #fff;
|
1342 |
-
border: 4px double #ddd;
|
1343 |
-
-webkit-border-radius: 0;
|
1344 |
-
border-radius: 0;
|
1345 |
-
}
|
1346 |
-
|
1347 |
-
a.style2 .sw-click-to-tweet .sw-ctt-text {
|
1348 |
-
color: #666;
|
1349 |
-
font-style: italic;
|
1350 |
-
text-decoration: none;
|
1351 |
-
}
|
1352 |
-
|
1353 |
-
a.swp_CTT.style3:hover .sw-click-to-tweet {
|
1354 |
-
border-left: 10px solid #3c87b2;
|
1355 |
-
padding-right: 20px;
|
1356 |
-
-webkit-transition: all 0.25s linear;
|
1357 |
-
transition: all 0.25s linear;
|
1358 |
-
}
|
1359 |
-
|
1360 |
-
a.swp_CTT.style3 .sw-click-to-tweet {
|
1361 |
-
background-color: #429cd6;
|
1362 |
-
border: none;
|
1363 |
-
border-left: 10px solid #429cd6;
|
1364 |
-
-webkit-border-radius: 0;
|
1365 |
-
border-radius: 0;
|
1366 |
-
padding-right: 20px;
|
1367 |
-
-webkit-transition: all 0.25s linear;
|
1368 |
-
transition: all 0.25s linear;
|
1369 |
-
}
|
1370 |
-
|
1371 |
-
a.style3 .sw-click-to-tweet .sw-ctt-text {
|
1372 |
-
color: #fff;
|
1373 |
-
font-style: italic;
|
1374 |
-
text-decoration: none;
|
1375 |
-
}
|
1376 |
-
|
1377 |
-
a.swp_CTT.style4:hover .sw-click-to-tweet {
|
1378 |
-
border-left: 10px solid #3c87b2;
|
1379 |
-
-webkit-transition: all 0.25s linear;
|
1380 |
-
transition: all 0.25s linear;
|
1381 |
-
}
|
1382 |
-
|
1383 |
-
a.swp_CTT.style4 .sw-click-to-tweet {
|
1384 |
-
background-color: #333;
|
1385 |
-
border-left: 10px solid #c33;
|
1386 |
-
-webkit-border-radius: 0;
|
1387 |
-
border-radius: 0;
|
1388 |
-
-webkit-transition: all 0.25s linear;
|
1389 |
-
transition: all 0.25s linear;
|
1390 |
-
}
|
1391 |
-
|
1392 |
-
a.swp_CTT.style5:hover .sw-click-to-tweet {
|
1393 |
-
background-color: #d34250;
|
1394 |
-
border-left: 10px solid #30394f;
|
1395 |
-
-webkit-transition: all 0.25s linear;
|
1396 |
-
transition: all 0.25s linear;
|
1397 |
-
}
|
1398 |
-
|
1399 |
-
a.swp_CTT.style5 .sw-click-to-tweet {
|
1400 |
-
background-color: #30394f;
|
1401 |
-
border-left: 10px solid #d34250;
|
1402 |
-
-webkit-border-radius: 0;
|
1403 |
-
border-radius: 0;
|
1404 |
-
-webkit-transition: all 0.25s linear;
|
1405 |
-
transition: all 0.25s linear;
|
1406 |
-
}
|
1407 |
-
|
1408 |
-
a.swp_CTT.style6:hover .sw-click-to-tweet {
|
1409 |
-
background-color: #ced3dc;
|
1410 |
-
border-left: 10px solid #d34250;
|
1411 |
-
-webkit-transition: all 0.25s linear;
|
1412 |
-
transition: all 0.25s linear;
|
1413 |
-
}
|
1414 |
-
|
1415 |
-
a.swp_CTT.style6 .sw-click-to-tweet {
|
1416 |
-
background-color: #eee;
|
1417 |
-
border-left: 10px solid #d34250;
|
1418 |
-
-webkit-border-radius: 0;
|
1419 |
-
border-radius: 0;
|
1420 |
-
-webkit-transition: all 0.25s linear;
|
1421 |
-
transition: all 0.25s linear;
|
1422 |
-
}
|
1423 |
-
|
1424 |
-
a.style6 .sw-click-to-tweet i.sw-twitter {
|
1425 |
-
color: #30394f;
|
1426 |
-
}
|
1427 |
-
|
1428 |
-
.swp_pop_thumb {
|
1429 |
-
-webkit-border-radius: 3px;
|
1430 |
-
border-radius: 3px;
|
1431 |
-
float: left;
|
1432 |
-
height: 100px;
|
1433 |
-
margin: 5px 25px 5px 0;
|
1434 |
-
width: 100px;
|
1435 |
-
}
|
1436 |
-
|
1437 |
-
.swp_popular_post {
|
1438 |
-
clear: both;
|
1439 |
-
}
|
1440 |
-
|
1441 |
-
.swp_clearfix:after {
|
1442 |
-
clear: both;
|
1443 |
-
content: " ";
|
1444 |
-
display: block;
|
1445 |
-
height: 0;
|
1446 |
-
visibility: hidden;
|
1447 |
-
}
|
1448 |
-
|
1449 |
-
.swp_popular_post a.swp_popularity {
|
1450 |
-
border: none;
|
1451 |
-
display: block;
|
1452 |
-
line-height: 1.5;
|
1453 |
-
margin: 20px 0;
|
1454 |
-
}
|
1455 |
-
|
1456 |
-
span.swp_pop_count {
|
1457 |
-
display: block;
|
1458 |
-
font-size: 70%;
|
1459 |
-
}
|
1460 |
-
|
1461 |
-
.swp_widget_box {
|
1462 |
-
-webkit-border-radius: 3px;
|
1463 |
-
border-radius: 3px;
|
1464 |
-
}
|
1465 |
-
|
1466 |
-
div.sw-pinit {
|
1467 |
-
display: table !important;
|
1468 |
-
line-height: 0;
|
1469 |
-
position: relative !important;
|
1470 |
-
}
|
1471 |
-
|
1472 |
-
div.sw-pinit a.sw-pinit-button,
|
1473 |
-
div.sw-pinit a.sw-pinit-button:visited {
|
1474 |
-
background: #cd2029;
|
1475 |
-
border: 1px solid #aa1b29;
|
1476 |
-
-webkit-border-radius: 4px;
|
1477 |
-
border-radius: 4px;
|
1478 |
-
color: #fff;
|
1479 |
-
font-size: 20px;
|
1480 |
-
height: 50px;
|
1481 |
-
line-height: 45px;
|
1482 |
-
opacity: 0;
|
1483 |
-
padding: 0 30px;
|
1484 |
-
position: absolute;
|
1485 |
-
text-decoration: none;
|
1486 |
-
-webkit-transition: opacity 0.5s;
|
1487 |
-
transition: opacity 0.5s;
|
1488 |
-
z-index: 200;
|
1489 |
-
}
|
1490 |
-
|
1491 |
-
div.sw-pinit:hover a.sw-pinit-button,
|
1492 |
-
div.sw-pinit:focus a.sw-pinit-button {
|
1493 |
-
opacity: 1;
|
1494 |
-
}
|
1495 |
-
|
1496 |
-
div.sw-pinit a.sw-pinit-button::before {
|
1497 |
-
color: #fff;
|
1498 |
-
content: "b";
|
1499 |
-
float: left;
|
1500 |
-
font-family: sw-icon-font;
|
1501 |
-
font-size: 24px;
|
1502 |
-
font-weight: normal;
|
1503 |
-
line-height: 50px;
|
1504 |
-
margin-left: -5px;
|
1505 |
-
margin-right: 10px;
|
1506 |
-
}
|
1507 |
-
|
1508 |
-
div.sw-pinit a.sw-pinit-button:hover::before {
|
1509 |
-
content: "F";
|
1510 |
-
}
|
1511 |
-
|
1512 |
-
div.sw-pinit a.sw-pinit-button::hover,
|
1513 |
-
div.sw-pinit a.sw-pinit-button::focus {
|
1514 |
-
background: #aa1b29;
|
1515 |
-
color: #fff;
|
1516 |
-
text-decoration: none;
|
1517 |
-
}
|
1518 |
-
|
1519 |
-
div.sw-pinit .sw-pinit-left {
|
1520 |
-
left: 30px;
|
1521 |
-
}
|
1522 |
-
|
1523 |
-
div.sw-pinit .sw-pinit-center {
|
1524 |
-
margin-left: -60px;
|
1525 |
-
left: 50%;
|
1526 |
-
}
|
1527 |
-
|
1528 |
-
div.sw-pinit .sw-pinit-right {
|
1529 |
-
right: 30px;
|
1530 |
-
}
|
1531 |
-
|
1532 |
-
div.sw-pinit .sw-pinit-top {
|
1533 |
-
top: 30px;
|
1534 |
-
}
|
1535 |
-
|
1536 |
-
div.sw-pinit .sw-pinit-middle {
|
1537 |
-
margin-top: -25px;
|
1538 |
-
top: 50%;
|
1539 |
-
}
|
1540 |
-
|
1541 |
-
div.sw-pinit .sw-pinit-bottom {
|
1542 |
-
bottom: 30px;
|
1543 |
-
}
|
1544 |
-
|
1545 |
-
.nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1),
|
1546 |
-
.mobile .nc_tweetContainer:nth-last-child(2),
|
1547 |
-
.nc_tweetContainer.totes:nth-last-child(1) {
|
1548 |
-
margin-right: 0;
|
1549 |
-
}
|
1550 |
-
|
1551 |
-
.nc_socialPanel.swp_d_fullColor a,
|
1552 |
-
html body .nc_socialPanel.swp_i_fullColor .nc_tweetContainer:hover a,
|
1553 |
-
body .nc_socialPanel.swp_o_fullColor:hover a,
|
1554 |
-
.nc_socialPanel.swp_d_lightGray a,
|
1555 |
-
html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover a,
|
1556 |
-
body .nc_socialPanel.swp_o_lightGray:hover a,
|
1557 |
-
.nc_socialPanel.swp_d_mediumGray a,
|
1558 |
-
html body .nc_socialPanel.swp_i_mediumGray a:hover,
|
1559 |
-
body .nc_socialPanel.swp_o_mediumGray:hover a,
|
1560 |
-
.nc_socialPanel.swp_d_darkGray a,
|
1561 |
-
html body .nc_socialPanel.swp_i_darkGray a:hover,
|
1562 |
-
body .nc_socialPanel.swp_o_darkGray:hover a {
|
1563 |
-
color: white;
|
1564 |
-
}
|
1565 |
-
|
1566 |
-
.nc_socialPanel.swp_d_colorOutlines .twitter a,
|
1567 |
-
html body .nc_socialPanel.swp_i_colorOutlines .twitter a:hover,
|
1568 |
-
body .nc_socialPanel.swp_o_colorOutlines:hover .twitter a,
|
1569 |
-
.wp-editor-container .sw-twitter:before,
|
1570 |
-
a.style1 .sw-click-to-tweet i.sw-twitter,
|
1571 |
-
a.style2 .sw-click-to-tweet i.sw-twitter {
|
1572 |
-
color: #429cd6;
|
1573 |
-
}
|
1574 |
-
|
1575 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .swp_hide span.swp_share,
|
1576 |
-
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_share:not(.swp_hide) {
|
1577 |
-
opacity: 1;
|
1578 |
-
}
|
1579 |
-
|
1580 |
-
.nc_socialPanel.mobile .iconFiller ~ .swp_count,
|
1581 |
-
.sw-content-locator {
|
1582 |
-
display: none;
|
1583 |
-
}
|
1584 |
-
|
1585 |
-
a.style1 .sw-click-to-tweet .sw-ctt-text,
|
1586 |
-
a.style1 .sw-click-to-tweet .sw-ctt-btn {
|
1587 |
-
color: #999;
|
1588 |
-
text-decoration: none;
|
1589 |
-
}
|
1590 |
-
|
1591 |
-
a.style1:hover .sw-click-to-tweet .sw-ctt-text,
|
1592 |
-
a.style1:hover .sw-click-to-tweet .sw-ctt-btn,
|
1593 |
-
a.style2:hover .sw-click-to-tweet .sw-ctt-text,
|
1594 |
-
a.style2 .sw-click-to-tweet .sw-ctt-btn,
|
1595 |
-
a.style2:hover .sw-click-to-tweet .sw-ctt-btn {
|
1596 |
-
color: #666;
|
1597 |
-
text-decoration: none;
|
1598 |
-
}
|
1599 |
-
|
1600 |
-
a.style3:hover .sw-click-to-tweet .sw-ctt-text,
|
1601 |
-
a.style3 .sw-click-to-tweet .sw-ctt-btn,
|
1602 |
-
a.style3:hover .sw-click-to-tweet .sw-ctt-btn,
|
1603 |
-
a.style3 .sw-click-to-tweet i.sw-twitter,
|
1604 |
-
a.style4 .sw-click-to-tweet .sw-ctt-text,
|
1605 |
-
a.style4:hover .sw-click-to-tweet .sw-ctt-text,
|
1606 |
-
a.style4 .sw-click-to-tweet .sw-ctt-btn,
|
1607 |
-
a.style4:hover .sw-click-to-tweet .sw-ctt-btn,
|
1608 |
-
a.style5 .sw-click-to-tweet .sw-ctt-text,
|
1609 |
-
a.style5:hover .sw-click-to-tweet .sw-ctt-text,
|
1610 |
-
a.style5 .sw-click-to-tweet .sw-ctt-btn,
|
1611 |
-
a.style5:hover .sw-click-to-tweet .sw-ctt-btn {
|
1612 |
-
color: #fff;
|
1613 |
-
text-decoration: none;
|
1614 |
-
}
|
1615 |
-
|
1616 |
-
a.style4 .sw-click-to-tweet i.sw-twitter,
|
1617 |
-
a.style5 .sw-click-to-tweet i.sw-twitter {
|
1618 |
-
color: #fff;
|
1619 |
-
}
|
1620 |
-
|
1621 |
-
a.style6 .sw-click-to-tweet .sw-ctt-text,
|
1622 |
-
a.style6 .sw-click-to-tweet .sw-ctt-btn {
|
1623 |
-
color: #30394f;
|
1624 |
-
text-decoration: none;
|
1625 |
-
}
|
1626 |
-
|
1627 |
-
a.style6:hover .sw-click-to-tweet .sw-ctt-text,
|
1628 |
-
a.style6:hover .sw-click-to-tweet .sw-ctt-btn,
|
1629 |
-
a.style6:hover .sw-click-to-tweet i.sw-twitter {
|
1630 |
-
color: #2a2d34;
|
1631 |
-
text-decoration: none;
|
1632 |
-
}
|
1633 |
-
|
1634 |
-
.scale-70 {
|
1635 |
-
-ms-transform: scale(0.7);
|
1636 |
-
-webkit-transform: scale(0.7);
|
1637 |
-
transform: scale(0.7);
|
1638 |
-
}
|
1639 |
-
|
1640 |
-
.nc_socialPanel:not(.nc_floater).scale-70.scale-fullWidth {
|
1641 |
-
width: 142.8571428571429%!important;
|
1642 |
-
}
|
1643 |
-
|
1644 |
-
.scale-80 {
|
1645 |
-
-ms-transform: scale(0.8);
|
1646 |
-
-webkit-transform: scale(0.8);
|
1647 |
-
transform: scale(0.8);
|
1648 |
-
}
|
1649 |
-
|
1650 |
-
.nc_socialPanel:not(.nc_floater).scale-80.scale-fullWidth {
|
1651 |
-
width: 125%!important;
|
1652 |
-
}
|
1653 |
-
|
1654 |
-
.scale-90 {
|
1655 |
-
-ms-transform: scale(0.9);
|
1656 |
-
-webkit-transform: scale(0.9);
|
1657 |
-
transform: scale(0.9);
|
1658 |
-
}
|
1659 |
-
|
1660 |
-
.nc_socialPanel:not(.nc_floater).scale-90.scale-fullWidth {
|
1661 |
-
width: 111.111111111111%!important;
|
1662 |
-
}
|
1663 |
-
|
1664 |
-
.scale-110 {
|
1665 |
-
-ms-transform: scale(1.1);
|
1666 |
-
-webkit-transform: scale(1.1);
|
1667 |
-
transform: scale(1.1);
|
1668 |
-
}
|
1669 |
-
|
1670 |
-
.nc_socialPanel:not(.nc_floater).scale-110.scale-fullWidth {
|
1671 |
-
width: 90.90909090909091%!important;
|
1672 |
-
}
|
1673 |
-
|
1674 |
-
.scale-120 {
|
1675 |
-
-ms-transform: scale(1.2);
|
1676 |
-
-webkit-transform: scale(1.2);
|
1677 |
-
transform: scale(1.2);
|
1678 |
-
}
|
1679 |
-
|
1680 |
-
.nc_socialPanel:not(.nc_floater).scale-120.scale-fullWidth {
|
1681 |
-
width: 83.33333333333333%!important;
|
1682 |
-
}
|
1683 |
-
|
1684 |
-
.scale-130 {
|
1685 |
-
-ms-transform: scale(1.3);
|
1686 |
-
-webkit-transform: scale(1.3);
|
1687 |
-
transform: scale(1.3);
|
1688 |
-
}
|
1689 |
-
|
1690 |
-
.nc_socialPanel:not(.nc_floater).scale-130.scale-fullWidth {
|
1691 |
-
width: 76.92307692307692%!important;
|
1692 |
-
}
|
1693 |
-
|
1694 |
-
.scale-140 {
|
1695 |
-
-ms-transform: scale(1.4);
|
1696 |
-
-webkit-transform: scale(1.4);
|
1697 |
-
transform: scale(1.4);
|
1698 |
-
}
|
1699 |
-
|
1700 |
-
.nc_socialPanel:not(.nc_floater).scale-140.scale-fullWidth {
|
1701 |
-
width: 71.42857142857143%!important;
|
1702 |
-
}
|
1703 |
-
|
1704 |
-
.scale-fullWidth,
|
1705 |
-
.scale-left,
|
1706 |
-
.nc_floater.scale-center,
|
1707 |
-
.nc_floater.scale-right {
|
1708 |
-
-ms-transform-origin: left;
|
1709 |
-
-webkit-transform-origin: left;
|
1710 |
-
transform-origin: left;
|
1711 |
-
}
|
1712 |
-
|
1713 |
-
.scale-right {
|
1714 |
-
-ms-transform-origin: right;
|
1715 |
-
-webkit-transform-origin: right;
|
1716 |
-
transform-origin: right;
|
1717 |
-
}
|
1718 |
-
|
1719 |
-
.scale-center {
|
1720 |
-
-ms-transform-origin: center;
|
1721 |
-
-webkit-transform-origin: center;
|
1722 |
-
transform-origin: center;
|
1723 |
-
}
|
1724 |
-
|
1725 |
-
div.nc_socialPanel .nc_tweetContainer.swp_emphasize {
|
1726 |
-
-webkit-box-flex: 2;
|
1727 |
-
-moz-box-flex: 2;
|
1728 |
-
-webkit-flex: 2;
|
1729 |
-
-ms-flex: 2;
|
1730 |
-
flex: 2;
|
1731 |
-
}
|
1732 |
-
|
1733 |
-
div.nc_socialPanel .nc_tweetContainer.swp_whatsapp:not(.mobile) {
|
1734 |
-
display: none;
|
1735 |
-
}
|
1736 |
-
|
1737 |
-
.sw-pinit.aligncenter {
|
1738 |
-
margin: 0 auto;
|
1739 |
-
}
|
1740 |
-
|
1741 |
-
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
1742 |
-
div.sw-pinit {
|
1743 |
-
display: inline-block!important;
|
1744 |
-
max-width: 100%;
|
1745 |
-
}
|
1746 |
-
}
|
1747 |
-
|
1748 |
-
.swp_hidden_pin_image {
|
1749 |
-
height: 0;
|
1750 |
-
opacity: 0;
|
1751 |
-
position: absolute;
|
1752 |
-
top: 0;
|
1753 |
-
width: 0;
|
1754 |
-
}
|
1 |
+
.nc_socialPanel {
|
2 |
+
clear: both;
|
3 |
+
display: -webkit-box;
|
4 |
+
display: -webkit-flex;
|
5 |
+
display: -moz-box;
|
6 |
+
display: -ms-flexbox;
|
7 |
+
display: flex;
|
8 |
+
height: 34px;
|
9 |
+
line-height: 1;
|
10 |
+
margin-bottom: 20px!important;
|
11 |
+
margin-top: 20px!important;
|
12 |
+
overflow: hidden;
|
13 |
+
padding: 0;
|
14 |
+
|
15 |
+
-webkit-align-items: stretch;
|
16 |
+
align-items: stretch;
|
17 |
+
-webkit-box-align: stretch;
|
18 |
+
-moz-box-align: stretch;
|
19 |
+
-webkit-box-pack: justify;
|
20 |
+
-moz-box-pack: justify;
|
21 |
+
-ms-flex-align: stretch;
|
22 |
+
-ms-flex-line-pack: center;
|
23 |
+
-ms-flex-pack: justify;
|
24 |
+
-webkit-flex-wrap: wrap;
|
25 |
+
-ms-flex-wrap: wrap;
|
26 |
+
flex-wrap: wrap;
|
27 |
+
-webkit-justify-content: space-between;
|
28 |
+
justify-content: space-between;
|
29 |
+
}
|
30 |
+
|
31 |
+
.nc_socialPanel:not(.nc_floater):not(.nc_socialPanelSide) {
|
32 |
+
width: 100%!important;
|
33 |
+
}
|
34 |
+
|
35 |
+
.nc_wrapper .nc_socialPanel {
|
36 |
+
margin-bottom: 10px!important;
|
37 |
+
margin-top: 10px!important;
|
38 |
+
}
|
39 |
+
|
40 |
+
div.nc_socialPanel .nc_tweetContainer {
|
41 |
+
-webkit-border-radius: 2px;
|
42 |
+
border-radius: 2px;
|
43 |
+
cursor: pointer;
|
44 |
+
float: left;
|
45 |
+
font-family: Lato;
|
46 |
+
height: 32px;
|
47 |
+
margin: 0 5px 3px 5px;
|
48 |
+
min-width: 34px;
|
49 |
+
overflow: hidden;
|
50 |
+
text-align: center;
|
51 |
+
-webkit-transition: all 0.1s linear;
|
52 |
+
transition: all 0.1s linear;
|
53 |
+
|
54 |
+
border-size: 1px;
|
55 |
+
}
|
56 |
+
|
57 |
+
div.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer {
|
58 |
+
-webkit-box-flex: 1;
|
59 |
+
-moz-box-flex: 1;
|
60 |
+
-webkit-flex: 1;
|
61 |
+
-ms-flex: 1;
|
62 |
+
flex: 1;
|
63 |
+
}
|
64 |
+
|
65 |
+
.nc_socialPanel .nc_tweetContainer a.nc_tweet,
|
66 |
+
.nc_socialPanel .totes .swp_count {
|
67 |
+
display: block;
|
68 |
+
display: -webkit-box;
|
69 |
+
display: -webkit-flex;
|
70 |
+
display: -moz-box;
|
71 |
+
display: -ms-flexbox;
|
72 |
+
display: flex;
|
73 |
+
font-family: Lato, sans-serif;
|
74 |
+
font-size: 18px!important;
|
75 |
+
font-weight: bold;
|
76 |
+
height: 30px;
|
77 |
+
text-decoration: none;
|
78 |
+
text-decoration: none!important;
|
79 |
+
text-transform: none;
|
80 |
+
|
81 |
+
-webkit-box-direction: normal;
|
82 |
+
-moz-box-direction: normal;
|
83 |
+
-webkit-box-orient: horizontal;
|
84 |
+
-moz-box-orient: horizontal;
|
85 |
+
-webkit-flex-flow: row wrap;
|
86 |
+
-ms-flex-flow: row wrap;
|
87 |
+
flex-flow: row wrap;
|
88 |
+
}
|
89 |
+
|
90 |
+
.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-child(1) {
|
91 |
+
margin-left: 0;
|
92 |
+
}
|
93 |
+
|
94 |
+
.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-last-child(1) {
|
95 |
+
margin-right: 0;
|
96 |
+
}
|
97 |
+
|
98 |
+
.nc_socialPanel a .swp_count:not(.swp_hide) {
|
99 |
+
display: inline-block;
|
100 |
+
line-height: 32px;
|
101 |
+
margin: 0;
|
102 |
+
padding: 0 5px;
|
103 |
+
|
104 |
+
-webkit-box-flex: 1;
|
105 |
+
-moz-box-flex: 1;
|
106 |
+
-webkit-flex: 1;
|
107 |
+
-ms-flex: 1;
|
108 |
+
flex: 1;
|
109 |
+
}
|
110 |
+
|
111 |
+
.nc_socialPanel a .swp_count.swp_hide {
|
112 |
+
margin: 0 auto;
|
113 |
+
}
|
114 |
+
|
115 |
+
.nc_socialPanel span:before {
|
116 |
+
content: initial!important;
|
117 |
+
}
|
118 |
+
|
119 |
+
.nc_socialPanel .totes .swp_count {
|
120 |
+
line-height: 30px;
|
121 |
+
}
|
122 |
+
|
123 |
+
.nc_socialPanel span.swp_count {
|
124 |
+
font-size: 14px;
|
125 |
+
}
|
126 |
+
|
127 |
+
.nc_socialPanel span.iconFiller {
|
128 |
+
font-size: 18px;
|
129 |
+
margin: 0 auto;
|
130 |
+
}
|
131 |
+
|
132 |
+
.nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1) {
|
133 |
+
margin-left: 0;
|
134 |
+
}
|
135 |
+
|
136 |
+
.nc_socialPanel:not(.nc_socialPanelSide) {
|
137 |
+
-webkit-transition: opacity 0.2s ease-in-out;
|
138 |
+
transition: opacity 0.2s ease-in-out;
|
139 |
+
}
|
140 |
+
|
141 |
+
.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1) {
|
142 |
+
margin-left: 0;
|
143 |
+
margin-right: 15px;
|
144 |
+
padding-left: 0;
|
145 |
+
}
|
146 |
+
|
147 |
+
.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1) {
|
148 |
+
margin-right: 0;
|
149 |
+
padding-right: 0;
|
150 |
+
}
|
151 |
+
|
152 |
+
a.swp_CTT {
|
153 |
+
cursor: pointer;
|
154 |
+
}
|
155 |
+
|
156 |
+
span.swp_share {
|
157 |
+
display: block;
|
158 |
+
float: right;
|
159 |
+
float: left;
|
160 |
+
font-size: 14px;
|
161 |
+
font-weight: normal;
|
162 |
+
height: 30px;
|
163 |
+
line-height: 30px;
|
164 |
+
margin: 0 0 0 6px;
|
165 |
+
max-width: none!important;
|
166 |
+
vertical-align: middle;
|
167 |
+
}
|
168 |
+
|
169 |
+
.nc_socialPanelSide span.swp_share {
|
170 |
+
margin: 0;
|
171 |
+
}
|
172 |
+
|
173 |
+
.nc_socialPanel .sw {
|
174 |
+
float: left;
|
175 |
+
height: 30px;
|
176 |
+
line-height: 32px;
|
177 |
+
margin: 0 5px;
|
178 |
+
text-shadow: none!important;
|
179 |
+
width: 20px;
|
180 |
+
}
|
181 |
+
|
182 |
+
.iconFiller {
|
183 |
+
display: block;
|
184 |
+
float: left;
|
185 |
+
height: 30px;
|
186 |
+
overflow: hidden;
|
187 |
+
-webkit-transition: width 0.1s linear;
|
188 |
+
transition: width 0.1s linear;
|
189 |
+
}
|
190 |
+
|
191 |
+
.nc_socialPanel .iconFiller {
|
192 |
+
width: 30px;
|
193 |
+
}
|
194 |
+
|
195 |
+
span.spaceManWilly {
|
196 |
+
display: block;
|
197 |
+
width: 120px;
|
198 |
+
}
|
199 |
+
|
200 |
+
.nc_socialPanel .totes {
|
201 |
+
background: #c4c4c4;
|
202 |
+
border: 1px solid #e08a0f;
|
203 |
+
-webkit-border-radius: 2px;
|
204 |
+
border-radius: 2px;
|
205 |
+
color: white;
|
206 |
+
cursor: default;
|
207 |
+
display: block;
|
208 |
+
font-size: 19px;
|
209 |
+
padding: 0 10px;
|
210 |
+
|
211 |
+
-webkit-box-flex: 0!important;
|
212 |
+
-moz-box-flex: 0!important;
|
213 |
+
-webkit-flex: none!important;
|
214 |
+
-ms-flex: none!important;
|
215 |
+
flex: none!important;
|
216 |
+
}
|
217 |
+
|
218 |
+
.nc_socialPanel div.totes.totesalt,
|
219 |
+
.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {
|
220 |
+
background: transparent!important;
|
221 |
+
border: none;
|
222 |
+
color: #474b4d;
|
223 |
+
margin-left: 0!important;
|
224 |
+
}
|
225 |
+
|
226 |
+
div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {
|
227 |
+
background: transparent;
|
228 |
+
color: #474b4d;
|
229 |
+
margin-left: 10px;
|
230 |
+
}
|
231 |
+
|
232 |
+
.nc_socialPanel .totes.totesalt .swp_label {
|
233 |
+
color: #474b4d;
|
234 |
+
font-size: 10px;
|
235 |
+
letter-spacing: 0;
|
236 |
+
min-width: 40px;
|
237 |
+
vertical-align: middle;
|
238 |
+
}
|
239 |
+
|
240 |
+
.nc_socialPanel .totes .swp_label {
|
241 |
+
font-size: 10px;
|
242 |
+
vertical-align: middle;
|
243 |
+
}
|
244 |
+
|
245 |
+
.nc_socialPanel .totes.totesalt .swp_count {
|
246 |
+
color: #474b4d;
|
247 |
+
font-size: 24px;
|
248 |
+
}
|
249 |
+
|
250 |
+
.nc_socialPanel:hover .totes,
|
251 |
+
.nc_socialPanel.swp_fullColor .totes,
|
252 |
+
.nc_socialPanel.swp_fade .totes,
|
253 |
+
.nc_socialPanel.swp_customFull:hover div.totes {
|
254 |
+
background: #e08a0f;
|
255 |
+
}
|
256 |
+
|
257 |
+
.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer.totes.totesalt:before {
|
258 |
+
content: "o";
|
259 |
+
display: inline-block;
|
260 |
+
font-family: sw-icon-font;
|
261 |
+
margin-top: 7px;
|
262 |
+
vertical-align: top;
|
263 |
+
}
|
264 |
+
|
265 |
+
.nc_socialPanel:not(.nc_socialPanelSide) .totes.totesalt .swp_count {
|
266 |
+
display: inline-block;
|
267 |
+
line-height: 0;
|
268 |
+
margin-left: 8px;
|
269 |
+
margin-top: 12px;
|
270 |
+
min-width: 45px;
|
271 |
+
position: relative;
|
272 |
+
vertical-align: middle;
|
273 |
+
}
|
274 |
+
|
275 |
+
span.swp_label {
|
276 |
+
display: block;
|
277 |
+
font-size: 9px!important;
|
278 |
+
margin-top: 13px;
|
279 |
+
position: absolute;
|
280 |
+
text-align: center!important;
|
281 |
+
text-transform: uppercase;
|
282 |
+
}
|
283 |
+
|
284 |
+
.nc_socialPanelSide span.swp_label {
|
285 |
+
margin-top: 0;
|
286 |
+
}
|
287 |
+
|
288 |
+
.nc_socialPanel.swp_leaf .nc_tweetContainer {
|
289 |
+
-webkit-border-radius: 15px 0;
|
290 |
+
border-radius: 15px 0;
|
291 |
+
border-width: 1px;
|
292 |
+
}
|
293 |
+
|
294 |
+
.nc_socialPanel.swp_pill .nc_tweetContainer {
|
295 |
+
-webkit-border-radius: 50px;
|
296 |
+
border-radius: 50px;
|
297 |
+
border-width: 1px;
|
298 |
+
}
|
299 |
+
|
300 |
+
.nc_socialPanel.swp_shift .nc_tweetContainer:not(.totes) {
|
301 |
+
border-width: 1px;
|
302 |
+
-moz-transform: skew(-25deg);
|
303 |
+
-o-transform: skew(-25deg);
|
304 |
+
-webkit-transform: skew(-25deg);
|
305 |
+
}
|
306 |
+
|
307 |
+
.nc_socialPanel.swp_shift .nc_tweetContainer a {
|
308 |
+
-moz-transform: skew(25deg);
|
309 |
+
-o-transform: skew(25deg);
|
310 |
+
-webkit-transform: skew(25deg);
|
311 |
+
}
|
312 |
+
|
313 |
+
.swp_connected .nc_tweetContainer,
|
314 |
+
.swp_connected:hover .nc_tweetContainer,
|
315 |
+
.swp_connected .nc_tweetContainer:hover {
|
316 |
+
-webkit-border-radius: 0!important;
|
317 |
+
border-radius: 0!important;
|
318 |
+
border-width: 1px;
|
319 |
+
margin: 0!important;
|
320 |
+
}
|
321 |
+
|
322 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus,
|
323 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover,
|
324 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover) {
|
325 |
+
border: 1px solid #df4b37;
|
326 |
+
}
|
327 |
+
|
328 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter,
|
329 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover,
|
330 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover) {
|
331 |
+
border: 1px solid #429cd6;
|
332 |
+
}
|
333 |
+
|
334 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb,
|
335 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover,
|
336 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover) {
|
337 |
+
border: 1px solid #3a589e;
|
338 |
+
}
|
339 |
+
|
340 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest,
|
341 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover,
|
342 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover) {
|
343 |
+
border: 1px solid #cd2029;
|
344 |
+
}
|
345 |
+
|
346 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .linkedIn,
|
347 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .linkedIn:hover,
|
348 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .linkedIn:not(:hover) {
|
349 |
+
border: 1px solid #0d77b7;
|
350 |
+
}
|
351 |
+
|
352 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_tumblr,
|
353 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_tumblr:hover,
|
354 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_tumblr:not(:hover) {
|
355 |
+
border: 1px solid #39475d;
|
356 |
+
}
|
357 |
+
|
358 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_stumbleupon,
|
359 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_stumbleupon:hover,
|
360 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_stumbleupon:not(:hover) {
|
361 |
+
border: 1px solid #ef5025;
|
362 |
+
}
|
363 |
+
|
364 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_yummly,
|
365 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_yummly:hover,
|
366 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_yummly:not(:hover) {
|
367 |
+
border: 1px solid #e26426;
|
368 |
+
}
|
369 |
+
|
370 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_reddit,
|
371 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_reddit:hover,
|
372 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_reddit:not(:hover) {
|
373 |
+
border: 1px solid #f04b23;
|
374 |
+
}
|
375 |
+
|
376 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_email,
|
377 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_email:hover,
|
378 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_email:not(:hover) {
|
379 |
+
border: 1px solid #6bcce9;
|
380 |
+
}
|
381 |
+
|
382 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_whatsapp,
|
383 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_whatsapp:hover,
|
384 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_whatsapp:not(:hover) {
|
385 |
+
border: 1px solid #71c169;
|
386 |
+
}
|
387 |
+
|
388 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_pocket,
|
389 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_pocket:hover,
|
390 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_pocket:not(:hover) {
|
391 |
+
border: 1px solid #ef4056;
|
392 |
+
}
|
393 |
+
|
394 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_buffer,
|
395 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_buffer:hover,
|
396 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_buffer:not(:hover) {
|
397 |
+
border: 1px solid #323b43;
|
398 |
+
}
|
399 |
+
|
400 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_hacker_news,
|
401 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_hacker_news:hover,
|
402 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_hacker_news:not(:hover) {
|
403 |
+
border: 1px solid #d85623;
|
404 |
+
}
|
405 |
+
|
406 |
+
.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_flipboard,
|
407 |
+
html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_flipboard:hover,
|
408 |
+
body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_flipboard:not(:hover) {
|
409 |
+
border: 1px solid #bf2626;
|
410 |
+
}
|
411 |
+
|
412 |
+
.nc_socialPanel.swp_d_fullColor .googlePlus,
|
413 |
+
html body .nc_socialPanel.swp_i_fullColor .googlePlus:hover,
|
414 |
+
body .nc_socialPanel.swp_o_fullColor:hover .googlePlus {
|
415 |
+
background: #df4b37;
|
416 |
+
border: 1px solid #c44133;
|
417 |
+
}
|
418 |
+
|
419 |
+
.nc_socialPanel.swp_d_fullColor .twitter,
|
420 |
+
html body .nc_socialPanel.swp_i_fullColor .twitter:hover,
|
421 |
+
body .nc_socialPanel.swp_o_fullColor:hover .twitter {
|
422 |
+
background: #429cd6;
|
423 |
+
border: 1px solid #3c87b2;
|
424 |
+
}
|
425 |
+
|
426 |
+
.nc_socialPanel.swp_d_fullColor .swp_fb,
|
427 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_fb:hover,
|
428 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_fb {
|
429 |
+
background: #3a589e;
|
430 |
+
border: 1px solid #2e4675;
|
431 |
+
}
|
432 |
+
|
433 |
+
.nc_socialPanel.swp_d_fullColor .nc_pinterest,
|
434 |
+
html body .nc_socialPanel.swp_i_fullColor .nc_pinterest:hover,
|
435 |
+
body .nc_socialPanel.swp_o_fullColor:hover .nc_pinterest {
|
436 |
+
background: #cd2029;
|
437 |
+
border: 1px solid #aa1b29;
|
438 |
+
}
|
439 |
+
|
440 |
+
.nc_socialPanel.swp_d_fullColor .linkedIn,
|
441 |
+
html body .nc_socialPanel.swp_i_fullColor .linkedIn:hover,
|
442 |
+
body .nc_socialPanel.swp_o_fullColor:hover .linkedIn {
|
443 |
+
background: #0d77b7;
|
444 |
+
border: 1px solid #0c6591;
|
445 |
+
}
|
446 |
+
|
447 |
+
.nc_socialPanel.swp_d_fullColor .swp_tumblr,
|
448 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_tumblr:hover,
|
449 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_tumblr {
|
450 |
+
background: #39475d;
|
451 |
+
border: 1px solid #27313f;
|
452 |
+
}
|
453 |
+
|
454 |
+
.nc_socialPanel.swp_d_fullColor .swp_stumbleupon,
|
455 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_stumbleupon:hover,
|
456 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_stumbleupon {
|
457 |
+
background: #ef5025;
|
458 |
+
border: 1px solid #d34427;
|
459 |
+
}
|
460 |
+
|
461 |
+
.nc_socialPanel.swp_d_fullColor .swp_yummly,
|
462 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_yummly:hover,
|
463 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_yummly {
|
464 |
+
background: #e26426;
|
465 |
+
border: 1px solid #b65027;
|
466 |
+
}
|
467 |
+
|
468 |
+
.nc_socialPanel.swp_d_fullColor .swp_reddit,
|
469 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_reddit:hover,
|
470 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_reddit {
|
471 |
+
background: #f04b23;
|
472 |
+
border: 1px solid #d33f27;
|
473 |
+
}
|
474 |
+
|
475 |
+
.nc_socialPanel.swp_d_fullColor .swp_email,
|
476 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_email:hover,
|
477 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_email {
|
478 |
+
background: #6bcce9;
|
479 |
+
border: 1px solid #61bace;
|
480 |
+
}
|
481 |
+
|
482 |
+
.nc_socialPanel.swp_d_fullColor .swp_whatsapp,
|
483 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_whatsapp:hover,
|
484 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_whatsapp {
|
485 |
+
background: #71c169;
|
486 |
+
border: 1px solid #28b04b;
|
487 |
+
}
|
488 |
+
|
489 |
+
.nc_socialPanel.swp_d_fullColor .swp_pocket,
|
490 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_pocket:hover,
|
491 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_pocket {
|
492 |
+
background: #ef4056;
|
493 |
+
border: 1px solid #ce3d55;
|
494 |
+
}
|
495 |
+
|
496 |
+
.nc_socialPanel.swp_d_fullColor .swp_buffer,
|
497 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_buffer:hover,
|
498 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_buffer {
|
499 |
+
background: #323b43;
|
500 |
+
border: 1px solid #000;
|
501 |
+
}
|
502 |
+
|
503 |
+
.nc_socialPanel.swp_d_fullColor .swp_hacker_news,
|
504 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_hacker_news:hover,
|
505 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_hacker_news {
|
506 |
+
background: #f16522;
|
507 |
+
border: 1px solid #d85623;
|
508 |
+
}
|
509 |
+
|
510 |
+
.nc_socialPanel.swp_d_fullColor .swp_flipboard,
|
511 |
+
html body .nc_socialPanel.swp_i_fullColor .swp_flipboard:hover,
|
512 |
+
body .nc_socialPanel.swp_o_fullColor:hover .swp_flipboard {
|
513 |
+
background: #e02828;
|
514 |
+
border: 1px solid #bf2626;
|
515 |
+
}
|
516 |
+
|
517 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .googlePlus,
|
518 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .googlePlus:hover,
|
519 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .googlePlus {
|
520 |
+
border-bottom: 3px solid #c44133;
|
521 |
+
}
|
522 |
+
|
523 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .twitter,
|
524 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .twitter:hover,
|
525 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .twitter {
|
526 |
+
border-bottom: 3px solid #5595bc;
|
527 |
+
}
|
528 |
+
|
529 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_fb,
|
530 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_fb:hover,
|
531 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_fb {
|
532 |
+
border-bottom: 3px solid #2e4675;
|
533 |
+
}
|
534 |
+
|
535 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .nc_pinterest,
|
536 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .nc_pinterest:hover,
|
537 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .nc_pinterest {
|
538 |
+
border-bottom: 3px solid #aa1b29;
|
539 |
+
}
|
540 |
+
|
541 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .linkedIn,
|
542 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .linkedIn:hover,
|
543 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .linkedIn {
|
544 |
+
border-bottom: 3px solid #0c6591;
|
545 |
+
}
|
546 |
+
|
547 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_tumblr,
|
548 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_tumblr:hover,
|
549 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_tumblr {
|
550 |
+
border-bottom: 3px solid #27313f;
|
551 |
+
}
|
552 |
+
|
553 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_stumbleupon,
|
554 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_stumbleupon:hover,
|
555 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_stumbleupon {
|
556 |
+
border-bottom: 3px solid #d34427;
|
557 |
+
}
|
558 |
+
|
559 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_yummly,
|
560 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_yummly:hover,
|
561 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_yummly {
|
562 |
+
border-bottom: 3px solid #b65027;
|
563 |
+
}
|
564 |
+
|
565 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_reddit,
|
566 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_reddit:hover,
|
567 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_reddit {
|
568 |
+
border-bottom: 3px solid #d33f27;
|
569 |
+
}
|
570 |
+
|
571 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_email,
|
572 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_email:hover,
|
573 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_email {
|
574 |
+
border-bottom: 3px solid #61bace;
|
575 |
+
}
|
576 |
+
|
577 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_whatsapp,
|
578 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_whatsapp:hover,
|
579 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_whatsapp {
|
580 |
+
border-bottom: 3px solid #28b04b;
|
581 |
+
}
|
582 |
+
|
583 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_pocket,
|
584 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_pocket:hover,
|
585 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_pocket {
|
586 |
+
border-bottom: 3px solid #ce3d55;
|
587 |
+
}
|
588 |
+
|
589 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_buffer,
|
590 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_buffer:hover,
|
591 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_buffer {
|
592 |
+
border-bottom: 3px solid #000;
|
593 |
+
}
|
594 |
+
|
595 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_hacker_news,
|
596 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_hacker_news:hover,
|
597 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_hacker_news {
|
598 |
+
border-bottom: 3px solid #d85623;
|
599 |
+
}
|
600 |
+
|
601 |
+
.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_flipboard,
|
602 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_flipboard:hover,
|
603 |
+
body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_flipboard {
|
604 |
+
border-bottom: 3px solid #bf2626;
|
605 |
+
}
|
606 |
+
|
607 |
+
.nc_socialPanel.swp_d_lightGray .nc_tweetContainer,
|
608 |
+
html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover,
|
609 |
+
body .nc_socialPanel.swp_o_lightGray:hover .nc_tweetContainer {
|
610 |
+
background-color: #ccc;
|
611 |
+
border: 1px solid #ccc;
|
612 |
+
}
|
613 |
+
|
614 |
+
.nc_socialPanel.swp_threeDee.swp_d_lightGray .nc_tweetContainer:not(.totesalt),
|
615 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_lightGray .nc_tweetContainer:not(.totesalt):hover,
|
616 |
+
body .nc_socialPanel.swp_threeDee.swp_o_lightGray:hover .nc_tweetContainer:not(.totesalt) {
|
617 |
+
border-bottom: 3px solid #999;
|
618 |
+
}
|
619 |
+
|
620 |
+
.nc_socialPanel.swp_d_mediumGray .nc_tweetContainer,
|
621 |
+
html body .nc_socialPanel.swp_i_mediumGray .nc_tweetContainer:hover,
|
622 |
+
body .nc_socialPanel.swp_o_mediumGray:hover .nc_tweetContainer {
|
623 |
+
background-color: #999;
|
624 |
+
border: 1px solid #999;
|
625 |
+
}
|
626 |
+
|
627 |
+
.nc_socialPanel.swp_threeDee.swp_d_mediumGray .nc_tweetContainer:not(.totesalt),
|
628 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_mediumGray .nc_tweetContainer:not(.totesalt):hover,
|
629 |
+
body .nc_socialPanel.swp_threeDee.swp_o_mediumGray:hover .nc_tweetContainer:not(.totesalt) {
|
630 |
+
border-bottom: 3px solid #444;
|
631 |
+
}
|
632 |
+
|
633 |
+
.nc_socialPanel.swp_d_darkGray .nc_tweetContainer,
|
634 |
+
html body .nc_socialPanel.swp_i_darkGray .nc_tweetContainer:hover,
|
635 |
+
body .nc_socialPanel.swp_o_darkGray:hover .nc_tweetContainer {
|
636 |
+
background-color: #444;
|
637 |
+
border: 1px solid #444;
|
638 |
+
}
|
639 |
+
|
640 |
+
.nc_socialPanel.swp_threeDee.swp_d_darkGray .nc_tweetContainer:not(.totesalt),
|
641 |
+
html body .nc_socialPanel.swp_threeDee.swp_i_darkGray .nc_tweetContainer:not(.totesalt):hover,
|
642 |
+
body .nc_socialPanel.swp_threeDee.swp_o_darkGray:hover .nc_tweetContainer:not(.totesalt) {
|
643 |
+
border-bottom: 3px solid #222;
|
644 |
+
}
|
645 |
+
|
646 |
+
.nc_socialPanel.swp_d_lgOutlines a,
|
647 |
+
html body .nc_socialPanel.swp_i_lgOutlines a:hover,
|
648 |
+
body .nc_socialPanel.swp_o_lgOutlines:hover a {
|
649 |
+
color: #ccc;
|
650 |
+
}
|
651 |
+
|
652 |
+
.nc_socialPanel.swp_d_lgOutlines .nc_tweetContainer,
|
653 |
+
html body .nc_socialPanel.swp_i_lgOutlines .nc_tweetContainer:hover,
|
654 |
+
body .nc_socialPanel.swp_o_lgOutlines:hover .nc_tweetContainer {
|
655 |
+
background: transparent;
|
656 |
+
border: 1px solid #ccc;
|
657 |
+
}
|
658 |
+
|
659 |
+
.nc_socialPanel.swp_d_mdOutlines a,
|
660 |
+
html body .nc_socialPanel.swp_i_mdOutlines a:hover,
|
661 |
+
body .nc_socialPanel.swp_o_mdOutlines:hover a {
|
662 |
+
color: #999;
|
663 |
+
}
|
664 |
+
|
665 |
+
.nc_socialPanel.swp_d_mdOutlines .nc_tweetContainer,
|
666 |
+
html body .nc_socialPanel.swp_i_mdOutlines .nc_tweetContainer:hover,
|
667 |
+
body .nc_socialPanel.swp_o_mdOutlines:hover .nc_tweetContainer {
|
668 |
+
background: transparent;
|
669 |
+
border: 1px solid #999;
|
670 |
+
}
|
671 |
+
|
672 |
+
.nc_socialPanel.swp_d_dgOutlines a,
|
673 |
+
html body .nc_socialPanel.swp_i_dgOutlines a:hover,
|
674 |
+
body .nc_socialPanel.swp_o_dgOutlines:hover a {
|
675 |
+
color: #444;
|
676 |
+
}
|
677 |
+
|
678 |
+
.nc_socialPanel.swp_d_dgOutlines .nc_tweetContainer,
|
679 |
+
html body .nc_socialPanel.swp_i_dgOutlines .nc_tweetContainer:hover,
|
680 |
+
body .nc_socialPanel.swp_o_dgOutlines:hover .nc_tweetContainer {
|
681 |
+
background: transparent;
|
682 |
+
border: 1px solid #444;
|
683 |
+
}
|
684 |
+
|
685 |
+
.nc_socialPanel.swp_d_colorOutlines .googlePlus a,
|
686 |
+
html body .nc_socialPanel.swp_i_colorOutlines .googlePlus a:hover,
|
687 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus a {
|
688 |
+
color: #df4b37;
|
689 |
+
}
|
690 |
+
|
691 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_fb a,
|
692 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_fb a:hover,
|
693 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb a {
|
694 |
+
color: #3a589e;
|
695 |
+
}
|
696 |
+
|
697 |
+
.nc_socialPanel.swp_d_colorOutlines .nc_pinterest a,
|
698 |
+
html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest a:hover,
|
699 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest a {
|
700 |
+
color: #cd2029;
|
701 |
+
}
|
702 |
+
|
703 |
+
.nc_socialPanel.swp_d_colorOutlines .linkedIn a,
|
704 |
+
html body .nc_socialPanel.swp_i_colorOutlines .linkedIn a:hover,
|
705 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn a {
|
706 |
+
color: #0d77b7;
|
707 |
+
}
|
708 |
+
|
709 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_tumblr a,
|
710 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr a:hover,
|
711 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr a {
|
712 |
+
color: #39475d;
|
713 |
+
}
|
714 |
+
|
715 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon a,
|
716 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon a:hover,
|
717 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon a {
|
718 |
+
color: #ef5025;
|
719 |
+
}
|
720 |
+
|
721 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_yummly a,
|
722 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly a:hover,
|
723 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly a {
|
724 |
+
color: #e26426;
|
725 |
+
}
|
726 |
+
|
727 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp a,
|
728 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp a:hover,
|
729 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp a {
|
730 |
+
color: #71c169;
|
731 |
+
}
|
732 |
+
|
733 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_pocket a,
|
734 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket a:hover,
|
735 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket a {
|
736 |
+
color: #ef4056;
|
737 |
+
}
|
738 |
+
|
739 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_reddit a,
|
740 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit a:hover,
|
741 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit a {
|
742 |
+
color: #f04b23;
|
743 |
+
}
|
744 |
+
|
745 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_email a,
|
746 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_email a:hover,
|
747 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email a {
|
748 |
+
color: #6bcce9;
|
749 |
+
}
|
750 |
+
|
751 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_buffer a,
|
752 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer a:hover,
|
753 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer a {
|
754 |
+
color: #323b43;
|
755 |
+
}
|
756 |
+
|
757 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news a,
|
758 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news a:hover,
|
759 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news a {
|
760 |
+
color: #f16522;
|
761 |
+
}
|
762 |
+
|
763 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_flipboard a,
|
764 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard a:hover,
|
765 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard a {
|
766 |
+
color: #e02828;
|
767 |
+
}
|
768 |
+
|
769 |
+
.nc_socialPanel.swp_d_colorOutlines .googlePlus,
|
770 |
+
html body .nc_socialPanel.swp_i_colorOutlines .googlePlus:hover,
|
771 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus {
|
772 |
+
background: transparent;
|
773 |
+
border: 1px solid #df4b37;
|
774 |
+
}
|
775 |
+
|
776 |
+
.nc_socialPanel.swp_d_colorOutlines .twitter,
|
777 |
+
html body .nc_socialPanel.swp_i_colorOutlines .twitter:hover,
|
778 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .twitter {
|
779 |
+
background: transparent;
|
780 |
+
border: 1px solid #429cd6;
|
781 |
+
}
|
782 |
+
|
783 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_fb,
|
784 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_fb:hover,
|
785 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb {
|
786 |
+
background: transparent;
|
787 |
+
border: 1px solid #3a589e;
|
788 |
+
}
|
789 |
+
|
790 |
+
.nc_socialPanel.swp_d_colorOutlines .nc_pinterest,
|
791 |
+
html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest:hover,
|
792 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest {
|
793 |
+
background: transparent;
|
794 |
+
border: 1px solid #cd2029;
|
795 |
+
}
|
796 |
+
|
797 |
+
.nc_socialPanel.swp_d_colorOutlines .linkedIn,
|
798 |
+
html body .nc_socialPanel.swp_i_colorOutlines .linkedIn:hover,
|
799 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn {
|
800 |
+
background: transparent;
|
801 |
+
border: 1px solid #0d77b7;
|
802 |
+
}
|
803 |
+
|
804 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_tumblr,
|
805 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr:hover,
|
806 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr {
|
807 |
+
background: transparent;
|
808 |
+
border: 1px solid #39475d;
|
809 |
+
}
|
810 |
+
|
811 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon,
|
812 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon:hover,
|
813 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon {
|
814 |
+
background: transparent;
|
815 |
+
border: 1px solid #ef5025;
|
816 |
+
}
|
817 |
+
|
818 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_yummly,
|
819 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly:hover,
|
820 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly {
|
821 |
+
background: transparent;
|
822 |
+
border: 1px solid #e26426;
|
823 |
+
}
|
824 |
+
|
825 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp,
|
826 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp:hover,
|
827 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp {
|
828 |
+
background: transparent;
|
829 |
+
border: 1px solid #71c169;
|
830 |
+
}
|
831 |
+
|
832 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_reddit,
|
833 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit:hover,
|
834 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit {
|
835 |
+
background: transparent;
|
836 |
+
border: 1px solid #f04b23;
|
837 |
+
}
|
838 |
+
|
839 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_email,
|
840 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_email:hover,
|
841 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email {
|
842 |
+
background: transparent;
|
843 |
+
border: 1px solid #6bcce9;
|
844 |
+
}
|
845 |
+
|
846 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_pocket,
|
847 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket:hover,
|
848 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket {
|
849 |
+
background: transparent;
|
850 |
+
border: 1px solid #ef4056;
|
851 |
+
}
|
852 |
+
|
853 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_buffer,
|
854 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer:hover,
|
855 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer {
|
856 |
+
background: transparent;
|
857 |
+
border: 1px solid #323b43;
|
858 |
+
}
|
859 |
+
|
860 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news,
|
861 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news:hover,
|
862 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news {
|
863 |
+
background: transparent;
|
864 |
+
border: 1px solid #f16522;
|
865 |
+
}
|
866 |
+
|
867 |
+
.nc_socialPanel.swp_d_colorOutlines .swp_flipboard,
|
868 |
+
html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard:hover,
|
869 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard {
|
870 |
+
background: transparent;
|
871 |
+
border: 1px solid #bf2626;
|
872 |
+
}
|
873 |
+
|
874 |
+
.nc_socialPanelSide {
|
875 |
+
flex-direction: column;
|
876 |
+
height: auto;
|
877 |
+
overflow: visible;
|
878 |
+
top: 200px;
|
879 |
+
-webkit-transition: all 0.2s linear;
|
880 |
+
transition: all 0.2s linear;
|
881 |
+
width: 100px!important;
|
882 |
+
z-index: 9999999;
|
883 |
+
|
884 |
+
-webkit-box-direction: normal;
|
885 |
+
-moz-box-direction: normal;
|
886 |
+
-webkit-box-orient: vertical;
|
887 |
+
-moz-box-orient: vertical;
|
888 |
+
-webkit-flex-direction: column;
|
889 |
+
-ms-flex-direction: column;
|
890 |
+
}
|
891 |
+
|
892 |
+
.nc_socialPanelSide.slide {
|
893 |
+
position: fixed;
|
894 |
+
left: -100px;
|
895 |
+
-webkit-transition: all 0.2s linear;
|
896 |
+
transition: all 0.2s linear;
|
897 |
+
}
|
898 |
+
|
899 |
+
.nc_socialPanelSide.fade {
|
900 |
+
display: none;
|
901 |
+
position: fixed;
|
902 |
+
left: 5px;
|
903 |
+
-webkit-transition: all 0.2s linear;
|
904 |
+
transition: all 0.2s linear;
|
905 |
+
}
|
906 |
+
|
907 |
+
.nc_socialPanelSide .nc_tweetContainer {
|
908 |
+
background: #dd4b38;
|
909 |
+
-webkit-border-radius: 3px;
|
910 |
+
border-radius: 3px;
|
911 |
+
clear: both;
|
912 |
+
display: block;
|
913 |
+
font-family: Lato, sans-serif;
|
914 |
+
height: 32px;
|
915 |
+
margin: 3px 0!important;
|
916 |
+
overflow: hidden;
|
917 |
+
padding: 0;
|
918 |
+
-webkit-transition: all 0.1s linear;
|
919 |
+
transition: all 0.1s linear;
|
920 |
+
vertical-align: top;
|
921 |
+
width: 90px;
|
922 |
+
}
|
923 |
+
|
924 |
+
.nc_socialPanelSide .nc_tweetContainer .iconFiller {
|
925 |
+
display: inline-block;
|
926 |
+
height: 40px;
|
927 |
+
margin: 0 6px;
|
928 |
+
padding: 0;
|
929 |
+
-webkit-transition: all 0.1s linear;
|
930 |
+
transition: all 0.1s linear;
|
931 |
+
vertical-align: middle;
|
932 |
+
width: 21px;
|
933 |
+
}
|
934 |
+
|
935 |
+
.nc_socialPanelSide .nc_tweetContainer .swp_count {
|
936 |
+
display: inline-block;
|
937 |
+
font-size: 14px;
|
938 |
+
height: 32px;
|
939 |
+
line-height: 35px;
|
940 |
+
margin: 0;
|
941 |
+
overflow: hidden;
|
942 |
+
padding: 0;
|
943 |
+
text-align: right;
|
944 |
+
-webkit-transition: all 0.1s linear;
|
945 |
+
transition: all 0.1s linear;
|
946 |
+
vertical-align: top;
|
947 |
+
width: 0;
|
948 |
+
}
|
949 |
+
|
950 |
+
.nc_socialPanelSide .nc_tweetContainer a {
|
951 |
+
cursor: pointer;
|
952 |
+
display: block;
|
953 |
+
font-weight: 500;
|
954 |
+
height: 36px;
|
955 |
+
margin: 0;
|
956 |
+
padding: 0;
|
957 |
+
text-decoration: none;
|
958 |
+
-webkit-transition: all 0.1s linear;
|
959 |
+
transition: all 0.1s linear;
|
960 |
+
vertical-align: top;
|
961 |
+
}
|
962 |
+
|
963 |
+
.nc_socialPanelSide .nc_tweetContainer .sw,
|
964 |
+
.nc_socialPanelSide .nc_tweetContainer .swp_share {
|
965 |
+
float: left;
|
966 |
+
line-height: 34px;
|
967 |
+
}
|
968 |
+
|
969 |
+
.nc_socialPanelSide.swp_default .nc_tweetContainer .sw {
|
970 |
+
line-height: 32px;
|
971 |
+
}
|
972 |
+
|
973 |
+
.nc_socialPanelSide.swp_default .nc_tweetContainer .swp_share {
|
974 |
+
line-height: 30px;
|
975 |
+
}
|
976 |
+
|
977 |
+
.nc_socialPanelSide .nc_tweetContainer .swp_share {
|
978 |
+
font-size: 13px;
|
979 |
+
}
|
980 |
+
|
981 |
+
.nc_socialPanelSide .nc_tweetContainer:hover,
|
982 |
+
.nc_socialPanelSide .nc_tweetContainer:hover .iconFiller,
|
983 |
+
.nc_socialPanelSide .nc_tweetContainer:hover .swp_count {
|
984 |
+
-webkit-transition: all 0.1s linear;
|
985 |
+
transition: all 0.1s linear;
|
986 |
+
}
|
987 |
+
|
988 |
+
.nc_socialPanelSide.swp_boxed {
|
989 |
+
-ms-transform: scale(0.9);
|
990 |
+
-webkit-transform: scale(0.9);
|
991 |
+
transform: scale(0.9);
|
992 |
+
}
|
993 |
+
|
994 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer {
|
995 |
+
margin-bottom: 5px;
|
996 |
+
}
|
997 |
+
|
998 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer,
|
999 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer a {
|
1000 |
+
height: 75px;
|
1001 |
+
position: relative;
|
1002 |
+
width: 75px;
|
1003 |
+
}
|
1004 |
+
|
1005 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer i.sw {
|
1006 |
+
font-size: 27px;
|
1007 |
+
height: 40px;
|
1008 |
+
margin: 0;
|
1009 |
+
padding-top: 10px;
|
1010 |
+
text-align: center;
|
1011 |
+
width: 100%;
|
1012 |
+
}
|
1013 |
+
|
1014 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_share {
|
1015 |
+
height: 35px;
|
1016 |
+
opacity: 0;
|
1017 |
+
position: absolute;
|
1018 |
+
bottom: 0;
|
1019 |
+
left: 0;
|
1020 |
+
text-align: center;
|
1021 |
+
width: 75px;
|
1022 |
+
}
|
1023 |
+
|
1024 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count {
|
1025 |
+
height: 35px;
|
1026 |
+
margin: 0;
|
1027 |
+
padding: 0;
|
1028 |
+
position: absolute;
|
1029 |
+
bottom: 0;
|
1030 |
+
left: 0;
|
1031 |
+
text-align: center;
|
1032 |
+
-webkit-transition: padding 0.1s linear;
|
1033 |
+
transition: padding 0.1s linear;
|
1034 |
+
width: 100%;
|
1035 |
+
}
|
1036 |
+
|
1037 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count.swp_hide,
|
1038 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,
|
1039 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly {
|
1040 |
+
height: 75px;
|
1041 |
+
opacity: 1;
|
1042 |
+
}
|
1043 |
+
|
1044 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.iconFiller {
|
1045 |
+
height: 40px;
|
1046 |
+
width: 75px;
|
1047 |
+
}
|
1048 |
+
|
1049 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_count:not(.swp_hide) {
|
1050 |
+
opacity: 0;
|
1051 |
+
}
|
1052 |
+
|
1053 |
+
.nc_socialPanelSide.swp_boxed .totes {
|
1054 |
+
padding: 0;
|
1055 |
+
width: 75px!important;
|
1056 |
+
}
|
1057 |
+
|
1058 |
+
.nc_socialPanelSide .nc_tweetContainer:not(.totes) {
|
1059 |
+
line-height: 34px;
|
1060 |
+
}
|
1061 |
+
|
1062 |
+
.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes) .iconFiller {
|
1063 |
+
margin-left: 2px;
|
1064 |
+
width: 30px;
|
1065 |
+
}
|
1066 |
+
|
1067 |
+
.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count {
|
1068 |
+
padding: 0 8px;
|
1069 |
+
width: 48px;
|
1070 |
+
}
|
1071 |
+
|
1072 |
+
.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count.swp_hide {
|
1073 |
+
padding: 0;
|
1074 |
+
width: 100%;
|
1075 |
+
}
|
1076 |
+
|
1077 |
+
.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_hide .iconFiller {
|
1078 |
+
display: block;
|
1079 |
+
float: none;
|
1080 |
+
margin: 0 auto;
|
1081 |
+
}
|
1082 |
+
|
1083 |
+
.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes):hover {
|
1084 |
+
width: 150px;
|
1085 |
+
}
|
1086 |
+
|
1087 |
+
.nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller,
|
1088 |
+
.nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly {
|
1089 |
+
width: 90px;
|
1090 |
+
}
|
1091 |
+
|
1092 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover .iconFiller,
|
1093 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .spaceManWilly {
|
1094 |
+
width: 100%;
|
1095 |
+
}
|
1096 |
+
|
1097 |
+
.nc_socialPanelSide .nc_tweetContainer.totes {
|
1098 |
+
background: rgba(0, 0, 0, 0);
|
1099 |
+
border: 0!important;
|
1100 |
+
font-weight: 800;
|
1101 |
+
height: 45px;
|
1102 |
+
margin: 0;
|
1103 |
+
padding: 0;
|
1104 |
+
text-align: center;
|
1105 |
+
width: 90px;
|
1106 |
+
}
|
1107 |
+
|
1108 |
+
.nc_socialPanelSide .nc_tweetContainer.totes .swp_count {
|
1109 |
+
color: #444;
|
1110 |
+
display: block;
|
1111 |
+
font-family: Lato, sans-serif;
|
1112 |
+
height: 28px;
|
1113 |
+
text-align: center;
|
1114 |
+
width: 100%;
|
1115 |
+
}
|
1116 |
+
|
1117 |
+
.nc_socialPanelSide .nc_tweetContainer.totes .swp_label {
|
1118 |
+
color: #444;
|
1119 |
+
display: block;
|
1120 |
+
font-family: Lato, sans-serif;
|
1121 |
+
font-size: 50%;
|
1122 |
+
position: relative;
|
1123 |
+
text-align: center;
|
1124 |
+
width: 100%;
|
1125 |
+
}
|
1126 |
+
|
1127 |
+
.nc_wrapper {
|
1128 |
+
background: white;
|
1129 |
+
position: fixed;
|
1130 |
+
-webkit-transition: top 0.5s bottom 0.5s;
|
1131 |
+
transition: top 0.5s bottom 0.5s;
|
1132 |
+
width: 100%;
|
1133 |
+
z-index: 99999;
|
1134 |
+
}
|
1135 |
+
|
1136 |
+
.nc_wrapper.floatBottom {
|
1137 |
+
bottom: 0;
|
1138 |
+
left: 0;
|
1139 |
+
}
|
1140 |
+
|
1141 |
+
.nc_wrapper.floatTop {
|
1142 |
+
top: 0;
|
1143 |
+
left: 0;
|
1144 |
+
}
|
1145 |
+
|
1146 |
+
.nc_floater {
|
1147 |
+
margin: 10px 0;
|
1148 |
+
position: relative;
|
1149 |
+
left: 304px;
|
1150 |
+
width: 740px;
|
1151 |
+
}
|
1152 |
+
|
1153 |
+
.nc_socialPanelSide.hideCounts a {
|
1154 |
+
text-align: center;
|
1155 |
+
}
|
1156 |
+
|
1157 |
+
.nc_socialPanelSide.hideCounts .iconFiller {
|
1158 |
+
float: none;
|
1159 |
+
text-align: left;
|
1160 |
+
}
|
1161 |
+
|
1162 |
+
.sw {
|
1163 |
+
display: inline-block;
|
1164 |
+
font-family: sw-icon-font!important;
|
1165 |
+
font-size: inherit;
|
1166 |
+
-moz-osx-font-smoothing: grayscale;
|
1167 |
+
-webkit-font-smoothing: antialiased;
|
1168 |
+
font-style: normal;
|
1169 |
+
font-weight: normal;
|
1170 |
+
text-rendering: auto;
|
1171 |
+
-ms-transform: translate(0, 0);
|
1172 |
+
-webkit-transform: translate(0, 0);
|
1173 |
+
transform: translate(0, 0);
|
1174 |
+
}
|
1175 |
+
|
1176 |
+
.sw:before {
|
1177 |
+
display: block!important;
|
1178 |
+
}
|
1179 |
+
|
1180 |
+
.wp-editor-container .sw:before {
|
1181 |
+
font-size: 18px;
|
1182 |
+
line-height: 22px;
|
1183 |
+
}
|
1184 |
+
|
1185 |
+
.wp-editor-container .sw-social-warfare:before {
|
1186 |
+
color: #ee464f;
|
1187 |
+
}
|
1188 |
+
|
1189 |
+
.mce-container .sw-social-warfare {
|
1190 |
+
color: #ee464f;
|
1191 |
+
font-size: 20px;
|
1192 |
+
margin-right: 15px;
|
1193 |
+
vertical-align: middle;
|
1194 |
+
}
|
1195 |
+
|
1196 |
+
.sw-google-plus:before {
|
1197 |
+
content: "h";
|
1198 |
+
}
|
1199 |
+
|
1200 |
+
.sw-pinterest:before {
|
1201 |
+
content: "b";
|
1202 |
+
}
|
1203 |
+
|
1204 |
+
.sw-twitter:before {
|
1205 |
+
content: "s";
|
1206 |
+
}
|
1207 |
+
|
1208 |
+
.sw-facebook:before {
|
1209 |
+
content: "j";
|
1210 |
+
}
|
1211 |
+
|
1212 |
+
.sw-linkedin:before {
|
1213 |
+
content: "f";
|
1214 |
+
}
|
1215 |
+
|
1216 |
+
.sw-tumblr:before {
|
1217 |
+
content: "r";
|
1218 |
+
}
|
1219 |
+
|
1220 |
+
.sw-stumbleupon:before {
|
1221 |
+
content: "q";
|
1222 |
+
}
|
1223 |
+
|
1224 |
+
.sw-reddit:before {
|
1225 |
+
content: "a";
|
1226 |
+
}
|
1227 |
+
|
1228 |
+
.sw-email:before {
|
1229 |
+
content: "k";
|
1230 |
+
}
|
1231 |
+
|
1232 |
+
.sw-yummly:before {
|
1233 |
+
content: "x";
|
1234 |
+
}
|
1235 |
+
|
1236 |
+
.sw-whatsapp:before {
|
1237 |
+
content: "y";
|
1238 |
+
}
|
1239 |
+
|
1240 |
+
.sw-pocket:before {
|
1241 |
+
content: "B";
|
1242 |
+
}
|
1243 |
+
|
1244 |
+
.sw-buffer:before {
|
1245 |
+
content: "z";
|
1246 |
+
}
|
1247 |
+
|
1248 |
+
.sw-hacker_news:before {
|
1249 |
+
content: "D";
|
1250 |
+
}
|
1251 |
+
|
1252 |
+
.sw-flipboard:before {
|
1253 |
+
content: "C";
|
1254 |
+
}
|
1255 |
+
|
1256 |
+
.sw-social-warfare:before {
|
1257 |
+
content: "p";
|
1258 |
+
}
|
1259 |
+
|
1260 |
+
.swp_CTT {
|
1261 |
+
text-decoration: none!important;
|
1262 |
+
}
|
1263 |
+
|
1264 |
+
.sw-tweet-clear {
|
1265 |
+
zoom: 1;
|
1266 |
+
}
|
1267 |
+
|
1268 |
+
.sw-tweet-clear:after {
|
1269 |
+
clear: both;
|
1270 |
+
content: ".";
|
1271 |
+
display: block;
|
1272 |
+
height: 0;
|
1273 |
+
visibility: hidden;
|
1274 |
+
}
|
1275 |
+
|
1276 |
+
.sw-click-to-tweet {
|
1277 |
+
display: block;
|
1278 |
+
margin: 15px 0;
|
1279 |
+
padding: 15px 30px;
|
1280 |
+
position: relative;
|
1281 |
+
}
|
1282 |
+
|
1283 |
+
.sw-click-to-tweet:after {
|
1284 |
+
clear: both;
|
1285 |
+
content: ".";
|
1286 |
+
display: block;
|
1287 |
+
height: 0;
|
1288 |
+
line-height: 0;
|
1289 |
+
visibility: hidden;
|
1290 |
+
}
|
1291 |
+
|
1292 |
+
.sw-click-to-tweet .sw-ctt-text {
|
1293 |
+
margin: 0 0 10px;
|
1294 |
+
padding: 0;
|
1295 |
+
position: relative;
|
1296 |
+
word-wrap: break-word;
|
1297 |
+
}
|
1298 |
+
|
1299 |
+
a .sw-click-to-tweet .sw-ctt-text {
|
1300 |
+
display: block;
|
1301 |
+
font-size: 24px;
|
1302 |
+
font-weight: 500;
|
1303 |
+
line-height: 140%;
|
1304 |
+
margin: 0;
|
1305 |
+
padding: 0;
|
1306 |
+
position: relative;
|
1307 |
+
text-decoration: none;
|
1308 |
+
text-transform: none;
|
1309 |
+
}
|
1310 |
+
|
1311 |
+
.sw-click-to-tweet .sw-ctt-btn {
|
1312 |
+
display: block;
|
1313 |
+
float: right;
|
1314 |
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1315 |
+
font-size: 12px;
|
1316 |
+
font-weight: bold;
|
1317 |
+
line-height: 100%;
|
1318 |
+
margin: 10px 0 0;
|
1319 |
+
padding: 3px 5px 3px 3px;
|
1320 |
+
position: relative;
|
1321 |
+
text-decoration: none;
|
1322 |
+
text-transform: uppercase;
|
1323 |
+
}
|
1324 |
+
|
1325 |
+
.sw-click-to-tweet i.sw-twitter {
|
1326 |
+
float: right;
|
1327 |
+
font-size: 21px;
|
1328 |
+
margin-left: 15px;
|
1329 |
+
margin-top: 2px;
|
1330 |
+
text-transform: none;
|
1331 |
+
}
|
1332 |
+
|
1333 |
+
a.swp_CTT.style1 .sw-click-to-tweet {
|
1334 |
+
background-color: #fff;
|
1335 |
+
border: 1px solid #ddd;
|
1336 |
+
-webkit-border-radius: 4px;
|
1337 |
+
border-radius: 4px;
|
1338 |
+
}
|
1339 |
+
|
1340 |
+
a.swp_CTT.style2 .sw-click-to-tweet {
|
1341 |
+
background-color: #fff;
|
1342 |
+
border: 4px double #ddd;
|
1343 |
+
-webkit-border-radius: 0;
|
1344 |
+
border-radius: 0;
|
1345 |
+
}
|
1346 |
+
|
1347 |
+
a.style2 .sw-click-to-tweet .sw-ctt-text {
|
1348 |
+
color: #666;
|
1349 |
+
font-style: italic;
|
1350 |
+
text-decoration: none;
|
1351 |
+
}
|
1352 |
+
|
1353 |
+
a.swp_CTT.style3:hover .sw-click-to-tweet {
|
1354 |
+
border-left: 10px solid #3c87b2;
|
1355 |
+
padding-right: 20px;
|
1356 |
+
-webkit-transition: all 0.25s linear;
|
1357 |
+
transition: all 0.25s linear;
|
1358 |
+
}
|
1359 |
+
|
1360 |
+
a.swp_CTT.style3 .sw-click-to-tweet {
|
1361 |
+
background-color: #429cd6;
|
1362 |
+
border: none;
|
1363 |
+
border-left: 10px solid #429cd6;
|
1364 |
+
-webkit-border-radius: 0;
|
1365 |
+
border-radius: 0;
|
1366 |
+
padding-right: 20px;
|
1367 |
+
-webkit-transition: all 0.25s linear;
|
1368 |
+
transition: all 0.25s linear;
|
1369 |
+
}
|
1370 |
+
|
1371 |
+
a.style3 .sw-click-to-tweet .sw-ctt-text {
|
1372 |
+
color: #fff;
|
1373 |
+
font-style: italic;
|
1374 |
+
text-decoration: none;
|
1375 |
+
}
|
1376 |
+
|
1377 |
+
a.swp_CTT.style4:hover .sw-click-to-tweet {
|
1378 |
+
border-left: 10px solid #3c87b2;
|
1379 |
+
-webkit-transition: all 0.25s linear;
|
1380 |
+
transition: all 0.25s linear;
|
1381 |
+
}
|
1382 |
+
|
1383 |
+
a.swp_CTT.style4 .sw-click-to-tweet {
|
1384 |
+
background-color: #333;
|
1385 |
+
border-left: 10px solid #c33;
|
1386 |
+
-webkit-border-radius: 0;
|
1387 |
+
border-radius: 0;
|
1388 |
+
-webkit-transition: all 0.25s linear;
|
1389 |
+
transition: all 0.25s linear;
|
1390 |
+
}
|
1391 |
+
|
1392 |
+
a.swp_CTT.style5:hover .sw-click-to-tweet {
|
1393 |
+
background-color: #d34250;
|
1394 |
+
border-left: 10px solid #30394f;
|
1395 |
+
-webkit-transition: all 0.25s linear;
|
1396 |
+
transition: all 0.25s linear;
|
1397 |
+
}
|
1398 |
+
|
1399 |
+
a.swp_CTT.style5 .sw-click-to-tweet {
|
1400 |
+
background-color: #30394f;
|
1401 |
+
border-left: 10px solid #d34250;
|
1402 |
+
-webkit-border-radius: 0;
|
1403 |
+
border-radius: 0;
|
1404 |
+
-webkit-transition: all 0.25s linear;
|
1405 |
+
transition: all 0.25s linear;
|
1406 |
+
}
|
1407 |
+
|
1408 |
+
a.swp_CTT.style6:hover .sw-click-to-tweet {
|
1409 |
+
background-color: #ced3dc;
|
1410 |
+
border-left: 10px solid #d34250;
|
1411 |
+
-webkit-transition: all 0.25s linear;
|
1412 |
+
transition: all 0.25s linear;
|
1413 |
+
}
|
1414 |
+
|
1415 |
+
a.swp_CTT.style6 .sw-click-to-tweet {
|
1416 |
+
background-color: #eee;
|
1417 |
+
border-left: 10px solid #d34250;
|
1418 |
+
-webkit-border-radius: 0;
|
1419 |
+
border-radius: 0;
|
1420 |
+
-webkit-transition: all 0.25s linear;
|
1421 |
+
transition: all 0.25s linear;
|
1422 |
+
}
|
1423 |
+
|
1424 |
+
a.style6 .sw-click-to-tweet i.sw-twitter {
|
1425 |
+
color: #30394f;
|
1426 |
+
}
|
1427 |
+
|
1428 |
+
.swp_pop_thumb {
|
1429 |
+
-webkit-border-radius: 3px;
|
1430 |
+
border-radius: 3px;
|
1431 |
+
float: left;
|
1432 |
+
height: 100px;
|
1433 |
+
margin: 5px 25px 5px 0;
|
1434 |
+
width: 100px;
|
1435 |
+
}
|
1436 |
+
|
1437 |
+
.swp_popular_post {
|
1438 |
+
clear: both;
|
1439 |
+
}
|
1440 |
+
|
1441 |
+
.swp_clearfix:after {
|
1442 |
+
clear: both;
|
1443 |
+
content: " ";
|
1444 |
+
display: block;
|
1445 |
+
height: 0;
|
1446 |
+
visibility: hidden;
|
1447 |
+
}
|
1448 |
+
|
1449 |
+
.swp_popular_post a.swp_popularity {
|
1450 |
+
border: none;
|
1451 |
+
display: block;
|
1452 |
+
line-height: 1.5;
|
1453 |
+
margin: 20px 0;
|
1454 |
+
}
|
1455 |
+
|
1456 |
+
span.swp_pop_count {
|
1457 |
+
display: block;
|
1458 |
+
font-size: 70%;
|
1459 |
+
}
|
1460 |
+
|
1461 |
+
.swp_widget_box {
|
1462 |
+
-webkit-border-radius: 3px;
|
1463 |
+
border-radius: 3px;
|
1464 |
+
}
|
1465 |
+
|
1466 |
+
div.sw-pinit {
|
1467 |
+
display: table !important;
|
1468 |
+
line-height: 0;
|
1469 |
+
position: relative !important;
|
1470 |
+
}
|
1471 |
+
|
1472 |
+
div.sw-pinit a.sw-pinit-button,
|
1473 |
+
div.sw-pinit a.sw-pinit-button:visited {
|
1474 |
+
background: #cd2029;
|
1475 |
+
border: 1px solid #aa1b29;
|
1476 |
+
-webkit-border-radius: 4px;
|
1477 |
+
border-radius: 4px;
|
1478 |
+
color: #fff;
|
1479 |
+
font-size: 20px;
|
1480 |
+
height: 50px;
|
1481 |
+
line-height: 45px;
|
1482 |
+
opacity: 0;
|
1483 |
+
padding: 0 30px;
|
1484 |
+
position: absolute;
|
1485 |
+
text-decoration: none;
|
1486 |
+
-webkit-transition: opacity 0.5s;
|
1487 |
+
transition: opacity 0.5s;
|
1488 |
+
z-index: 200;
|
1489 |
+
}
|
1490 |
+
|
1491 |
+
div.sw-pinit:hover a.sw-pinit-button,
|
1492 |
+
div.sw-pinit:focus a.sw-pinit-button {
|
1493 |
+
opacity: 1;
|
1494 |
+
}
|
1495 |
+
|
1496 |
+
div.sw-pinit a.sw-pinit-button::before {
|
1497 |
+
color: #fff;
|
1498 |
+
content: "b";
|
1499 |
+
float: left;
|
1500 |
+
font-family: sw-icon-font;
|
1501 |
+
font-size: 24px;
|
1502 |
+
font-weight: normal;
|
1503 |
+
line-height: 50px;
|
1504 |
+
margin-left: -5px;
|
1505 |
+
margin-right: 10px;
|
1506 |
+
}
|
1507 |
+
|
1508 |
+
div.sw-pinit a.sw-pinit-button:hover::before {
|
1509 |
+
content: "F";
|
1510 |
+
}
|
1511 |
+
|
1512 |
+
div.sw-pinit a.sw-pinit-button::hover,
|
1513 |
+
div.sw-pinit a.sw-pinit-button::focus {
|
1514 |
+
background: #aa1b29;
|
1515 |
+
color: #fff;
|
1516 |
+
text-decoration: none;
|
1517 |
+
}
|
1518 |
+
|
1519 |
+
div.sw-pinit .sw-pinit-left {
|
1520 |
+
left: 30px;
|
1521 |
+
}
|
1522 |
+
|
1523 |
+
div.sw-pinit .sw-pinit-center {
|
1524 |
+
margin-left: -60px;
|
1525 |
+
left: 50%;
|
1526 |
+
}
|
1527 |
+
|
1528 |
+
div.sw-pinit .sw-pinit-right {
|
1529 |
+
right: 30px;
|
1530 |
+
}
|
1531 |
+
|
1532 |
+
div.sw-pinit .sw-pinit-top {
|
1533 |
+
top: 30px;
|
1534 |
+
}
|
1535 |
+
|
1536 |
+
div.sw-pinit .sw-pinit-middle {
|
1537 |
+
margin-top: -25px;
|
1538 |
+
top: 50%;
|
1539 |
+
}
|
1540 |
+
|
1541 |
+
div.sw-pinit .sw-pinit-bottom {
|
1542 |
+
bottom: 30px;
|
1543 |
+
}
|
1544 |
+
|
1545 |
+
.nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1),
|
1546 |
+
.mobile .nc_tweetContainer:nth-last-child(2),
|
1547 |
+
.nc_tweetContainer.totes:nth-last-child(1) {
|
1548 |
+
margin-right: 0;
|
1549 |
+
}
|
1550 |
+
|
1551 |
+
.nc_socialPanel.swp_d_fullColor a,
|
1552 |
+
html body .nc_socialPanel.swp_i_fullColor .nc_tweetContainer:hover a,
|
1553 |
+
body .nc_socialPanel.swp_o_fullColor:hover a,
|
1554 |
+
.nc_socialPanel.swp_d_lightGray a,
|
1555 |
+
html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover a,
|
1556 |
+
body .nc_socialPanel.swp_o_lightGray:hover a,
|
1557 |
+
.nc_socialPanel.swp_d_mediumGray a,
|
1558 |
+
html body .nc_socialPanel.swp_i_mediumGray a:hover,
|
1559 |
+
body .nc_socialPanel.swp_o_mediumGray:hover a,
|
1560 |
+
.nc_socialPanel.swp_d_darkGray a,
|
1561 |
+
html body .nc_socialPanel.swp_i_darkGray a:hover,
|
1562 |
+
body .nc_socialPanel.swp_o_darkGray:hover a {
|
1563 |
+
color: white;
|
1564 |
+
}
|
1565 |
+
|
1566 |
+
.nc_socialPanel.swp_d_colorOutlines .twitter a,
|
1567 |
+
html body .nc_socialPanel.swp_i_colorOutlines .twitter a:hover,
|
1568 |
+
body .nc_socialPanel.swp_o_colorOutlines:hover .twitter a,
|
1569 |
+
.wp-editor-container .sw-twitter:before,
|
1570 |
+
a.style1 .sw-click-to-tweet i.sw-twitter,
|
1571 |
+
a.style2 .sw-click-to-tweet i.sw-twitter {
|
1572 |
+
color: #429cd6;
|
1573 |
+
}
|
1574 |
+
|
1575 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .swp_hide span.swp_share,
|
1576 |
+
.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_share:not(.swp_hide) {
|
1577 |
+
opacity: 1;
|
1578 |
+
}
|
1579 |
+
|
1580 |
+
.nc_socialPanel.mobile .iconFiller ~ .swp_count,
|
1581 |
+
.sw-content-locator {
|
1582 |
+
display: none;
|
1583 |
+
}
|
1584 |
+
|
1585 |
+
a.style1 .sw-click-to-tweet .sw-ctt-text,
|
1586 |
+
a.style1 .sw-click-to-tweet .sw-ctt-btn {
|
1587 |
+
color: #999;
|
1588 |
+
text-decoration: none;
|
1589 |
+
}
|
1590 |
+
|
1591 |
+
a.style1:hover .sw-click-to-tweet .sw-ctt-text,
|
1592 |
+
a.style1:hover .sw-click-to-tweet .sw-ctt-btn,
|
1593 |
+
a.style2:hover .sw-click-to-tweet .sw-ctt-text,
|
1594 |
+
a.style2 .sw-click-to-tweet .sw-ctt-btn,
|
1595 |
+
a.style2:hover .sw-click-to-tweet .sw-ctt-btn {
|
1596 |
+
color: #666;
|
1597 |
+
text-decoration: none;
|
1598 |
+
}
|
1599 |
+
|
1600 |
+
a.style3:hover .sw-click-to-tweet .sw-ctt-text,
|
1601 |
+
a.style3 .sw-click-to-tweet .sw-ctt-btn,
|
1602 |
+
a.style3:hover .sw-click-to-tweet .sw-ctt-btn,
|
1603 |
+
a.style3 .sw-click-to-tweet i.sw-twitter,
|
1604 |
+
a.style4 .sw-click-to-tweet .sw-ctt-text,
|
1605 |
+
a.style4:hover .sw-click-to-tweet .sw-ctt-text,
|
1606 |
+
a.style4 .sw-click-to-tweet .sw-ctt-btn,
|
1607 |
+
a.style4:hover .sw-click-to-tweet .sw-ctt-btn,
|
1608 |
+
a.style5 .sw-click-to-tweet .sw-ctt-text,
|
1609 |
+
a.style5:hover .sw-click-to-tweet .sw-ctt-text,
|
1610 |
+
a.style5 .sw-click-to-tweet .sw-ctt-btn,
|
1611 |
+
a.style5:hover .sw-click-to-tweet .sw-ctt-btn {
|
1612 |
+
color: #fff;
|
1613 |
+
text-decoration: none;
|
1614 |
+
}
|
1615 |
+
|
1616 |
+
a.style4 .sw-click-to-tweet i.sw-twitter,
|
1617 |
+
a.style5 .sw-click-to-tweet i.sw-twitter {
|
1618 |
+
color: #fff;
|
1619 |
+
}
|
1620 |
+
|
1621 |
+
a.style6 .sw-click-to-tweet .sw-ctt-text,
|
1622 |
+
a.style6 .sw-click-to-tweet .sw-ctt-btn {
|
1623 |
+
color: #30394f;
|
1624 |
+
text-decoration: none;
|
1625 |
+
}
|
1626 |
+
|
1627 |
+
a.style6:hover .sw-click-to-tweet .sw-ctt-text,
|
1628 |
+
a.style6:hover .sw-click-to-tweet .sw-ctt-btn,
|
1629 |
+
a.style6:hover .sw-click-to-tweet i.sw-twitter {
|
1630 |
+
color: #2a2d34;
|
1631 |
+
text-decoration: none;
|
1632 |
+
}
|
1633 |
+
|
1634 |
+
.scale-70 {
|
1635 |
+
-ms-transform: scale(0.7);
|
1636 |
+
-webkit-transform: scale(0.7);
|
1637 |
+
transform: scale(0.7);
|
1638 |
+
}
|
1639 |
+
|
1640 |
+
.nc_socialPanel:not(.nc_floater).scale-70.scale-fullWidth {
|
1641 |
+
width: 142.8571428571429%!important;
|
1642 |
+
}
|
1643 |
+
|
1644 |
+
.scale-80 {
|
1645 |
+
-ms-transform: scale(0.8);
|
1646 |
+
-webkit-transform: scale(0.8);
|
1647 |
+
transform: scale(0.8);
|
1648 |
+
}
|
1649 |
+
|
1650 |
+
.nc_socialPanel:not(.nc_floater).scale-80.scale-fullWidth {
|
1651 |
+
width: 125%!important;
|
1652 |
+
}
|
1653 |
+
|
1654 |
+
.scale-90 {
|
1655 |
+
-ms-transform: scale(0.9);
|
1656 |
+
-webkit-transform: scale(0.9);
|
1657 |
+
transform: scale(0.9);
|
1658 |
+
}
|
1659 |
+
|
1660 |
+
.nc_socialPanel:not(.nc_floater).scale-90.scale-fullWidth {
|
1661 |
+
width: 111.111111111111%!important;
|
1662 |
+
}
|
1663 |
+
|
1664 |
+
.scale-110 {
|
1665 |
+
-ms-transform: scale(1.1);
|
1666 |
+
-webkit-transform: scale(1.1);
|
1667 |
+
transform: scale(1.1);
|
1668 |
+
}
|
1669 |
+
|
1670 |
+
.nc_socialPanel:not(.nc_floater).scale-110.scale-fullWidth {
|
1671 |
+
width: 90.90909090909091%!important;
|
1672 |
+
}
|
1673 |
+
|
1674 |
+
.scale-120 {
|
1675 |
+
-ms-transform: scale(1.2);
|
1676 |
+
-webkit-transform: scale(1.2);
|
1677 |
+
transform: scale(1.2);
|
1678 |
+
}
|
1679 |
+
|
1680 |
+
.nc_socialPanel:not(.nc_floater).scale-120.scale-fullWidth {
|
1681 |
+
width: 83.33333333333333%!important;
|
1682 |
+
}
|
1683 |
+
|
1684 |
+
.scale-130 {
|
1685 |
+
-ms-transform: scale(1.3);
|
1686 |
+
-webkit-transform: scale(1.3);
|
1687 |
+
transform: scale(1.3);
|
1688 |
+
}
|
1689 |
+
|
1690 |
+
.nc_socialPanel:not(.nc_floater).scale-130.scale-fullWidth {
|
1691 |
+
width: 76.92307692307692%!important;
|
1692 |
+
}
|
1693 |
+
|
1694 |
+
.scale-140 {
|
1695 |
+
-ms-transform: scale(1.4);
|
1696 |
+
-webkit-transform: scale(1.4);
|
1697 |
+
transform: scale(1.4);
|
1698 |
+
}
|
1699 |
+
|
1700 |
+
.nc_socialPanel:not(.nc_floater).scale-140.scale-fullWidth {
|
1701 |
+
width: 71.42857142857143%!important;
|
1702 |
+
}
|
1703 |
+
|
1704 |
+
.scale-fullWidth,
|
1705 |
+
.scale-left,
|
1706 |
+
.nc_floater.scale-center,
|
1707 |
+
.nc_floater.scale-right {
|
1708 |
+
-ms-transform-origin: left;
|
1709 |
+
-webkit-transform-origin: left;
|
1710 |
+
transform-origin: left;
|
1711 |
+
}
|
1712 |
+
|
1713 |
+
.scale-right {
|
1714 |
+
-ms-transform-origin: right;
|
1715 |
+
-webkit-transform-origin: right;
|
1716 |
+
transform-origin: right;
|
1717 |
+
}
|
1718 |
+
|
1719 |
+
.scale-center {
|
1720 |
+
-ms-transform-origin: center;
|
1721 |
+
-webkit-transform-origin: center;
|
1722 |
+
transform-origin: center;
|
1723 |
+
}
|
1724 |
+
|
1725 |
+
div.nc_socialPanel .nc_tweetContainer.swp_emphasize {
|
1726 |
+
-webkit-box-flex: 2;
|
1727 |
+
-moz-box-flex: 2;
|
1728 |
+
-webkit-flex: 2;
|
1729 |
+
-ms-flex: 2;
|
1730 |
+
flex: 2;
|
1731 |
+
}
|
1732 |
+
|
1733 |
+
div.nc_socialPanel .nc_tweetContainer.swp_whatsapp:not(.mobile) {
|
1734 |
+
display: none;
|
1735 |
+
}
|
1736 |
+
|
1737 |
+
.sw-pinit.aligncenter {
|
1738 |
+
margin: 0 auto;
|
1739 |
+
}
|
1740 |
+
|
1741 |
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
1742 |
+
div.sw-pinit {
|
1743 |
+
display: inline-block!important;
|
1744 |
+
max-width: 100%;
|
1745 |
+
}
|
1746 |
+
}
|
1747 |
+
|
1748 |
+
.swp_hidden_pin_image {
|
1749 |
+
height: 0;
|
1750 |
+
opacity: 0;
|
1751 |
+
position: absolute;
|
1752 |
+
top: 0;
|
1753 |
+
width: 0;
|
1754 |
+
}
|
css/style.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.nc_socialPanel{clear:both;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;height:34px;line-height:1;margin-bottom:20px!important;margin-top:20px!important;overflow:hidden;padding:0;-webkit-align-items:stretch;align-items:stretch;-webkit-box-align:stretch;-moz-box-align:stretch;-webkit-box-pack:justify;-moz-box-pack:justify;-ms-flex-align:stretch;-ms-flex-line-pack:center;-ms-flex-pack:justify;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.nc_socialPanel:not(.nc_floater):not(.nc_socialPanelSide){width:100%!important}.nc_wrapper .nc_socialPanel{margin-bottom:10px!important;margin-top:10px!important}div.nc_socialPanel .nc_tweetContainer{-webkit-border-radius:2px;border-radius:2px;cursor:pointer;float:left;font-family:Lato;height:32px;margin:0 5px;min-width:34px;overflow:hidden;text-align:center;-webkit-transition:all .1s linear;transition:all .1s linear;border-size:1px}div.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.nc_socialPanel .nc_tweetContainer a.nc_tweet,.nc_socialPanel .totes .swp_count{display:block;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;font-family:Lato,sans-serif;font-size:18px!important;font-weight:700;height:30px;text-decoration:none;text-decoration:none!important;text-transform:none;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-child(1){margin-left:0}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-last-child(1){margin-right:0}.nc_socialPanel a .swp_count:not(.swp_hide){display:inline-block;line-height:32px;margin:0;padding:0 5px;-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.nc_socialPanel .totes .swp_count,span.swp_share{line-height:30px}.nc_socialPanel a .swp_count.swp_hide{margin:0 auto}.nc_socialPanel span:before{content:initial!important}.nc_socialPanel span.swp_count{font-size:14px}.nc_socialPanel span.iconFiller{font-size:18px;margin:0 auto}.nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1){margin-left:0}.nc_socialPanel:not(.nc_socialPanelSide){-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1){margin-left:0;margin-right:15px;padding-left:0}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1){margin-right:0;padding-right:0}a.swp_CTT{cursor:pointer}span.swp_share{display:block;float:right;float:left;font-size:14px;font-weight:400;height:30px;margin:0 0 0 6px;max-width:none!important;vertical-align:middle}.nc_socialPanelSide span.swp_share{margin:0}.nc_socialPanel .sw{float:left;height:30px;line-height:32px;margin:0 5px;text-shadow:none!important;width:20px}.iconFiller{display:block;float:left;height:30px;overflow:hidden;-webkit-transition:width .1s linear;transition:width .1s linear}.nc_socialPanel .iconFiller{width:30px}span.spaceManWilly{display:block;width:120px}.nc_socialPanel .totes{background:#c4c4c4;border:1px solid #e08a0f;-webkit-border-radius:2px;border-radius:2px;color:#fff;cursor:default;display:block;font-size:19px;padding:0 10px;-webkit-box-flex:0!important;-moz-box-flex:0!important;-webkit-flex:none!important;-ms-flex:none!important;flex:none!important}.nc_socialPanel div.totes.totesalt,.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)){background:0 0!important;border:none;color:#474b4d;margin-left:0!important}div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)){background:0 0;color:#474b4d;margin-left:10px}.nc_socialPanel .totes.totesalt .swp_label{color:#474b4d;font-size:10px;letter-spacing:0;min-width:40px;vertical-align:middle}.nc_socialPanel .totes .swp_label{font-size:10px;vertical-align:middle}.nc_socialPanel .totes.totesalt .swp_count{color:#474b4d;font-size:24px}.nc_socialPanel.swp_customFull:hover div.totes,.nc_socialPanel.swp_fade .totes,.nc_socialPanel.swp_fullColor .totes,.nc_socialPanel:hover .totes{background:#e08a0f}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer.totes.totesalt:before{content:"o";display:inline-block;font-family:sw-icon-font;margin-top:7px;vertical-align:top}.nc_socialPanel:not(.nc_socialPanelSide) .totes.totesalt .swp_count{display:inline-block;line-height:0;margin-left:8px;margin-top:12px;min-width:45px;position:relative;vertical-align:middle}span.swp_label{display:block;font-size:9px!important;margin-top:13px;position:absolute;text-align:center!important;text-transform:uppercase}.nc_socialPanelSide span.swp_label{margin-top:0}.nc_socialPanel.swp_leaf .nc_tweetContainer{-webkit-border-radius:15px 0;border-radius:15px 0;border-width:1px}.nc_socialPanel.swp_pill .nc_tweetContainer{-webkit-border-radius:50px;border-radius:50px;border-width:1px}.nc_socialPanel.swp_shift .nc_tweetContainer:not(.totes){border-width:1px;-moz-transform:skew(-25deg);-o-transform:skew(-25deg);-webkit-transform:skew(-25deg)}.nc_socialPanel.swp_shift .nc_tweetContainer a{-moz-transform:skew(25deg);-o-transform:skew(25deg);-webkit-transform:skew(25deg)}.swp_connected .nc_tweetContainer,.swp_connected .nc_tweetContainer:hover,.swp_connected:hover .nc_tweetContainer{-webkit-border-radius:0!important;border-radius:0!important;border-width:1px;margin:0!important}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover{border:1px solid #df4b37}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover{border:1px solid #429cd6}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover{border:1px solid #3a589e}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover{border:1px solid #cd2029}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .linkedIn:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .linkedIn:hover{border:1px solid #0d77b7}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_tumblr:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_tumblr:hover{border:1px solid #39475d}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_stumbleupon:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_stumbleupon:hover{border:1px solid #ef5025}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_yummly:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_yummly:hover{border:1px solid #e26426}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_reddit:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_reddit:hover{border:1px solid #f04b23}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_email:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_email:hover{border:1px solid #6bcce9}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_whatsapp:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_whatsapp:hover{border:1px solid #71c169}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_pocket:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_pocket:hover{border:1px solid #ef4056}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_buffer:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_buffer:hover{border:1px solid #323b43}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_hacker_news:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_hacker_news:hover{border:1px solid #d85623}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_flipboard:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_flipboard:hover{border:1px solid #bf2626}.nc_socialPanel.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_o_fullColor:hover .googlePlus,html body .nc_socialPanel.swp_i_fullColor .googlePlus:hover{background:#df4b37;border:1px solid #c44133}.nc_socialPanel.swp_d_fullColor .twitter,body .nc_socialPanel.swp_o_fullColor:hover .twitter,html body .nc_socialPanel.swp_i_fullColor .twitter:hover{background:#429cd6;border:1px solid #3c87b2}.nc_socialPanel.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_o_fullColor:hover .swp_fb,html body .nc_socialPanel.swp_i_fullColor .swp_fb:hover{background:#3a589e;border:1px solid #2e4675}.nc_socialPanel.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_o_fullColor:hover .nc_pinterest,html body .nc_socialPanel.swp_i_fullColor .nc_pinterest:hover{background:#cd2029;border:1px solid #aa1b29}.nc_socialPanel.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_o_fullColor:hover .linkedIn,html body .nc_socialPanel.swp_i_fullColor .linkedIn:hover{background:#0d77b7;border:1px solid #0c6591}.nc_socialPanel.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_o_fullColor:hover .swp_tumblr,html body .nc_socialPanel.swp_i_fullColor .swp_tumblr:hover{background:#39475d;border:1px solid #27313f}.nc_socialPanel.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_o_fullColor:hover .swp_stumbleupon,html body .nc_socialPanel.swp_i_fullColor .swp_stumbleupon:hover{background:#ef5025;border:1px solid #d34427}.nc_socialPanel.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_o_fullColor:hover .swp_yummly,html body .nc_socialPanel.swp_i_fullColor .swp_yummly:hover{background:#e26426;border:1px solid #b65027}.nc_socialPanel.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_o_fullColor:hover .swp_reddit,html body .nc_socialPanel.swp_i_fullColor .swp_reddit:hover{background:#f04b23;border:1px solid #d33f27}.nc_socialPanel.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_o_fullColor:hover .swp_email,html body .nc_socialPanel.swp_i_fullColor .swp_email:hover{background:#6bcce9;border:1px solid #61bace}.nc_socialPanel.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_o_fullColor:hover .swp_whatsapp,html body .nc_socialPanel.swp_i_fullColor .swp_whatsapp:hover{background:#71c169;border:1px solid #28b04b}.nc_socialPanel.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_o_fullColor:hover .swp_pocket,html body .nc_socialPanel.swp_i_fullColor .swp_pocket:hover{background:#ef4056;border:1px solid #ce3d55}.nc_socialPanel.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_o_fullColor:hover .swp_buffer,html body .nc_socialPanel.swp_i_fullColor .swp_buffer:hover{background:#323b43;border:1px solid #000}.nc_socialPanel.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_o_fullColor:hover .swp_hacker_news,html body .nc_socialPanel.swp_i_fullColor .swp_hacker_news:hover{background:#f16522;border:1px solid #d85623}.nc_socialPanel.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_o_fullColor:hover .swp_flipboard,html body .nc_socialPanel.swp_i_fullColor .swp_flipboard:hover{background:#e02828;border:1px solid #bf2626}.nc_socialPanel.swp_threeDee.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .googlePlus,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .googlePlus:hover{border-bottom:3px solid #c44133}.nc_socialPanel.swp_threeDee.swp_d_fullColor .twitter,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .twitter,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .twitter:hover{border-bottom:3px solid #5595bc}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_fb,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_fb:hover{border-bottom:3px solid #2e4675}.nc_socialPanel.swp_threeDee.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .nc_pinterest,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .nc_pinterest:hover{border-bottom:3px solid #aa1b29}.nc_socialPanel.swp_threeDee.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .linkedIn,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .linkedIn:hover{border-bottom:3px solid #0c6591}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_tumblr,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_tumblr:hover{border-bottom:3px solid #27313f}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_stumbleupon,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_stumbleupon:hover{border-bottom:3px solid #d34427}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_yummly,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_yummly:hover{border-bottom:3px solid #b65027}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_reddit,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_reddit:hover{border-bottom:3px solid #d33f27}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_email,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_email:hover{border-bottom:3px solid #61bace}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_whatsapp,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_whatsapp:hover{border-bottom:3px solid #28b04b}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_pocket,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_pocket:hover{border-bottom:3px solid #ce3d55}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_buffer,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_buffer:hover{border-bottom:3px solid #000}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_hacker_news,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_hacker_news:hover{border-bottom:3px solid #d85623}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_flipboard,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_flipboard:hover{border-bottom:3px solid #bf2626}.nc_socialPanel.swp_d_lightGray .nc_tweetContainer,body .nc_socialPanel.swp_o_lightGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover{background-color:#ccc;border:1px solid #ccc}.nc_socialPanel.swp_threeDee.swp_d_lightGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_lightGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_lightGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #999}.nc_socialPanel.swp_d_mediumGray .nc_tweetContainer,body .nc_socialPanel.swp_o_mediumGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_mediumGray .nc_tweetContainer:hover{background-color:#999;border:1px solid #999}.nc_socialPanel.swp_threeDee.swp_d_mediumGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_mediumGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_mediumGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #444}.nc_socialPanel.swp_d_darkGray .nc_tweetContainer,body .nc_socialPanel.swp_o_darkGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_darkGray .nc_tweetContainer:hover{background-color:#444;border:1px solid #444}.nc_socialPanel.swp_threeDee.swp_d_darkGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_darkGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_darkGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #222}.nc_socialPanel.swp_d_lgOutlines a,body .nc_socialPanel.swp_o_lgOutlines:hover a,html body .nc_socialPanel.swp_i_lgOutlines a:hover{color:#ccc}.nc_socialPanel.swp_d_lgOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_lgOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_lgOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #ccc}.nc_socialPanel.swp_d_mdOutlines a,body .nc_socialPanel.swp_o_mdOutlines:hover a,html body .nc_socialPanel.swp_i_mdOutlines a:hover{color:#999}.nc_socialPanel.swp_d_mdOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_mdOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_mdOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #999}.nc_socialPanel.swp_d_dgOutlines a,body .nc_socialPanel.swp_o_dgOutlines:hover a,html body .nc_socialPanel.swp_i_dgOutlines a:hover{color:#444}.nc_socialPanel.swp_d_dgOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_dgOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_dgOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #444}.nc_socialPanel.swp_d_colorOutlines .googlePlus a,body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus a,html body .nc_socialPanel.swp_i_colorOutlines .googlePlus a:hover{color:#df4b37}.nc_socialPanel.swp_d_colorOutlines .swp_fb a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb a,html body .nc_socialPanel.swp_i_colorOutlines .swp_fb a:hover{color:#3a589e}.nc_socialPanel.swp_d_colorOutlines .nc_pinterest a,body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest a,html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest a:hover{color:#cd2029}.nc_socialPanel.swp_d_colorOutlines .linkedIn a,body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn a,html body .nc_socialPanel.swp_i_colorOutlines .linkedIn a:hover{color:#0d77b7}.nc_socialPanel.swp_d_colorOutlines .swp_tumblr a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr a,html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr a:hover{color:#39475d}.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon a,html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon a:hover{color:#ef5025}.nc_socialPanel.swp_d_colorOutlines .swp_yummly a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly a,html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly a:hover{color:#e26426}.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp a,html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp a:hover{color:#71c169}.nc_socialPanel.swp_d_colorOutlines .swp_pocket a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket a,html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket a:hover{color:#ef4056}.nc_socialPanel.swp_d_colorOutlines .swp_reddit a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit a,html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit a:hover{color:#f04b23}.nc_socialPanel.swp_d_colorOutlines .swp_email a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email a,html body .nc_socialPanel.swp_i_colorOutlines .swp_email a:hover{color:#6bcce9}.nc_socialPanel.swp_d_colorOutlines .swp_buffer a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer a,html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer a:hover{color:#323b43}.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news a,html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news a:hover{color:#f16522}.nc_socialPanel.swp_d_colorOutlines .swp_flipboard a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard a,html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard a:hover{color:#e02828}.nc_socialPanel.swp_d_colorOutlines .googlePlus,body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus,html body .nc_socialPanel.swp_i_colorOutlines .googlePlus:hover{background:0 0;border:1px solid #df4b37}.nc_socialPanel.swp_d_colorOutlines .twitter,body .nc_socialPanel.swp_o_colorOutlines:hover .twitter,html body .nc_socialPanel.swp_i_colorOutlines .twitter:hover{background:0 0;border:1px solid #429cd6}.nc_socialPanel.swp_d_colorOutlines .swp_fb,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb,html body .nc_socialPanel.swp_i_colorOutlines .swp_fb:hover{background:0 0;border:1px solid #3a589e}.nc_socialPanel.swp_d_colorOutlines .nc_pinterest,body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest,html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest:hover{background:0 0;border:1px solid #cd2029}.nc_socialPanel.swp_d_colorOutlines .linkedIn,body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn,html body .nc_socialPanel.swp_i_colorOutlines .linkedIn:hover{background:0 0;border:1px solid #0d77b7}.nc_socialPanel.swp_d_colorOutlines .swp_tumblr,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr,html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr:hover{background:0 0;border:1px solid #39475d}.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon,html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon:hover{background:0 0;border:1px solid #ef5025}.nc_socialPanel.swp_d_colorOutlines .swp_yummly,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly,html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly:hover{background:0 0;border:1px solid #e26426}.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp,html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp:hover{background:0 0;border:1px solid #71c169}.nc_socialPanel.swp_d_colorOutlines .swp_reddit,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit,html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit:hover{background:0 0;border:1px solid #f04b23}.nc_socialPanel.swp_d_colorOutlines .swp_email,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email,html body .nc_socialPanel.swp_i_colorOutlines .swp_email:hover{background:0 0;border:1px solid #6bcce9}.nc_socialPanel.swp_d_colorOutlines .swp_pocket,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket,html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket:hover{background:0 0;border:1px solid #ef4056}.nc_socialPanel.swp_d_colorOutlines .swp_buffer,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer,html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer:hover{background:0 0;border:1px solid #323b43}.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news,html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news:hover{background:0 0;border:1px solid #f16522}.nc_socialPanel.swp_d_colorOutlines .swp_flipboard,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard,html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard:hover{background:0 0;border:1px solid #bf2626}.nc_socialPanelSide{flex-direction:column;height:auto;overflow:visible;top:200px;-webkit-transition:all .2s linear;transition:all .2s linear;width:100px!important;z-index:9999999;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column}.nc_socialPanelSide.slide{position:fixed;left:-100px;-webkit-transition:all .2s linear;transition:all .2s linear}.nc_socialPanelSide.fade{display:none;position:fixed;left:5px;-webkit-transition:all .2s linear;transition:all .2s linear}.nc_socialPanelSide .nc_tweetContainer{background:#dd4b38;-webkit-border-radius:3px;border-radius:3px;clear:both;display:block;font-family:Lato,sans-serif;height:32px;margin:3px 0!important;overflow:hidden;padding:0;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top;width:90px}.nc_socialPanelSide .nc_tweetContainer .iconFiller{display:inline-block;height:40px;margin:0 6px;padding:0;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:middle;width:21px}.nc_socialPanelSide .nc_tweetContainer .swp_count{display:inline-block;font-size:14px;height:32px;line-height:35px;margin:0;overflow:hidden;padding:0;text-align:right;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top;width:0}.nc_socialPanelSide .nc_tweetContainer a{cursor:pointer;display:block;font-weight:500;height:36px;margin:0;padding:0;text-decoration:none;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top}.nc_socialPanelSide .nc_tweetContainer .sw,.nc_socialPanelSide .nc_tweetContainer .swp_share{float:left;line-height:34px}.nc_socialPanelSide.swp_default .nc_tweetContainer .sw{line-height:32px}.nc_socialPanelSide.swp_default .nc_tweetContainer .swp_share{line-height:30px}.nc_socialPanelSide .nc_tweetContainer .swp_share{font-size:13px}.nc_socialPanelSide .nc_tweetContainer:hover,.nc_socialPanelSide .nc_tweetContainer:hover .iconFiller,.nc_socialPanelSide .nc_tweetContainer:hover .swp_count{-webkit-transition:all .1s linear;transition:all .1s linear}.nc_socialPanelSide.swp_boxed{-ms-transform:scale(.9);-webkit-transform:scale(.9);transform:scale(.9)}.nc_socialPanelSide.swp_boxed .nc_tweetContainer{margin-bottom:5px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer,.nc_socialPanelSide.swp_boxed .nc_tweetContainer a{height:75px;position:relative;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer i.sw{font-size:27px;height:40px;margin:0;padding-top:10px;text-align:center;width:100%}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_share{height:35px;opacity:0;position:absolute;bottom:0;left:0;text-align:center;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count{height:35px;margin:0;padding:0;position:absolute;bottom:0;left:0;text-align:center;-webkit-transition:padding .1s linear;transition:padding .1s linear;width:100%}.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count.swp_hide{height:75px;opacity:1}.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.iconFiller{height:40px;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_count:not(.swp_hide){opacity:0}.nc_socialPanelSide.swp_boxed .totes{padding:0;width:75px!important}.nc_socialPanelSide .nc_tweetContainer:not(.totes){line-height:34px}.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes) .iconFiller{margin-left:2px;width:30px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count{padding:0 8px;width:48px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count.swp_hide{padding:0;width:100%}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_hide .iconFiller{display:block;float:none;margin:0 auto}.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes):hover{width:150px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly,.nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller{width:90px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .spaceManWilly,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover .iconFiller{width:100%}.nc_socialPanelSide .nc_tweetContainer.totes{background:rgba(0,0,0,0);border:0!important;font-weight:800;height:45px;margin:0;padding:0;text-align:center;width:90px}.nc_socialPanelSide .nc_tweetContainer.totes .swp_count{color:#444;display:block;font-family:Lato,sans-serif;height:28px;text-align:center;width:100%}.nc_socialPanelSide .nc_tweetContainer.totes .swp_label{color:#444;display:block;font-family:Lato,sans-serif;font-size:50%;position:relative;text-align:center;width:100%}.nc_wrapper{background:#fff;position:fixed;-webkit-transition:top .5s bottom .5s;transition:top .5s bottom .5s;width:100%;z-index:99999}.nc_wrapper.floatBottom{bottom:0;left:0}.nc_wrapper.floatTop{top:0;left:0}.nc_floater{margin:10px 0;position:relative;left:304px;width:740px}.nc_socialPanelSide.hideCounts a{text-align:center}.nc_socialPanelSide.hideCounts .iconFiller{float:none;text-align:left}.sw{display:inline-block;font-family:sw-icon-font!important;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;text-rendering:auto;-ms-transform:translate(0,0);-webkit-transform:translate(0,0);transform:translate(0,0)}.sw:before{display:block!important}.wp-editor-container .sw:before{font-size:18px;line-height:22px}.wp-editor-container .sw-social-warfare:before{color:#ee464f}.mce-container .sw-social-warfare{color:#ee464f;font-size:20px;margin-right:15px;vertical-align:middle}.sw-google-plus:before{content:"h"}.sw-pinterest:before{content:"b"}.sw-twitter:before{content:"s"}.sw-facebook:before{content:"j"}.sw-linkedin:before{content:"f"}.sw-tumblr:before{content:"r"}.sw-stumbleupon:before{content:"q"}.sw-reddit:before{content:"a"}.sw-email:before{content:"k"}.sw-yummly:before{content:"x"}.sw-whatsapp:before{content:"y"}.sw-pocket:before{content:"B"}.sw-buffer:before{content:"z"}.sw-hacker_news:before{content:"D"}.sw-flipboard:before{content:"C"}.sw-social-warfare:before{content:"p"}.sw-click-to-tweet:after,.sw-tweet-clear:after{content:".";height:0;clear:both;visibility:hidden;display:block}.swp_CTT{text-decoration:none!important}.sw-tweet-clear{zoom:1}.sw-click-to-tweet{display:block;margin:15px 0;padding:15px 30px;position:relative}.sw-click-to-tweet:after{line-height:0}.sw-click-to-tweet .sw-ctt-text{margin:0 0 10px;padding:0;position:relative;word-wrap:break-word}a .sw-click-to-tweet .sw-ctt-text{display:block;font-size:24px;font-weight:500;line-height:140%;margin:0;padding:0;position:relative;text-decoration:none;text-transform:none}.sw-click-to-tweet .sw-ctt-btn{display:block;float:right;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;line-height:100%;margin:10px 0 0;padding:3px 5px 3px 3px;position:relative;text-decoration:none;text-transform:uppercase}.sw-click-to-tweet i.sw-twitter{float:right;font-size:21px;margin-left:15px;margin-top:2px;text-transform:none}a.swp_CTT.style1 .sw-click-to-tweet{background-color:#fff;border:1px solid #ddd;-webkit-border-radius:4px;border-radius:4px}a.swp_CTT.style2 .sw-click-to-tweet{background-color:#fff;border:4px double #ddd;-webkit-border-radius:0;border-radius:0}a.style2 .sw-click-to-tweet .sw-ctt-text{color:#666;font-style:italic;text-decoration:none}a.swp_CTT.style3:hover .sw-click-to-tweet{border-left:10px solid #3c87b2;padding-right:20px;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style3 .sw-click-to-tweet{background-color:#429cd6;border:none;border-left:10px solid #429cd6;-webkit-border-radius:0;border-radius:0;padding-right:20px;-webkit-transition:all .25s linear;transition:all .25s linear}a.style3 .sw-click-to-tweet .sw-ctt-text{color:#fff;font-style:italic;text-decoration:none}a.swp_CTT.style4:hover .sw-click-to-tweet{border-left:10px solid #3c87b2;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style4 .sw-click-to-tweet{background-color:#333;border-left:10px solid #c33;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style5:hover .sw-click-to-tweet{background-color:#d34250;border-left:10px solid #30394f;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style5 .sw-click-to-tweet{background-color:#30394f;border-left:10px solid #d34250;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style6:hover .sw-click-to-tweet{background-color:#ced3dc;border-left:10px solid #d34250;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style6 .sw-click-to-tweet{background-color:#eee;border-left:10px solid #d34250;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.style6 .sw-click-to-tweet i.sw-twitter{color:#30394f}.swp_pop_thumb{-webkit-border-radius:3px;border-radius:3px;float:left;height:100px;margin:5px 25px 5px 0;width:100px}.swp_popular_post{clear:both}.swp_clearfix:after{clear:both;content:" ";display:block;height:0;visibility:hidden}.swp_popular_post a.swp_popularity{border:none;display:block;line-height:1.5;margin:20px 0}span.swp_pop_count{display:block;font-size:70%}.swp_widget_box{-webkit-border-radius:3px;border-radius:3px}div.sw-pinit{display:table!important;line-height:0;position:relative!important}.nc_socialPanel.mobile .iconFiller~.swp_count,.sw-content-locator,div.nc_socialPanel .nc_tweetContainer.swp_whatsapp:not(.mobile){display:none}div.sw-pinit a.sw-pinit-button,div.sw-pinit a.sw-pinit-button:visited{background:#cd2029;border:1px solid #aa1b29;-webkit-border-radius:4px;border-radius:4px;color:#fff;font-size:20px;height:50px;line-height:45px;opacity:0;padding:0 30px;position:absolute;text-decoration:none;-webkit-transition:opacity .5s;transition:opacity .5s;z-index:200}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .swp_hide span.swp_share,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_share:not(.swp_hide),div.sw-pinit:focus a.sw-pinit-button,div.sw-pinit:hover a.sw-pinit-button{opacity:1}div.sw-pinit a.sw-pinit-button::before{color:#fff;content:"b";float:left;font-family:sw-icon-font;font-size:24px;font-weight:400;line-height:50px;margin-left:-5px;margin-right:10px}div.sw-pinit a.sw-pinit-button:hover::before{content:"F"}div.sw-pinit a.sw-pinit-button::focus,div.sw-pinit a.sw-pinit-button::hover{background:#aa1b29;color:#fff;text-decoration:none}div.sw-pinit .sw-pinit-left{left:30px}div.sw-pinit .sw-pinit-center{margin-left:-60px;left:50%}div.sw-pinit .sw-pinit-right{right:30px}div.sw-pinit .sw-pinit-top{top:30px}div.sw-pinit .sw-pinit-middle{margin-top:-25px;top:50%}div.sw-pinit .sw-pinit-bottom{bottom:30px}.mobile .nc_tweetContainer:nth-last-child(2),.nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1),.nc_tweetContainer.totes:nth-last-child(1){margin-right:0}.nc_socialPanel.swp_d_darkGray a,.nc_socialPanel.swp_d_fullColor a,.nc_socialPanel.swp_d_lightGray a,.nc_socialPanel.swp_d_mediumGray a,body .nc_socialPanel.swp_o_darkGray:hover a,body .nc_socialPanel.swp_o_fullColor:hover a,body .nc_socialPanel.swp_o_lightGray:hover a,body .nc_socialPanel.swp_o_mediumGray:hover a,html body .nc_socialPanel.swp_i_darkGray a:hover,html body .nc_socialPanel.swp_i_fullColor .nc_tweetContainer:hover a,html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover a,html body .nc_socialPanel.swp_i_mediumGray a:hover{color:#fff}.nc_socialPanel.swp_d_colorOutlines .twitter a,.wp-editor-container .sw-twitter:before,a.style1 .sw-click-to-tweet i.sw-twitter,a.style2 .sw-click-to-tweet i.sw-twitter,body .nc_socialPanel.swp_o_colorOutlines:hover .twitter a,html body .nc_socialPanel.swp_i_colorOutlines .twitter a:hover{color:#429cd6}a.style1 .sw-click-to-tweet .sw-ctt-btn,a.style1 .sw-click-to-tweet .sw-ctt-text{color:#999;text-decoration:none}a.style1:hover .sw-click-to-tweet .sw-ctt-btn,a.style1:hover .sw-click-to-tweet .sw-ctt-text,a.style2 .sw-click-to-tweet .sw-ctt-btn,a.style2:hover .sw-click-to-tweet .sw-ctt-btn,a.style2:hover .sw-click-to-tweet .sw-ctt-text{color:#666;text-decoration:none}a.style3 .sw-click-to-tweet .sw-ctt-btn,a.style3 .sw-click-to-tweet i.sw-twitter,a.style3:hover .sw-click-to-tweet .sw-ctt-btn,a.style3:hover .sw-click-to-tweet .sw-ctt-text,a.style4 .sw-click-to-tweet .sw-ctt-btn,a.style4 .sw-click-to-tweet .sw-ctt-text,a.style4:hover .sw-click-to-tweet .sw-ctt-btn,a.style4:hover .sw-click-to-tweet .sw-ctt-text,a.style5 .sw-click-to-tweet .sw-ctt-btn,a.style5 .sw-click-to-tweet .sw-ctt-text,a.style5:hover .sw-click-to-tweet .sw-ctt-btn,a.style5:hover .sw-click-to-tweet .sw-ctt-text{color:#fff;text-decoration:none}a.style4 .sw-click-to-tweet i.sw-twitter,a.style5 .sw-click-to-tweet i.sw-twitter{color:#fff}a.style6 .sw-click-to-tweet .sw-ctt-btn,a.style6 .sw-click-to-tweet .sw-ctt-text{color:#30394f;text-decoration:none}a.style6:hover .sw-click-to-tweet .sw-ctt-btn,a.style6:hover .sw-click-to-tweet .sw-ctt-text,a.style6:hover .sw-click-to-tweet i.sw-twitter{color:#2a2d34;text-decoration:none}.scale-70{-ms-transform:scale(.7);-webkit-transform:scale(.7);transform:scale(.7)}.nc_socialPanel:not(.nc_floater).scale-70.scale-fullWidth{width:142.8571428571429%!important}.scale-80{-ms-transform:scale(.8);-webkit-transform:scale(.8);transform:scale(.8)}.nc_socialPanel:not(.nc_floater).scale-80.scale-fullWidth{width:125%!important}.scale-90{-ms-transform:scale(.9);-webkit-transform:scale(.9);transform:scale(.9)}.nc_socialPanel:not(.nc_floater).scale-90.scale-fullWidth{width:111.111111111111%!important}.scale-110{-ms-transform:scale(1.1);-webkit-transform:scale(1.1);transform:scale(1.1)}.nc_socialPanel:not(.nc_floater).scale-110.scale-fullWidth{width:90.90909090909091%!important}.scale-120{-ms-transform:scale(1.2);-webkit-transform:scale(1.2);transform:scale(1.2)}.nc_socialPanel:not(.nc_floater).scale-120.scale-fullWidth{width:83.33333333333333%!important}.scale-130{-ms-transform:scale(1.3);-webkit-transform:scale(1.3);transform:scale(1.3)}.nc_socialPanel:not(.nc_floater).scale-130.scale-fullWidth{width:76.92307692307692%!important}.scale-140{-ms-transform:scale(1.4);-webkit-transform:scale(1.4);transform:scale(1.4)}.nc_socialPanel:not(.nc_floater).scale-140.scale-fullWidth{width:71.42857142857143%!important}.nc_floater.scale-center,.nc_floater.scale-right,.scale-fullWidth,.scale-left{-ms-transform-origin:left;-webkit-transform-origin:left;transform-origin:left}.scale-right{-ms-transform-origin:right;-webkit-transform-origin:right;transform-origin:right}.scale-center{-ms-transform-origin:center;-webkit-transform-origin:center;transform-origin:center}div.nc_socialPanel .nc_tweetContainer.swp_emphasize{-webkit-box-flex:2;-moz-box-flex:2;-webkit-flex:2;-ms-flex:2;flex:2}.sw-pinit.aligncenter{margin:0 auto}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){div.sw-pinit{display:inline-block!important;max-width:100%}}.swp_hidden_pin_image{height:0;opacity:0;position:absolute;top:0;width:0}
|
1 |
+
.nc_socialPanel{clear:both;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;height:34px;line-height:1;margin-bottom:20px!important;margin-top:20px!important;overflow:hidden;padding:0;-webkit-align-items:stretch;align-items:stretch;-webkit-box-align:stretch;-moz-box-align:stretch;-webkit-box-pack:justify;-moz-box-pack:justify;-ms-flex-align:stretch;-ms-flex-line-pack:center;-ms-flex-pack:justify;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.nc_socialPanel:not(.nc_floater):not(.nc_socialPanelSide){width:100%!important}.nc_wrapper .nc_socialPanel{margin-bottom:10px!important;margin-top:10px!important}div.nc_socialPanel .nc_tweetContainer{-webkit-border-radius:2px;border-radius:2px;cursor:pointer;float:left;font-family:Lato;height:32px;margin:0 5px 3px;min-width:34px;overflow:hidden;text-align:center;-webkit-transition:all .1s linear;transition:all .1s linear;border-size:1px}div.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.nc_socialPanel .nc_tweetContainer a.nc_tweet,.nc_socialPanel .totes .swp_count{display:block;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;font-family:Lato,sans-serif;font-size:18px!important;font-weight:700;height:30px;text-decoration:none;text-decoration:none!important;text-transform:none;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-child(1){margin-left:0}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-last-child(1){margin-right:0}.nc_socialPanel a .swp_count:not(.swp_hide){display:inline-block;line-height:32px;margin:0;padding:0 5px;-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.nc_socialPanel .totes .swp_count,span.swp_share{line-height:30px}.nc_socialPanel a .swp_count.swp_hide{margin:0 auto}.nc_socialPanel span:before{content:initial!important}.nc_socialPanel span.swp_count{font-size:14px}.nc_socialPanel span.iconFiller{font-size:18px;margin:0 auto}.nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1){margin-left:0}.nc_socialPanel:not(.nc_socialPanelSide){-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1){margin-left:0;margin-right:15px;padding-left:0}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1){margin-right:0;padding-right:0}a.swp_CTT{cursor:pointer}span.swp_share{display:block;float:right;float:left;font-size:14px;font-weight:400;height:30px;margin:0 0 0 6px;max-width:none!important;vertical-align:middle}.nc_socialPanelSide span.swp_share{margin:0}.nc_socialPanel .sw{float:left;height:30px;line-height:32px;margin:0 5px;text-shadow:none!important;width:20px}.iconFiller{display:block;float:left;height:30px;overflow:hidden;-webkit-transition:width .1s linear;transition:width .1s linear}.nc_socialPanel .iconFiller{width:30px}span.spaceManWilly{display:block;width:120px}.nc_socialPanel .totes{background:#c4c4c4;border:1px solid #e08a0f;-webkit-border-radius:2px;border-radius:2px;color:#fff;cursor:default;display:block;font-size:19px;padding:0 10px;-webkit-box-flex:0!important;-moz-box-flex:0!important;-webkit-flex:none!important;-ms-flex:none!important;flex:none!important}.nc_socialPanel div.totes.totesalt,.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)){background:0 0!important;border:none;color:#474b4d;margin-left:0!important}div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)){background:0 0;color:#474b4d;margin-left:10px}.nc_socialPanel .totes.totesalt .swp_label{color:#474b4d;font-size:10px;letter-spacing:0;min-width:40px;vertical-align:middle}.nc_socialPanel .totes .swp_label{font-size:10px;vertical-align:middle}.nc_socialPanel .totes.totesalt .swp_count{color:#474b4d;font-size:24px}.nc_socialPanel.swp_customFull:hover div.totes,.nc_socialPanel.swp_fade .totes,.nc_socialPanel.swp_fullColor .totes,.nc_socialPanel:hover .totes{background:#e08a0f}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer.totes.totesalt:before{content:"o";display:inline-block;font-family:sw-icon-font;margin-top:7px;vertical-align:top}.nc_socialPanel:not(.nc_socialPanelSide) .totes.totesalt .swp_count{display:inline-block;line-height:0;margin-left:8px;margin-top:12px;min-width:45px;position:relative;vertical-align:middle}span.swp_label{display:block;font-size:9px!important;margin-top:13px;position:absolute;text-align:center!important;text-transform:uppercase}.nc_socialPanelSide span.swp_label{margin-top:0}.nc_socialPanel.swp_leaf .nc_tweetContainer{-webkit-border-radius:15px 0;border-radius:15px 0;border-width:1px}.nc_socialPanel.swp_pill .nc_tweetContainer{-webkit-border-radius:50px;border-radius:50px;border-width:1px}.nc_socialPanel.swp_shift .nc_tweetContainer:not(.totes){border-width:1px;-moz-transform:skew(-25deg);-o-transform:skew(-25deg);-webkit-transform:skew(-25deg)}.nc_socialPanel.swp_shift .nc_tweetContainer a{-moz-transform:skew(25deg);-o-transform:skew(25deg);-webkit-transform:skew(25deg)}.swp_connected .nc_tweetContainer,.swp_connected .nc_tweetContainer:hover,.swp_connected:hover .nc_tweetContainer{-webkit-border-radius:0!important;border-radius:0!important;border-width:1px;margin:0!important}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover{border:1px solid #df4b37}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover{border:1px solid #429cd6}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover{border:1px solid #3a589e}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover{border:1px solid #cd2029}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .linkedIn:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .linkedIn:hover{border:1px solid #0d77b7}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_tumblr:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_tumblr:hover{border:1px solid #39475d}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_stumbleupon:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_stumbleupon:hover{border:1px solid #ef5025}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_yummly:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_yummly:hover{border:1px solid #e26426}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_reddit:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_reddit:hover{border:1px solid #f04b23}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_email:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_email:hover{border:1px solid #6bcce9}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_whatsapp:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_whatsapp:hover{border:1px solid #71c169}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_pocket:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_pocket:hover{border:1px solid #ef4056}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_buffer:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_buffer:hover{border:1px solid #323b43}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_hacker_news:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_hacker_news:hover{border:1px solid #d85623}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_flipboard:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_flipboard:hover{border:1px solid #bf2626}.nc_socialPanel.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_o_fullColor:hover .googlePlus,html body .nc_socialPanel.swp_i_fullColor .googlePlus:hover{background:#df4b37;border:1px solid #c44133}.nc_socialPanel.swp_d_fullColor .twitter,body .nc_socialPanel.swp_o_fullColor:hover .twitter,html body .nc_socialPanel.swp_i_fullColor .twitter:hover{background:#429cd6;border:1px solid #3c87b2}.nc_socialPanel.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_o_fullColor:hover .swp_fb,html body .nc_socialPanel.swp_i_fullColor .swp_fb:hover{background:#3a589e;border:1px solid #2e4675}.nc_socialPanel.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_o_fullColor:hover .nc_pinterest,html body .nc_socialPanel.swp_i_fullColor .nc_pinterest:hover{background:#cd2029;border:1px solid #aa1b29}.nc_socialPanel.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_o_fullColor:hover .linkedIn,html body .nc_socialPanel.swp_i_fullColor .linkedIn:hover{background:#0d77b7;border:1px solid #0c6591}.nc_socialPanel.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_o_fullColor:hover .swp_tumblr,html body .nc_socialPanel.swp_i_fullColor .swp_tumblr:hover{background:#39475d;border:1px solid #27313f}.nc_socialPanel.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_o_fullColor:hover .swp_stumbleupon,html body .nc_socialPanel.swp_i_fullColor .swp_stumbleupon:hover{background:#ef5025;border:1px solid #d34427}.nc_socialPanel.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_o_fullColor:hover .swp_yummly,html body .nc_socialPanel.swp_i_fullColor .swp_yummly:hover{background:#e26426;border:1px solid #b65027}.nc_socialPanel.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_o_fullColor:hover .swp_reddit,html body .nc_socialPanel.swp_i_fullColor .swp_reddit:hover{background:#f04b23;border:1px solid #d33f27}.nc_socialPanel.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_o_fullColor:hover .swp_email,html body .nc_socialPanel.swp_i_fullColor .swp_email:hover{background:#6bcce9;border:1px solid #61bace}.nc_socialPanel.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_o_fullColor:hover .swp_whatsapp,html body .nc_socialPanel.swp_i_fullColor .swp_whatsapp:hover{background:#71c169;border:1px solid #28b04b}.nc_socialPanel.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_o_fullColor:hover .swp_pocket,html body .nc_socialPanel.swp_i_fullColor .swp_pocket:hover{background:#ef4056;border:1px solid #ce3d55}.nc_socialPanel.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_o_fullColor:hover .swp_buffer,html body .nc_socialPanel.swp_i_fullColor .swp_buffer:hover{background:#323b43;border:1px solid #000}.nc_socialPanel.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_o_fullColor:hover .swp_hacker_news,html body .nc_socialPanel.swp_i_fullColor .swp_hacker_news:hover{background:#f16522;border:1px solid #d85623}.nc_socialPanel.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_o_fullColor:hover .swp_flipboard,html body .nc_socialPanel.swp_i_fullColor .swp_flipboard:hover{background:#e02828;border:1px solid #bf2626}.nc_socialPanel.swp_threeDee.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .googlePlus,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .googlePlus:hover{border-bottom:3px solid #c44133}.nc_socialPanel.swp_threeDee.swp_d_fullColor .twitter,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .twitter,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .twitter:hover{border-bottom:3px solid #5595bc}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_fb,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_fb:hover{border-bottom:3px solid #2e4675}.nc_socialPanel.swp_threeDee.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .nc_pinterest,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .nc_pinterest:hover{border-bottom:3px solid #aa1b29}.nc_socialPanel.swp_threeDee.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .linkedIn,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .linkedIn:hover{border-bottom:3px solid #0c6591}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_tumblr,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_tumblr:hover{border-bottom:3px solid #27313f}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_stumbleupon,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_stumbleupon:hover{border-bottom:3px solid #d34427}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_yummly,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_yummly:hover{border-bottom:3px solid #b65027}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_reddit,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_reddit:hover{border-bottom:3px solid #d33f27}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_email,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_email:hover{border-bottom:3px solid #61bace}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_whatsapp,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_whatsapp:hover{border-bottom:3px solid #28b04b}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_pocket,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_pocket:hover{border-bottom:3px solid #ce3d55}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_buffer,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_buffer:hover{border-bottom:3px solid #000}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_hacker_news,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_hacker_news:hover{border-bottom:3px solid #d85623}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_flipboard,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_flipboard:hover{border-bottom:3px solid #bf2626}.nc_socialPanel.swp_d_lightGray .nc_tweetContainer,body .nc_socialPanel.swp_o_lightGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover{background-color:#ccc;border:1px solid #ccc}.nc_socialPanel.swp_threeDee.swp_d_lightGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_lightGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_lightGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #999}.nc_socialPanel.swp_d_mediumGray .nc_tweetContainer,body .nc_socialPanel.swp_o_mediumGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_mediumGray .nc_tweetContainer:hover{background-color:#999;border:1px solid #999}.nc_socialPanel.swp_threeDee.swp_d_mediumGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_mediumGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_mediumGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #444}.nc_socialPanel.swp_d_darkGray .nc_tweetContainer,body .nc_socialPanel.swp_o_darkGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_darkGray .nc_tweetContainer:hover{background-color:#444;border:1px solid #444}.nc_socialPanel.swp_threeDee.swp_d_darkGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_darkGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_darkGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #222}.nc_socialPanel.swp_d_lgOutlines a,body .nc_socialPanel.swp_o_lgOutlines:hover a,html body .nc_socialPanel.swp_i_lgOutlines a:hover{color:#ccc}.nc_socialPanel.swp_d_lgOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_lgOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_lgOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #ccc}.nc_socialPanel.swp_d_mdOutlines a,body .nc_socialPanel.swp_o_mdOutlines:hover a,html body .nc_socialPanel.swp_i_mdOutlines a:hover{color:#999}.nc_socialPanel.swp_d_mdOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_mdOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_mdOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #999}.nc_socialPanel.swp_d_dgOutlines a,body .nc_socialPanel.swp_o_dgOutlines:hover a,html body .nc_socialPanel.swp_i_dgOutlines a:hover{color:#444}.nc_socialPanel.swp_d_dgOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_dgOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_dgOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #444}.nc_socialPanel.swp_d_colorOutlines .googlePlus a,body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus a,html body .nc_socialPanel.swp_i_colorOutlines .googlePlus a:hover{color:#df4b37}.nc_socialPanel.swp_d_colorOutlines .swp_fb a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb a,html body .nc_socialPanel.swp_i_colorOutlines .swp_fb a:hover{color:#3a589e}.nc_socialPanel.swp_d_colorOutlines .nc_pinterest a,body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest a,html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest a:hover{color:#cd2029}.nc_socialPanel.swp_d_colorOutlines .linkedIn a,body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn a,html body .nc_socialPanel.swp_i_colorOutlines .linkedIn a:hover{color:#0d77b7}.nc_socialPanel.swp_d_colorOutlines .swp_tumblr a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr a,html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr a:hover{color:#39475d}.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon a,html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon a:hover{color:#ef5025}.nc_socialPanel.swp_d_colorOutlines .swp_yummly a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly a,html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly a:hover{color:#e26426}.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp a,html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp a:hover{color:#71c169}.nc_socialPanel.swp_d_colorOutlines .swp_pocket a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket a,html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket a:hover{color:#ef4056}.nc_socialPanel.swp_d_colorOutlines .swp_reddit a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit a,html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit a:hover{color:#f04b23}.nc_socialPanel.swp_d_colorOutlines .swp_email a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email a,html body .nc_socialPanel.swp_i_colorOutlines .swp_email a:hover{color:#6bcce9}.nc_socialPanel.swp_d_colorOutlines .swp_buffer a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer a,html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer a:hover{color:#323b43}.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news a,html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news a:hover{color:#f16522}.nc_socialPanel.swp_d_colorOutlines .swp_flipboard a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard a,html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard a:hover{color:#e02828}.nc_socialPanel.swp_d_colorOutlines .googlePlus,body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus,html body .nc_socialPanel.swp_i_colorOutlines .googlePlus:hover{background:0 0;border:1px solid #df4b37}.nc_socialPanel.swp_d_colorOutlines .twitter,body .nc_socialPanel.swp_o_colorOutlines:hover .twitter,html body .nc_socialPanel.swp_i_colorOutlines .twitter:hover{background:0 0;border:1px solid #429cd6}.nc_socialPanel.swp_d_colorOutlines .swp_fb,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb,html body .nc_socialPanel.swp_i_colorOutlines .swp_fb:hover{background:0 0;border:1px solid #3a589e}.nc_socialPanel.swp_d_colorOutlines .nc_pinterest,body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest,html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest:hover{background:0 0;border:1px solid #cd2029}.nc_socialPanel.swp_d_colorOutlines .linkedIn,body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn,html body .nc_socialPanel.swp_i_colorOutlines .linkedIn:hover{background:0 0;border:1px solid #0d77b7}.nc_socialPanel.swp_d_colorOutlines .swp_tumblr,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr,html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr:hover{background:0 0;border:1px solid #39475d}.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon,html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon:hover{background:0 0;border:1px solid #ef5025}.nc_socialPanel.swp_d_colorOutlines .swp_yummly,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly,html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly:hover{background:0 0;border:1px solid #e26426}.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp,html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp:hover{background:0 0;border:1px solid #71c169}.nc_socialPanel.swp_d_colorOutlines .swp_reddit,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit,html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit:hover{background:0 0;border:1px solid #f04b23}.nc_socialPanel.swp_d_colorOutlines .swp_email,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email,html body .nc_socialPanel.swp_i_colorOutlines .swp_email:hover{background:0 0;border:1px solid #6bcce9}.nc_socialPanel.swp_d_colorOutlines .swp_pocket,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket,html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket:hover{background:0 0;border:1px solid #ef4056}.nc_socialPanel.swp_d_colorOutlines .swp_buffer,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer,html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer:hover{background:0 0;border:1px solid #323b43}.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news,html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news:hover{background:0 0;border:1px solid #f16522}.nc_socialPanel.swp_d_colorOutlines .swp_flipboard,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard,html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard:hover{background:0 0;border:1px solid #bf2626}.nc_socialPanelSide{flex-direction:column;height:auto;overflow:visible;top:200px;-webkit-transition:all .2s linear;transition:all .2s linear;width:100px!important;z-index:9999999;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column}.nc_socialPanelSide.slide{position:fixed;left:-100px;-webkit-transition:all .2s linear;transition:all .2s linear}.nc_socialPanelSide.fade{display:none;position:fixed;left:5px;-webkit-transition:all .2s linear;transition:all .2s linear}.nc_socialPanelSide .nc_tweetContainer{background:#dd4b38;-webkit-border-radius:3px;border-radius:3px;clear:both;display:block;font-family:Lato,sans-serif;height:32px;margin:3px 0!important;overflow:hidden;padding:0;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top;width:90px}.nc_socialPanelSide .nc_tweetContainer .iconFiller{display:inline-block;height:40px;margin:0 6px;padding:0;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:middle;width:21px}.nc_socialPanelSide .nc_tweetContainer .swp_count{display:inline-block;font-size:14px;height:32px;line-height:35px;margin:0;overflow:hidden;padding:0;text-align:right;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top;width:0}.nc_socialPanelSide .nc_tweetContainer a{cursor:pointer;display:block;font-weight:500;height:36px;margin:0;padding:0;text-decoration:none;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top}.nc_socialPanelSide .nc_tweetContainer .sw,.nc_socialPanelSide .nc_tweetContainer .swp_share{float:left;line-height:34px}.nc_socialPanelSide.swp_default .nc_tweetContainer .sw{line-height:32px}.nc_socialPanelSide.swp_default .nc_tweetContainer .swp_share{line-height:30px}.nc_socialPanelSide .nc_tweetContainer .swp_share{font-size:13px}.nc_socialPanelSide .nc_tweetContainer:hover,.nc_socialPanelSide .nc_tweetContainer:hover .iconFiller,.nc_socialPanelSide .nc_tweetContainer:hover .swp_count{-webkit-transition:all .1s linear;transition:all .1s linear}.nc_socialPanelSide.swp_boxed{-ms-transform:scale(.9);-webkit-transform:scale(.9);transform:scale(.9)}.nc_socialPanelSide.swp_boxed .nc_tweetContainer{margin-bottom:5px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer,.nc_socialPanelSide.swp_boxed .nc_tweetContainer a{height:75px;position:relative;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer i.sw{font-size:27px;height:40px;margin:0;padding-top:10px;text-align:center;width:100%}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_share{height:35px;opacity:0;position:absolute;bottom:0;left:0;text-align:center;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count{height:35px;margin:0;padding:0;position:absolute;bottom:0;left:0;text-align:center;-webkit-transition:padding .1s linear;transition:padding .1s linear;width:100%}.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count.swp_hide{height:75px;opacity:1}.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.iconFiller{height:40px;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_count:not(.swp_hide){opacity:0}.nc_socialPanelSide.swp_boxed .totes{padding:0;width:75px!important}.nc_socialPanelSide .nc_tweetContainer:not(.totes){line-height:34px}.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes) .iconFiller{margin-left:2px;width:30px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count{padding:0 8px;width:48px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count.swp_hide{padding:0;width:100%}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_hide .iconFiller{display:block;float:none;margin:0 auto}.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes):hover{width:150px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly,.nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller{width:90px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .spaceManWilly,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover .iconFiller{width:100%}.nc_socialPanelSide .nc_tweetContainer.totes{background:rgba(0,0,0,0);border:0!important;font-weight:800;height:45px;margin:0;padding:0;text-align:center;width:90px}.nc_socialPanelSide .nc_tweetContainer.totes .swp_count{color:#444;display:block;font-family:Lato,sans-serif;height:28px;text-align:center;width:100%}.nc_socialPanelSide .nc_tweetContainer.totes .swp_label{color:#444;display:block;font-family:Lato,sans-serif;font-size:50%;position:relative;text-align:center;width:100%}.nc_wrapper{background:#fff;position:fixed;-webkit-transition:top .5s bottom .5s;transition:top .5s bottom .5s;width:100%;z-index:99999}.nc_wrapper.floatBottom{bottom:0;left:0}.nc_wrapper.floatTop{top:0;left:0}.nc_floater{margin:10px 0;position:relative;left:304px;width:740px}.nc_socialPanelSide.hideCounts a{text-align:center}.nc_socialPanelSide.hideCounts .iconFiller{float:none;text-align:left}.sw{display:inline-block;font-family:sw-icon-font!important;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;text-rendering:auto;-ms-transform:translate(0,0);-webkit-transform:translate(0,0);transform:translate(0,0)}.sw:before{display:block!important}.wp-editor-container .sw:before{font-size:18px;line-height:22px}.wp-editor-container .sw-social-warfare:before{color:#ee464f}.mce-container .sw-social-warfare{color:#ee464f;font-size:20px;margin-right:15px;vertical-align:middle}.sw-google-plus:before{content:"h"}.sw-pinterest:before{content:"b"}.sw-twitter:before{content:"s"}.sw-facebook:before{content:"j"}.sw-linkedin:before{content:"f"}.sw-tumblr:before{content:"r"}.sw-stumbleupon:before{content:"q"}.sw-reddit:before{content:"a"}.sw-email:before{content:"k"}.sw-yummly:before{content:"x"}.sw-whatsapp:before{content:"y"}.sw-pocket:before{content:"B"}.sw-buffer:before{content:"z"}.sw-hacker_news:before{content:"D"}.sw-flipboard:before{content:"C"}.sw-social-warfare:before{content:"p"}.sw-click-to-tweet:after,.sw-tweet-clear:after{content:".";height:0;clear:both;visibility:hidden;display:block}.swp_CTT{text-decoration:none!important}.sw-tweet-clear{zoom:1}.sw-click-to-tweet{display:block;margin:15px 0;padding:15px 30px;position:relative}.sw-click-to-tweet:after{line-height:0}.sw-click-to-tweet .sw-ctt-text{margin:0 0 10px;padding:0;position:relative;word-wrap:break-word}a .sw-click-to-tweet .sw-ctt-text{display:block;font-size:24px;font-weight:500;line-height:140%;margin:0;padding:0;position:relative;text-decoration:none;text-transform:none}.sw-click-to-tweet .sw-ctt-btn{display:block;float:right;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;line-height:100%;margin:10px 0 0;padding:3px 5px 3px 3px;position:relative;text-decoration:none;text-transform:uppercase}.sw-click-to-tweet i.sw-twitter{float:right;font-size:21px;margin-left:15px;margin-top:2px;text-transform:none}a.swp_CTT.style1 .sw-click-to-tweet{background-color:#fff;border:1px solid #ddd;-webkit-border-radius:4px;border-radius:4px}a.swp_CTT.style2 .sw-click-to-tweet{background-color:#fff;border:4px double #ddd;-webkit-border-radius:0;border-radius:0}a.style2 .sw-click-to-tweet .sw-ctt-text{color:#666;font-style:italic;text-decoration:none}a.swp_CTT.style3:hover .sw-click-to-tweet{border-left:10px solid #3c87b2;padding-right:20px;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style3 .sw-click-to-tweet{background-color:#429cd6;border:none;border-left:10px solid #429cd6;-webkit-border-radius:0;border-radius:0;padding-right:20px;-webkit-transition:all .25s linear;transition:all .25s linear}a.style3 .sw-click-to-tweet .sw-ctt-text{color:#fff;font-style:italic;text-decoration:none}a.swp_CTT.style4:hover .sw-click-to-tweet{border-left:10px solid #3c87b2;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style4 .sw-click-to-tweet{background-color:#333;border-left:10px solid #c33;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style5:hover .sw-click-to-tweet{background-color:#d34250;border-left:10px solid #30394f;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style5 .sw-click-to-tweet{background-color:#30394f;border-left:10px solid #d34250;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style6:hover .sw-click-to-tweet{background-color:#ced3dc;border-left:10px solid #d34250;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style6 .sw-click-to-tweet{background-color:#eee;border-left:10px solid #d34250;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.style6 .sw-click-to-tweet i.sw-twitter{color:#30394f}.swp_pop_thumb{-webkit-border-radius:3px;border-radius:3px;float:left;height:100px;margin:5px 25px 5px 0;width:100px}.swp_popular_post{clear:both}.swp_clearfix:after{clear:both;content:" ";display:block;height:0;visibility:hidden}.swp_popular_post a.swp_popularity{border:none;display:block;line-height:1.5;margin:20px 0}span.swp_pop_count{display:block;font-size:70%}.swp_widget_box{-webkit-border-radius:3px;border-radius:3px}div.sw-pinit{display:table!important;line-height:0;position:relative!important}.nc_socialPanel.mobile .iconFiller~.swp_count,.sw-content-locator,div.nc_socialPanel .nc_tweetContainer.swp_whatsapp:not(.mobile){display:none}div.sw-pinit a.sw-pinit-button,div.sw-pinit a.sw-pinit-button:visited{background:#cd2029;border:1px solid #aa1b29;-webkit-border-radius:4px;border-radius:4px;color:#fff;font-size:20px;height:50px;line-height:45px;opacity:0;padding:0 30px;position:absolute;text-decoration:none;-webkit-transition:opacity .5s;transition:opacity .5s;z-index:200}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .swp_hide span.swp_share,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_share:not(.swp_hide),div.sw-pinit:focus a.sw-pinit-button,div.sw-pinit:hover a.sw-pinit-button{opacity:1}div.sw-pinit a.sw-pinit-button::before{color:#fff;content:"b";float:left;font-family:sw-icon-font;font-size:24px;font-weight:400;line-height:50px;margin-left:-5px;margin-right:10px}div.sw-pinit a.sw-pinit-button:hover::before{content:"F"}div.sw-pinit a.sw-pinit-button::focus,div.sw-pinit a.sw-pinit-button::hover{background:#aa1b29;color:#fff;text-decoration:none}div.sw-pinit .sw-pinit-left{left:30px}div.sw-pinit .sw-pinit-center{margin-left:-60px;left:50%}div.sw-pinit .sw-pinit-right{right:30px}div.sw-pinit .sw-pinit-top{top:30px}div.sw-pinit .sw-pinit-middle{margin-top:-25px;top:50%}div.sw-pinit .sw-pinit-bottom{bottom:30px}.mobile .nc_tweetContainer:nth-last-child(2),.nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1),.nc_tweetContainer.totes:nth-last-child(1){margin-right:0}.nc_socialPanel.swp_d_darkGray a,.nc_socialPanel.swp_d_fullColor a,.nc_socialPanel.swp_d_lightGray a,.nc_socialPanel.swp_d_mediumGray a,body .nc_socialPanel.swp_o_darkGray:hover a,body .nc_socialPanel.swp_o_fullColor:hover a,body .nc_socialPanel.swp_o_lightGray:hover a,body .nc_socialPanel.swp_o_mediumGray:hover a,html body .nc_socialPanel.swp_i_darkGray a:hover,html body .nc_socialPanel.swp_i_fullColor .nc_tweetContainer:hover a,html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover a,html body .nc_socialPanel.swp_i_mediumGray a:hover{color:#fff}.nc_socialPanel.swp_d_colorOutlines .twitter a,.wp-editor-container .sw-twitter:before,a.style1 .sw-click-to-tweet i.sw-twitter,a.style2 .sw-click-to-tweet i.sw-twitter,body .nc_socialPanel.swp_o_colorOutlines:hover .twitter a,html body .nc_socialPanel.swp_i_colorOutlines .twitter a:hover{color:#429cd6}a.style1 .sw-click-to-tweet .sw-ctt-btn,a.style1 .sw-click-to-tweet .sw-ctt-text{color:#999;text-decoration:none}a.style1:hover .sw-click-to-tweet .sw-ctt-btn,a.style1:hover .sw-click-to-tweet .sw-ctt-text,a.style2 .sw-click-to-tweet .sw-ctt-btn,a.style2:hover .sw-click-to-tweet .sw-ctt-btn,a.style2:hover .sw-click-to-tweet .sw-ctt-text{color:#666;text-decoration:none}a.style3 .sw-click-to-tweet .sw-ctt-btn,a.style3 .sw-click-to-tweet i.sw-twitter,a.style3:hover .sw-click-to-tweet .sw-ctt-btn,a.style3:hover .sw-click-to-tweet .sw-ctt-text,a.style4 .sw-click-to-tweet .sw-ctt-btn,a.style4 .sw-click-to-tweet .sw-ctt-text,a.style4:hover .sw-click-to-tweet .sw-ctt-btn,a.style4:hover .sw-click-to-tweet .sw-ctt-text,a.style5 .sw-click-to-tweet .sw-ctt-btn,a.style5 .sw-click-to-tweet .sw-ctt-text,a.style5:hover .sw-click-to-tweet .sw-ctt-btn,a.style5:hover .sw-click-to-tweet .sw-ctt-text{color:#fff;text-decoration:none}a.style4 .sw-click-to-tweet i.sw-twitter,a.style5 .sw-click-to-tweet i.sw-twitter{color:#fff}a.style6 .sw-click-to-tweet .sw-ctt-btn,a.style6 .sw-click-to-tweet .sw-ctt-text{color:#30394f;text-decoration:none}a.style6:hover .sw-click-to-tweet .sw-ctt-btn,a.style6:hover .sw-click-to-tweet .sw-ctt-text,a.style6:hover .sw-click-to-tweet i.sw-twitter{color:#2a2d34;text-decoration:none}.scale-70{-ms-transform:scale(.7);-webkit-transform:scale(.7);transform:scale(.7)}.nc_socialPanel:not(.nc_floater).scale-70.scale-fullWidth{width:142.8571428571429%!important}.scale-80{-ms-transform:scale(.8);-webkit-transform:scale(.8);transform:scale(.8)}.nc_socialPanel:not(.nc_floater).scale-80.scale-fullWidth{width:125%!important}.scale-90{-ms-transform:scale(.9);-webkit-transform:scale(.9);transform:scale(.9)}.nc_socialPanel:not(.nc_floater).scale-90.scale-fullWidth{width:111.111111111111%!important}.scale-110{-ms-transform:scale(1.1);-webkit-transform:scale(1.1);transform:scale(1.1)}.nc_socialPanel:not(.nc_floater).scale-110.scale-fullWidth{width:90.90909090909091%!important}.scale-120{-ms-transform:scale(1.2);-webkit-transform:scale(1.2);transform:scale(1.2)}.nc_socialPanel:not(.nc_floater).scale-120.scale-fullWidth{width:83.33333333333333%!important}.scale-130{-ms-transform:scale(1.3);-webkit-transform:scale(1.3);transform:scale(1.3)}.nc_socialPanel:not(.nc_floater).scale-130.scale-fullWidth{width:76.92307692307692%!important}.scale-140{-ms-transform:scale(1.4);-webkit-transform:scale(1.4);transform:scale(1.4)}.nc_socialPanel:not(.nc_floater).scale-140.scale-fullWidth{width:71.42857142857143%!important}.nc_floater.scale-center,.nc_floater.scale-right,.scale-fullWidth,.scale-left{-ms-transform-origin:left;-webkit-transform-origin:left;transform-origin:left}.scale-right{-ms-transform-origin:right;-webkit-transform-origin:right;transform-origin:right}.scale-center{-ms-transform-origin:center;-webkit-transform-origin:center;transform-origin:center}div.nc_socialPanel .nc_tweetContainer.swp_emphasize{-webkit-box-flex:2;-moz-box-flex:2;-webkit-flex:2;-ms-flex:2;flex:2}.sw-pinit.aligncenter{margin:0 auto}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){div.sw-pinit{display:inline-block!important;max-width:100%}}.swp_hidden_pin_image{height:0;opacity:0;position:absolute;top:0;width:0}
|
functions/admin/options-array.php
CHANGED
@@ -363,6 +363,22 @@ function swp_options_advanced($swp_options) {
|
|
363 |
'size' => 'two-thirds',
|
364 |
'content' => __( 'Full Content?' , 'social-warfare' ),
|
365 |
'default' => false,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
'premium' => false
|
367 |
)
|
368 |
);
|
363 |
'size' => 'two-thirds',
|
364 |
'content' => __( 'Full Content?' , 'social-warfare' ),
|
365 |
'default' => false,
|
366 |
+
'premium' => false,
|
367 |
+
'divider' => true
|
368 |
+
),
|
369 |
+
'force_new_shares_title' => array(
|
370 |
+
'type' => 'title',
|
371 |
+
'content' => __( 'Force New Shares' , 'social-warfare' )
|
372 |
+
),
|
373 |
+
'force_new_shares_description' => array(
|
374 |
+
'type' => 'paragraph',
|
375 |
+
'content' => __( 'If the API share count request returns a lower number than previously recorded, we ignore the new number and retain the original higher number from the previous request. Activating this will force the new share number to be accepted even if it is a lower number than previously recorded.' , 'social-warfare' )
|
376 |
+
),
|
377 |
+
'force_new_shares' => array(
|
378 |
+
'type' => 'checkbox',
|
379 |
+
'size' => 'two-thirds',
|
380 |
+
'content' => __( 'Force New Shares?' , 'social-warfare' ),
|
381 |
+
'default' => false,
|
382 |
'premium' => false
|
383 |
)
|
384 |
);
|
functions/admin/options-fetch.php
CHANGED
@@ -83,11 +83,15 @@ function swp_get_user_options( $admin = false ) {
|
|
83 |
'pinit_location_vertical' => 'top',
|
84 |
'pinit_min_width' => '200',
|
85 |
'pinit_min_height' => '200',
|
|
|
|
|
|
|
86 |
'advanced_pinterest_image' => false,
|
87 |
'advanced_pinterest_image_location' => 'hidden',
|
88 |
'advanced_pinterest_fallback' => 'all',
|
89 |
'emphasize_icons' => 0,
|
90 |
'floatLeftMobile' => 'bottom',
|
|
|
91 |
'newOrderOfIcons' => array(
|
92 |
'active' => array(
|
93 |
'twitter' => 'Twitter',
|
83 |
'pinit_location_vertical' => 'top',
|
84 |
'pinit_min_width' => '200',
|
85 |
'pinit_min_height' => '200',
|
86 |
+
'pinit_image_source' => 'image',
|
87 |
+
'pinit_image_description' => 'alt_text',
|
88 |
+
'utm_on_pins' => false,
|
89 |
'advanced_pinterest_image' => false,
|
90 |
'advanced_pinterest_image_location' => 'hidden',
|
91 |
'advanced_pinterest_fallback' => 'all',
|
92 |
'emphasize_icons' => 0,
|
93 |
'floatLeftMobile' => 'bottom',
|
94 |
+
'force_new_shares' => false,
|
95 |
'newOrderOfIcons' => array(
|
96 |
'active' => array(
|
97 |
'twitter' => 'Twitter',
|
functions/frontend-output/buttons-standard.php
CHANGED
@@ -295,16 +295,16 @@ function social_warfare_buttons( $array = array() ) {
|
|
295 |
return $assets;
|
296 |
elseif ( $array['content'] === false ) :
|
297 |
echo $assets;
|
298 |
-
elseif ( $array['where'] == 'below' ) :
|
299 |
$content = $array['content'] . '' . $assets;
|
300 |
return $content;
|
301 |
-
elseif ( $array['where'] == 'above' ) :
|
302 |
$content = $assets . '' . $array['content'];
|
303 |
return $content;
|
304 |
-
elseif ( $array['where'] == 'both' ) :
|
305 |
$content = $assets . '' . $array['content'] . '' . $assets;
|
306 |
return $content;
|
307 |
-
elseif ( $array['where'] == 'none' ) :
|
308 |
return $array['content'];
|
309 |
endif;
|
310 |
endif;
|
295 |
return $assets;
|
296 |
elseif ( $array['content'] === false ) :
|
297 |
echo $assets;
|
298 |
+
elseif ( isset( $array['where'] ) && $array['where'] == 'below' ) :
|
299 |
$content = $array['content'] . '' . $assets;
|
300 |
return $content;
|
301 |
+
elseif ( isset( $array['where'] ) && $array['where'] == 'above' ) :
|
302 |
$content = $assets . '' . $array['content'];
|
303 |
return $content;
|
304 |
+
elseif ( isset( $array['where'] ) && $array['where'] == 'both' ) :
|
305 |
$content = $assets . '' . $array['content'] . '' . $assets;
|
306 |
return $content;
|
307 |
+
elseif ( isset( $array['where'] ) && $array['where'] == 'none' ) :
|
308 |
return $array['content'];
|
309 |
endif;
|
310 |
endif;
|
functions/frontend-output/header-meta-tags.php
CHANGED
@@ -37,7 +37,7 @@ function swp_add_header_meta() {
|
|
37 |
|
38 |
/**
|
39 |
* Create and return the values to be used in the header meta tags
|
40 |
-
*
|
41 |
* @since 2.1.4
|
42 |
* @access public
|
43 |
* @var array $info An array of information
|
@@ -62,9 +62,9 @@ function swp_add_header_meta() {
|
|
62 |
$info = apply_filters( 'swp_header_html' , $info );
|
63 |
|
64 |
if ( $info['html_output'] ) :
|
65 |
-
echo PHP_EOL . '<!-- Social Warfare v' . SWP_VERSION . '
|
66 |
echo $info['html_output'];
|
67 |
-
echo PHP_EOL . '<!-- Social Warfare v' . SWP_VERSION . '
|
68 |
endif;
|
69 |
}
|
70 |
|
37 |
|
38 |
/**
|
39 |
* Create and return the values to be used in the header meta tags
|
40 |
+
*
|
41 |
* @since 2.1.4
|
42 |
* @access public
|
43 |
* @var array $info An array of information
|
62 |
$info = apply_filters( 'swp_header_html' , $info );
|
63 |
|
64 |
if ( $info['html_output'] ) :
|
65 |
+
echo PHP_EOL . '<!-- Social Warfare v' . SWP_VERSION . ' https://warfareplugins.com -->';
|
66 |
echo $info['html_output'];
|
67 |
+
echo PHP_EOL . '<!-- Social Warfare v' . SWP_VERSION . ' https://warfareplugins.com -->' . PHP_EOL . PHP_EOL;
|
68 |
endif;
|
69 |
}
|
70 |
|
functions/utilities/share-cache.php
CHANGED
@@ -211,6 +211,8 @@ function swp_cache_delete_timestamp() {
|
|
211 |
}
|
212 |
add_action( 'save_post', 'swp_cache_delete_timestamp' );
|
213 |
add_action( 'save_post', 'swp_cache_store_autoloads' );
|
|
|
|
|
214 |
|
215 |
/**
|
216 |
* A function to store all the fields for autoloading
|
@@ -304,7 +306,7 @@ function swp_facebook_shares_update() {
|
|
304 |
|
305 |
$previous_activity = get_post_meta( $post_id, '_facebook_shares', true );
|
306 |
|
307 |
-
if ( $activity > $previous_activity ) :
|
308 |
delete_post_meta( $post_id, '_facebook_shares' );
|
309 |
update_post_meta( $post_id, '_facebook_shares', $activity );
|
310 |
endif;
|
211 |
}
|
212 |
add_action( 'save_post', 'swp_cache_delete_timestamp' );
|
213 |
add_action( 'save_post', 'swp_cache_store_autoloads' );
|
214 |
+
add_action( 'publish_post', 'swp_cache_delete_timestamp' );
|
215 |
+
add_action( 'publish_post', 'swp_cache_store_autoloads' );
|
216 |
|
217 |
/**
|
218 |
* A function to store all the fields for autoloading
|
306 |
|
307 |
$previous_activity = get_post_meta( $post_id, '_facebook_shares', true );
|
308 |
|
309 |
+
if ( $activity > $previous_activity || (isset($options['force_new_shares']) && true === $options['force_new_shares']) ) :
|
310 |
delete_post_meta( $post_id, '_facebook_shares' );
|
311 |
update_post_meta( $post_id, '_facebook_shares', $activity );
|
312 |
endif;
|
functions/utilities/share-count-function.php
CHANGED
@@ -104,9 +104,9 @@ function get_social_warfare_shares( $postID ) {
|
|
104 |
$shares[ $network ] = $shares[ $network ] + $recovered_shares[ $network ];
|
105 |
endif;
|
106 |
endif;
|
107 |
-
if ( $shares[ $network ] <= $old_shares[ $network ] ) :
|
108 |
$shares[ $network ] = $old_shares[ $network ];
|
109 |
-
|
110 |
delete_post_meta( $postID,'_' . $network . '_shares' );
|
111 |
update_post_meta( $postID,'_' . $network . '_shares',$shares[ $network ] );
|
112 |
endif;
|
104 |
$shares[ $network ] = $shares[ $network ] + $recovered_shares[ $network ];
|
105 |
endif;
|
106 |
endif;
|
107 |
+
if ( $shares[ $network ] <= $old_shares[ $network ] && (!isset($options['force_new_shares']) || false === $options['force_new_shares']) ) :
|
108 |
$shares[ $network ] = $old_shares[ $network ];
|
109 |
+
elseif($shares[$network] > 0) :
|
110 |
delete_post_meta( $postID,'_' . $network . '_shares' );
|
111 |
update_post_meta( $postID,'_' . $network . '_shares',$shares[ $network ] );
|
112 |
endif;
|
functions/utilities/url_processing.php
CHANGED
@@ -60,6 +60,9 @@ function swp_bitly_shortener( $array ) {
|
|
60 |
$network = $array['network'];
|
61 |
$postID = $array['postID'];
|
62 |
|
|
|
|
|
|
|
63 |
// Fetch the User's Options
|
64 |
$options = $swp_user_options;
|
65 |
|
@@ -75,18 +78,20 @@ function swp_bitly_shortener( $array ) {
|
|
75 |
// If Google Analytics is Activated....
|
76 |
if ( $options['googleAnalytics'] == true ) :
|
77 |
|
|
|
|
|
|
|
78 |
// If the Cache is still fresh or a previous API request failed....
|
79 |
-
if ( swp_is_cache_fresh( $postID ) == true || (isset( $_GLOBALS['bitly_status'] ) && $_GLOBALS['bitly_status'] == 'failure') ) :
|
80 |
|
81 |
-
|
82 |
-
|
83 |
-
if ( $existingURL && swp_is_cache_fresh( $postID ) == true ) :
|
84 |
$array['url'] = $existingURL;
|
85 |
return $array;
|
86 |
|
87 |
-
|
88 |
else :
|
89 |
-
|
90 |
// ....Return the normal URL
|
91 |
return $array;
|
92 |
|
@@ -98,6 +103,7 @@ function swp_bitly_shortener( $array ) {
|
|
98 |
// If the API provides a shortened URL...
|
99 |
$shortURL = swp_make_bitly_url( urldecode( $url ) , $network , $access_token );
|
100 |
if ( $shortURL ) :
|
|
|
101 |
|
102 |
// Store the link in the cache and return it to the buttons
|
103 |
delete_post_meta( $postID,'bitly_link_' . $network );
|
@@ -107,6 +113,7 @@ function swp_bitly_shortener( $array ) {
|
|
107 |
|
108 |
// If the API does not provide a shortened URL....
|
109 |
else :
|
|
|
110 |
|
111 |
// Set a variable we'll check to avoid multiple calls to bitly upon the first failure
|
112 |
$_GLOBALS['sw']['bitly_status'] = 'failure';
|
@@ -128,6 +135,7 @@ function swp_bitly_shortener( $array ) {
|
|
128 |
// If we have a shortened URL in the cache....
|
129 |
$existingURL = get_post_meta( $postID,'bitly_link',true );
|
130 |
if ( $existingURL ) :
|
|
|
131 |
|
132 |
// Save the link in a constant for use in other parts of the loops
|
133 |
$_GLOBALS['sw']['links'][ $postID ] = $existingURL;
|
@@ -138,6 +146,7 @@ function swp_bitly_shortener( $array ) {
|
|
138 |
|
139 |
// If we don't have a shortlink in the cache....
|
140 |
else :
|
|
|
141 |
|
142 |
// Return the normal URL
|
143 |
return $array;
|
@@ -149,11 +158,12 @@ function swp_bitly_shortener( $array ) {
|
|
149 |
|
150 |
// If we've already generated this link....
|
151 |
if ( isset( $_GLOBALS['sw']['links'][ $postID ] ) ) :
|
|
|
152 |
|
153 |
$array['url'] = $_GLOBALS['sw']['links'][ $postID ];
|
154 |
return $array;
|
155 |
|
156 |
-
|
157 |
else :
|
158 |
|
159 |
// Use the bitly function to construct a shortened link
|
@@ -169,6 +179,7 @@ function swp_bitly_shortener( $array ) {
|
|
169 |
delete_post_meta( $postID,'bitly_link_' . $network );
|
170 |
delete_post_meta( $postID,'bitly_link' );
|
171 |
update_post_meta( $postID,'bitly_link',$shortURL );
|
|
|
172 |
|
173 |
// Return the short URL
|
174 |
$array['url'] = $shortURL;
|
@@ -176,6 +187,7 @@ function swp_bitly_shortener( $array ) {
|
|
176 |
|
177 |
// If didn't get a shortened URL from their API....
|
178 |
else :
|
|
|
179 |
|
180 |
// Set a variable we'll check to avoid multiple calls to bitly upon the first failure
|
181 |
$_GLOBALS['sw']['bitly_status'] = 'failure';
|
@@ -197,6 +209,7 @@ function swp_bitly_shortener( $array ) {
|
|
197 |
|
198 |
// If Bitly is not activated or we don't have the credentials provided....
|
199 |
else :
|
|
|
200 |
|
201 |
// Return the normal URL
|
202 |
return $array;
|
@@ -206,6 +219,7 @@ function swp_bitly_shortener( $array ) {
|
|
206 |
|
207 |
// If link shortening is not activated....
|
208 |
else :
|
|
|
209 |
|
210 |
// Return the normal URL
|
211 |
return $array;
|
@@ -277,6 +291,8 @@ function swp_make_bitly_url( $url, $network, $access_token ) {
|
|
277 |
|
278 |
function swp_process_url( $url, $network, $postID ) {
|
279 |
|
|
|
|
|
280 |
// $bitly_api = 'https://api-ssl.bitly.com/v3/link/lookup?url='.urlencode($url).'&login='.$login.'&apiKey='.$appkey;
|
281 |
// $data = swp_file_get_contents_curl($bitly_api);
|
282 |
// $data = json_decode($data);
|
@@ -296,10 +312,12 @@ function swp_process_url( $url, $network, $postID ) {
|
|
296 |
$array['postID'] = $postID;
|
297 |
|
298 |
// Run the anaylitcs hook filters
|
299 |
-
$
|
|
|
|
|
300 |
|
301 |
-
// Run the link shortening hook filters, but not on Pinterest
|
302 |
-
if($network !== 'pinterest'):
|
303 |
$array = apply_filters( 'swp_link_shortening' , $array );
|
304 |
endif;
|
305 |
return $array['url'];
|
60 |
$network = $array['network'];
|
61 |
$postID = $array['postID'];
|
62 |
|
63 |
+
|
64 |
+
if( true === _swp_is_debug('bitly') ){ echo swp_is_cache_fresh( $postID ); }
|
65 |
+
|
66 |
// Fetch the User's Options
|
67 |
$options = $swp_user_options;
|
68 |
|
78 |
// If Google Analytics is Activated....
|
79 |
if ( $options['googleAnalytics'] == true ) :
|
80 |
|
81 |
+
// If the link has already been shortened....
|
82 |
+
$existingURL = get_post_meta( $postID,'bitly_link_' . $network,true );
|
83 |
+
|
84 |
// If the Cache is still fresh or a previous API request failed....
|
85 |
+
if ( ( swp_is_cache_fresh( $postID ) == true && $existingURL) || (isset( $_GLOBALS['bitly_status'] ) && $_GLOBALS['bitly_status'] == 'failure') ) :
|
86 |
|
87 |
+
if ( $existingURL ) :
|
88 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
|
|
89 |
$array['url'] = $existingURL;
|
90 |
return $array;
|
91 |
|
92 |
+
// If the link has NOT already been shortened
|
93 |
else :
|
94 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
95 |
// ....Return the normal URL
|
96 |
return $array;
|
97 |
|
103 |
// If the API provides a shortened URL...
|
104 |
$shortURL = swp_make_bitly_url( urldecode( $url ) , $network , $access_token );
|
105 |
if ( $shortURL ) :
|
106 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
107 |
|
108 |
// Store the link in the cache and return it to the buttons
|
109 |
delete_post_meta( $postID,'bitly_link_' . $network );
|
113 |
|
114 |
// If the API does not provide a shortened URL....
|
115 |
else :
|
116 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
117 |
|
118 |
// Set a variable we'll check to avoid multiple calls to bitly upon the first failure
|
119 |
$_GLOBALS['sw']['bitly_status'] = 'failure';
|
135 |
// If we have a shortened URL in the cache....
|
136 |
$existingURL = get_post_meta( $postID,'bitly_link',true );
|
137 |
if ( $existingURL ) :
|
138 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
139 |
|
140 |
// Save the link in a constant for use in other parts of the loops
|
141 |
$_GLOBALS['sw']['links'][ $postID ] = $existingURL;
|
146 |
|
147 |
// If we don't have a shortlink in the cache....
|
148 |
else :
|
149 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
150 |
|
151 |
// Return the normal URL
|
152 |
return $array;
|
158 |
|
159 |
// If we've already generated this link....
|
160 |
if ( isset( $_GLOBALS['sw']['links'][ $postID ] ) ) :
|
161 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
162 |
|
163 |
$array['url'] = $_GLOBALS['sw']['links'][ $postID ];
|
164 |
return $array;
|
165 |
|
166 |
+
// If we've don't already have a generated link....
|
167 |
else :
|
168 |
|
169 |
// Use the bitly function to construct a shortened link
|
179 |
delete_post_meta( $postID,'bitly_link_' . $network );
|
180 |
delete_post_meta( $postID,'bitly_link' );
|
181 |
update_post_meta( $postID,'bitly_link',$shortURL );
|
182 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
183 |
|
184 |
// Return the short URL
|
185 |
$array['url'] = $shortURL;
|
187 |
|
188 |
// If didn't get a shortened URL from their API....
|
189 |
else :
|
190 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
191 |
|
192 |
// Set a variable we'll check to avoid multiple calls to bitly upon the first failure
|
193 |
$_GLOBALS['sw']['bitly_status'] = 'failure';
|
209 |
|
210 |
// If Bitly is not activated or we don't have the credentials provided....
|
211 |
else :
|
212 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
213 |
|
214 |
// Return the normal URL
|
215 |
return $array;
|
219 |
|
220 |
// If link shortening is not activated....
|
221 |
else :
|
222 |
+
if( true === _swp_is_debug('bitly') ){ echo 'Bitly: '. __LINE__; }
|
223 |
|
224 |
// Return the normal URL
|
225 |
return $array;
|
291 |
|
292 |
function swp_process_url( $url, $network, $postID ) {
|
293 |
|
294 |
+
global $swp_user_options;
|
295 |
+
|
296 |
// $bitly_api = 'https://api-ssl.bitly.com/v3/link/lookup?url='.urlencode($url).'&login='.$login.'&apiKey='.$appkey;
|
297 |
// $data = swp_file_get_contents_curl($bitly_api);
|
298 |
// $data = json_decode($data);
|
312 |
$array['postID'] = $postID;
|
313 |
|
314 |
// Run the anaylitcs hook filters
|
315 |
+
if( !isset( $swp_user_options['utm_on_pins']) || (false === $swp_user_options['utm_on_pins'] && $network !== 'pinterest') ):
|
316 |
+
$array = apply_filters( 'swp_analytics' , $array );
|
317 |
+
endif;
|
318 |
|
319 |
+
// Run the link shortening hook filters, but not on Pinterest
|
320 |
+
if( $network !== 'pinterest' ):
|
321 |
$array = apply_filters( 'swp_link_shortening' , $array );
|
322 |
endif;
|
323 |
return $array['url'];
|
js/admin-options-page.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(a,b,c){"use strict";function d(b){var c,d;document.body.createTextRange?(c=document.body.createTextRange(),c.moveToElementText(b),c.select()):a.getSelection&&(d=a.getSelection(),c=document.createRange(),c.selectNodeContents(b),d.removeAllRanges(),d.addRange(c))}function e(){var a={};return b("form.sw-admin-settings-form input, form.sw-admin-settings-form select").each(function(){var c,d=b(this),e=d.attr("name");c="checkbox"===d.attr("type")?d.prop("checked"):d.val(),a[e]=c}),a.newOrderOfIcons={},b(".sw-active i").each(function(){var c=b(this).data("network");a.newOrderOfIcons[c]=c}),a}function f(){b("div[dep]").each(function(){var a,c=b(this).attr("dep"),d=b.parseJSON(b(this).attr("dep_val"));a="checkbox"==b('[name="'+c+'"]').attr("type")?b('[name="'+c+'"]').prop("checked"):b('[name="'+c+'"]').val(),b.inArray(a,d)!==-1&&b('[name="'+c+'"]').parent(".sw-grid").is(":visible")?b(this).show():b(this).hide()}),0!=h("floatStyleSource")||"customColor"!=g("sideDColorSet")&&"ccOutlines"!=g("sideDColorSet")&&"customColor"!=g("sideIColorSet")&&"ccOutlines"!=g("sideIColorSet")&&"customColor"!=g("sideOColorSet")&&"ccOutlines"!=g("sideOColorSet")?b(".sideCustomColor_wrapper").slideUp():b(".sideCustomColor_wrapper").slideDown()}function g(a){return b('select[name="'+a+'"]').val()}function h(a){return b('[name="'+a+'"]').prop("checked")}function i(){var a=b(".sw-top-menu").offset(),c=b(".sw-top-menu").width();b(".sw-top-menu").css({position:"fixed",left:a.left,top:a.top,width:c}),b(".sw-admin-wrapper").css("padding-top","75px")}function j(){b(".sw-tab-selector").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,b("html, body").animate({scrollTop:0},0);var c=b(this).attr("data-link");b(".sw-admin-tab").hide(),b("#"+c).show(),b(".sw-header-menu li").removeClass("sw-active-tab"),b(this).parents("li").addClass("sw-active-tab"),"swp_styles"===c&&socialWarfarePlugin.activateHoverStates(),f()})}function k(){b(".sw-checkbox-toggle").on("click",function(){var a=b(this).attr("status"),c=b(this).attr("field");"on"===a?(b(this).attr("status","off"),b(c).prop("checked",!1)):(b(this).attr("status","on"),b(c).prop("checked",!0)),m(),f()})}function l(){b("form.sw-admin-settings-form input, form.sw-admin-settings-form select").on("change",function(){f(),socialWarfarePlugin.newOptions=e(),m()}),socialWarfarePlugin.defaultOptions=e()}function m(){socialWarfarePlugin.newOptions=e(),JSON.stringify(socialWarfarePlugin.newOptions)!==JSON.stringify(socialWarfarePlugin.defaultOptions)?b(".sw-save-settings").removeClass("sw-navy-button").addClass("sw-red-button"):b(".sw-save-settings").removeClass("sw-red-button").addClass("sw-navy-button")}function n(){b(".sw-save-settings").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,o();var c=e();console.log(c);var d={action:"swp_store_settings",security:swpAdminOptionsData.optionsNonce,settings:c};b.post(ajaxurl,d,function(a){p(),console.log(b.parseJSON(a)),socialWarfarePlugin.defaultOptions=e(),m()})})}function o(){b("body").append('<div class="sw-loading-bg"><div class="sw-loading-message">Saving Changes</div></div>')}function p(){b(".sw-loading-message").html("Success!").removeClass("sw-loading-message").addClass("sw-loading-complete"),b(".sw-loading-bg").delay(1e3).fadeOut(1e3),setTimeout(function(){b(".sw-loading-bg").remove()},2e3)}function q(){var a=(b('select[name="visualTheme"]').val(),b('select[name="dColorSet"]').val()),c=b('select[name="iColorSet"]').val(),d=b('select[name="oColorSet"]').val();b("style.swp_customColorStuff").remove();var e=b('input[name="customColor"]').val(),f="";"customColor"!=a&&"customColor"!=c&&"customColor"!=d||(f=".nc_socialPanel.swp_d_customColor a, html body .nc_socialPanel.swp_i_customColor .nc_tweetContainer:hover a, body .nc_socialPanel.swp_o_customColor:hover a {color:white} .nc_socialPanel.swp_d_customColor .nc_tweetContainer, html body .nc_socialPanel.swp_i_customColor .nc_tweetContainer:hover, body .nc_socialPanel.swp_o_customColor:hover .nc_tweetContainer {background-color:"+e+";border:1px solid "+e+";}"),"ccOutlines"!=a&&"ccOutlines"!=c&&"ccOutlines"!=d||(f=f+" .nc_socialPanel.swp_d_ccOutlines a, html body .nc_socialPanel.swp_i_ccOutlines .nc_tweetContainer:hover a, body .nc_socialPanel.swp_o_ccOutlines:hover a { color:"+e+"; } .nc_socialPanel.swp_d_ccOutlines .nc_tweetContainer, html body .nc_socialPanel.swp_i_ccOutlines .nc_tweetContainer:hover, body .nc_socialPanel.swp_o_ccOutlines:hover .nc_tweetContainer { background:transparent; border:1px solid "+e+"; }"),b("head").append('<style type="text/css" class="swp_customColorStuff">'+f+"</style>")}function r(){var a=b('select[name="visualTheme"]').val(),c=b('select[name="dColorSet"]').val(),d=b('select[name="iColorSet"]').val(),e=b('select[name="oColorSet"]').val(),f="swp_"+a+" swp_d_"+c+" swp_i_"+d+" swp_o_"+e;"undefined"==typeof socialWarfarePlugin.lastClass&&(console.log("boom"),socialWarfarePlugin.lastClass="swp_flatFresh swp_d_fullColor swp_i_fullColor swp_o_fullColor");var f="swp_"+a+" swp_d_"+c+" swp_i_"+d+" swp_o_"+e;b(".nc_socialPanel").removeClass(socialWarfarePlugin.lastClass).addClass(f),socialWarfarePlugin.lastClass=f;"customColor"==c||"ccOutlines"==c||"customColor"==d||"ccOutlines"==d||"customColor"==e||"ccOutlines"==e?(b(".customColor_wrapper").slideDown(),q()):b(".customColor_wrapper").slideUp()}function s(){var a={flatFresh:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},leaf:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},pill:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},threeDee:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray"},connected:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},shift:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"}};if(0!==b('select[name="visualTheme"]').length){var c=b('select[name="visualTheme"]').val(),d=b('select[name="dColorSet"]').val(),e=b('select[name="iColorSet"]').val(),f=b('select[name="oColorSet"]').val();b('select[name="dColorSet"] option, select[name="iColorSet"] option, select[name="oColorSet"] option').remove(),b.each(a[c],function(a,c){a===d?b('select[name="dColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="dColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===e?b('select[name="iColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="iColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===f?b('select[name="oColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="oColorSet"]').append('<option value="'+a+'">'+c+"</option>"),"customColor"==d||"ccOutlines"==d||"customColor"==e||"ccOutlines"==e||"customColor"==f||"ccOutlines"==f?(b(".customColor_wrapper").slideDown(),q()):b(".customColor_wrapper").slideUp()}),b('select[name="dColorSet"], select[name="iColorSet"], select[name="oColorSet"]').on("change",r),b('select[name="visualTheme"]').on("change",function(){var c=b('select[name="visualTheme"]').val(),d=b('select[name="dColorSet"]').val(),e=b('select[name="iColorSet"]').val(),f=b('select[name="oColorSet"]').val(),g=0,h=a[c],i=h.hasOwnProperty(d),j=h.hasOwnProperty(e),k=h.hasOwnProperty(f);b('select[name="dColorSet"] option, select[name="iColorSet"] option, select[name="oColorSet"] option').remove(),b.each(a[c],function(a,c){a===d||0==i&&0==g?b('select[name="dColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="dColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===e||0==j&&0==g?b('select[name="iColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="iColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===f||0==k&&0==g?b('select[name="oColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="oColorSet"]').append('<option value="'+a+'">'+c+"</option>"),++g}),"undefined"==typeof socialWarfarePlugin.lastClass&&(console.log("boom"),socialWarfarePlugin.lastClass="swp_flatFresh swp_d_fullColor swp_i_fullColor swp_o_fullColor");var l="swp_"+c+" swp_d_"+d+" swp_i_"+e+" swp_o_"+f;b(".nc_socialPanel").removeClass(socialWarfarePlugin.lastClass).addClass(l),socialWarfarePlugin.lastClass=l})}}function t(){b('select[name="buttonSize"],select[name="buttonFloat"]').on("change",function(){b(".nc_socialPanel").css({width:"100%"});var a,c=b(".nc_socialPanel").width(),d=b('select[name="buttonSize"]').val(),e=b('select[name="buttonFloat"]').val();"fullWidth"==e&&1!=d||d>=1?(a=c/d,b(".nc_socialPanel").css("cssText","width:"+a+"px!important;"),b(".nc_socialPanel").css({transform:"scale("+d+")","transform-origin":"left"})):"fullWidth"!=e&&d<1&&(a=c/d,b(".nc_socialPanel").css({transform:"scale("+d+")","transform-origin":e})),socialWarfarePlugin.activateHoverStates()})}function u(){var a=b('select[name="cttTheme"]');a.on("change",function(){var a=b('select[name="cttTheme"]').val();b(".swp_CTT").attr("class","swp_CTT").addClass(a)}),a.trigger("change")}function v(a){b(".registration-wrapper").attr("registration",a),b(".sw-admin-wrapper").attr("sw-registered",a)}function w(){var a=!1,c={action:"swp_ajax_passthrough",security:swpAdminOptionsData.registerNonce,activity:"register",email:b('input[name="emailAddress"]').val()};return o(),b.post(ajaxurl,c,function(c){c.success?(b('input[name="premiumCode"]').val(c.data.premiumCode),v("1"),a=!0):alert("Failure: "+c.data)}),p(),a}function x(){var a=!1,c={action:"swp_ajax_passthrough",security:swpAdminOptionsData.registerNonce,activity:"unregister",email:b('input[name="emailAddress"]').val(),key:b('input[name="premiumCode"]').val()};return o(),b.post(ajaxurl,c,function(c){c.success?(b('input[name="premiumCode"]').val(""),b('input[name="emailAddress"]').val(""),v("0"),a=!0):alert("Failure: "+c.data)}),p(),a}function y(){b("#register-plugin").on("click",function(){return w(),!1}),b("#unregister-plugin").on("click",function(){return x(),!1})}function z(){b(".sw-buttons-sort.sw-active").sortable({connectWith:".sw-buttons-sort.sw-inactive",update:function(){m()}}),b(".sw-buttons-sort.sw-inactive").sortable({connectWith:".sw-buttons-sort.sw-active",update:function(){m()}})}function A(){b(".sw-system-status").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,b(".system-status-wrapper").slideToggle(),d(b(".system-status-container").get(0))})}function B(){b(".sw-premium-blocker").tooltip({items:".sw-premium-blocker",content:"<i></i>Unlock this feature by registering your license.",position:{my:"center top",at:"center top"},tooltipClass:"sw-admin-hover-notice",open:function(a,c){if("undefined"==typeof a.originalEvent)return!1;var d=b(c.tooltip).attr("id");b("div.ui-tooltip").not("#"+d).remove()},close:function(a,c){c.tooltip.hover(function(){b(this).stop(!0).fadeTo(400,1)},function(){b(this).fadeOut("400",function(){b(this).remove()})})}})}function C(){var a;b(".swp_upload_image_button").click(function(c){c.preventDefault();var d=b(this).attr("for");return a?void a.open():(a=wp.media.frames.file_frame=wp.media({title:"Choose Image",button:{text:"Choose Image"},multiple:!1}),a.on("select",function(){var c=a.state().get("selection").first().toJSON();b('input[name="'+d+'"').val(c.url)}),void a.open())})}b(document).ready(function(){n(),l(),i(),j(),k(),s(),f(),u(),t(),y(),z(),A(),B(),C()})}(this,jQuery);
|
1 |
+
!function(a,b,c){"use strict";function d(b){var c,d;document.body.createTextRange?(c=document.body.createTextRange(),c.moveToElementText(b),c.select()):a.getSelection&&(d=a.getSelection(),c=document.createRange(),c.selectNodeContents(b),d.removeAllRanges(),d.addRange(c))}function e(){var a={};return b("form.sw-admin-settings-form input, form.sw-admin-settings-form select").each(function(){var c,d=b(this),e=d.attr("name");c="checkbox"===d.attr("type")?d.prop("checked"):d.val(),a[e]=c}),a.newOrderOfIcons={},b(".sw-active i").each(function(){var c=b(this).data("network");a.newOrderOfIcons[c]=c}),a}function f(){b("div[dep]").each(function(){var a,c=b(this).attr("dep"),d=b.parseJSON(b(this).attr("dep_val"));a="checkbox"==b('[name="'+c+'"]').attr("type")?b('[name="'+c+'"]').prop("checked"):b('[name="'+c+'"]').val(),-1!==b.inArray(a,d)&&b('[name="'+c+'"]').parent(".sw-grid").is(":visible")?b(this).show():b(this).hide()}),0!=h("floatStyleSource")||"customColor"!=g("sideDColorSet")&&"ccOutlines"!=g("sideDColorSet")&&"customColor"!=g("sideIColorSet")&&"ccOutlines"!=g("sideIColorSet")&&"customColor"!=g("sideOColorSet")&&"ccOutlines"!=g("sideOColorSet")?b(".sideCustomColor_wrapper").slideUp():b(".sideCustomColor_wrapper").slideDown()}function g(a){return b('select[name="'+a+'"]').val()}function h(a){return b('[name="'+a+'"]').prop("checked")}function i(){var a=b(".sw-top-menu").offset(),c=b(".sw-top-menu").width();b(".sw-top-menu").css({position:"fixed",left:a.left,top:a.top,width:c}),b(".sw-admin-wrapper").css("padding-top","75px")}function j(){b(".sw-tab-selector").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,b("html, body").animate({scrollTop:0},0);var c=b(this).attr("data-link");b(".sw-admin-tab").hide(),b("#"+c).show(),b(".sw-header-menu li").removeClass("sw-active-tab"),b(this).parents("li").addClass("sw-active-tab"),"swp_styles"===c&&socialWarfarePlugin.activateHoverStates(),f()})}function k(){b(".sw-checkbox-toggle").on("click",function(){var a=b(this).attr("status"),c=b(this).attr("field");"on"===a?(b(this).attr("status","off"),b(c).prop("checked",!1)):(b(this).attr("status","on"),b(c).prop("checked",!0)),m(),f()})}function l(){b("form.sw-admin-settings-form input, form.sw-admin-settings-form select").on("change",function(){f(),socialWarfarePlugin.newOptions=e(),m()}),socialWarfarePlugin.defaultOptions=e()}function m(){socialWarfarePlugin.newOptions=e(),JSON.stringify(socialWarfarePlugin.newOptions)!==JSON.stringify(socialWarfarePlugin.defaultOptions)?b(".sw-save-settings").removeClass("sw-navy-button").addClass("sw-red-button"):b(".sw-save-settings").removeClass("sw-red-button").addClass("sw-navy-button")}function n(){b(".sw-save-settings").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,o();var c=e();console.log(c);var d={action:"swp_store_settings",security:swpAdminOptionsData.optionsNonce,settings:c};b.post(ajaxurl,d,function(a){p(),console.log(b.parseJSON(a)),socialWarfarePlugin.defaultOptions=e(),m()})})}function o(){b("body").append('<div class="sw-loading-bg"><div class="sw-loading-message">Saving Changes</div></div>')}function p(){b(".sw-loading-message").html("Success!").removeClass("sw-loading-message").addClass("sw-loading-complete"),b(".sw-loading-bg").delay(1e3).fadeOut(1e3),setTimeout(function(){b(".sw-loading-bg").remove()},2e3)}function q(){var a=(b('select[name="visualTheme"]').val(),b('select[name="dColorSet"]').val()),c=b('select[name="iColorSet"]').val(),d=b('select[name="oColorSet"]').val();b("style.swp_customColorStuff").remove();var e=b('input[name="customColor"]').val(),f="";"customColor"!=a&&"customColor"!=c&&"customColor"!=d||(f=".nc_socialPanel.swp_d_customColor a, html body .nc_socialPanel.swp_i_customColor .nc_tweetContainer:hover a, body .nc_socialPanel.swp_o_customColor:hover a {color:white} .nc_socialPanel.swp_d_customColor .nc_tweetContainer, html body .nc_socialPanel.swp_i_customColor .nc_tweetContainer:hover, body .nc_socialPanel.swp_o_customColor:hover .nc_tweetContainer {background-color:"+e+";border:1px solid "+e+";}"),"ccOutlines"!=a&&"ccOutlines"!=c&&"ccOutlines"!=d||(f=f+" .nc_socialPanel.swp_d_ccOutlines a, html body .nc_socialPanel.swp_i_ccOutlines .nc_tweetContainer:hover a, body .nc_socialPanel.swp_o_ccOutlines:hover a { color:"+e+"; } .nc_socialPanel.swp_d_ccOutlines .nc_tweetContainer, html body .nc_socialPanel.swp_i_ccOutlines .nc_tweetContainer:hover, body .nc_socialPanel.swp_o_ccOutlines:hover .nc_tweetContainer { background:transparent; border:1px solid "+e+"; }"),b("head").append('<style type="text/css" class="swp_customColorStuff">'+f+"</style>")}function r(){var a=b('select[name="visualTheme"]').val(),c=b('select[name="dColorSet"]').val(),d=b('select[name="iColorSet"]').val(),e=b('select[name="oColorSet"]').val(),f="swp_"+a+" swp_d_"+c+" swp_i_"+d+" swp_o_"+e;void 0===socialWarfarePlugin.lastClass&&(console.log("boom"),socialWarfarePlugin.lastClass="swp_flatFresh swp_d_fullColor swp_i_fullColor swp_o_fullColor");var f="swp_"+a+" swp_d_"+c+" swp_i_"+d+" swp_o_"+e;b(".nc_socialPanel").removeClass(socialWarfarePlugin.lastClass).addClass(f),socialWarfarePlugin.lastClass=f;"customColor"==c||"ccOutlines"==c||"customColor"==d||"ccOutlines"==d||"customColor"==e||"ccOutlines"==e?(b(".customColor_wrapper").slideDown(),q()):b(".customColor_wrapper").slideUp()}function s(){var a={flatFresh:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},leaf:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},pill:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},threeDee:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray"},connected:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},shift:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"}};if(0!==b('select[name="visualTheme"]').length){var c=b('select[name="visualTheme"]').val(),d=b('select[name="dColorSet"]').val(),e=b('select[name="iColorSet"]').val(),f=b('select[name="oColorSet"]').val();b('select[name="dColorSet"] option, select[name="iColorSet"] option, select[name="oColorSet"] option').remove(),b.each(a[c],function(a,c){a===d?b('select[name="dColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="dColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===e?b('select[name="iColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="iColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===f?b('select[name="oColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="oColorSet"]').append('<option value="'+a+'">'+c+"</option>"),"customColor"==d||"ccOutlines"==d||"customColor"==e||"ccOutlines"==e||"customColor"==f||"ccOutlines"==f?(b(".customColor_wrapper").slideDown(),q()):b(".customColor_wrapper").slideUp()}),b('select[name="dColorSet"], select[name="iColorSet"], select[name="oColorSet"]').on("change",r),b('select[name="visualTheme"]').on("change",function(){var c=b('select[name="visualTheme"]').val(),d=b('select[name="dColorSet"]').val(),e=b('select[name="iColorSet"]').val(),f=b('select[name="oColorSet"]').val(),g=0,h=a[c],i=h.hasOwnProperty(d),j=h.hasOwnProperty(e),k=h.hasOwnProperty(f);b('select[name="dColorSet"] option, select[name="iColorSet"] option, select[name="oColorSet"] option').remove(),b.each(a[c],function(a,c){a===d||0==i&&0==g?b('select[name="dColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="dColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===e||0==j&&0==g?b('select[name="iColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="iColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===f||0==k&&0==g?b('select[name="oColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="oColorSet"]').append('<option value="'+a+'">'+c+"</option>"),++g}),void 0===socialWarfarePlugin.lastClass&&(console.log("boom"),socialWarfarePlugin.lastClass="swp_flatFresh swp_d_fullColor swp_i_fullColor swp_o_fullColor");var l="swp_"+c+" swp_d_"+d+" swp_i_"+e+" swp_o_"+f;b(".nc_socialPanel").removeClass(socialWarfarePlugin.lastClass).addClass(l),socialWarfarePlugin.lastClass=l})}}function t(){b('select[name="buttonSize"],select[name="buttonFloat"]').on("change",function(){b(".nc_socialPanel").css({width:"100%"});var a,c=b(".nc_socialPanel").width(),d=b('select[name="buttonSize"]').val(),e=b('select[name="buttonFloat"]').val();"fullWidth"==e&&1!=d||d>=1?(a=c/d,b(".nc_socialPanel").css("cssText","width:"+a+"px!important;"),b(".nc_socialPanel").css({transform:"scale("+d+")","transform-origin":"left"})):"fullWidth"!=e&&d<1&&(a=c/d,b(".nc_socialPanel").css({transform:"scale("+d+")","transform-origin":e})),socialWarfarePlugin.activateHoverStates()})}function u(){var a=b('select[name="cttTheme"]');a.on("change",function(){var a=b('select[name="cttTheme"]').val();b(".swp_CTT").attr("class","swp_CTT").addClass(a)}),a.trigger("change")}function v(a){b(".registration-wrapper").attr("registration",a),b(".sw-admin-wrapper").attr("sw-registered",a)}function w(){var a=!1,c={action:"swp_ajax_passthrough",security:swpAdminOptionsData.registerNonce,activity:"register",email:b('input[name="emailAddress"]').val()};return o(),b.post(ajaxurl,c,function(c){c.success?(b('input[name="premiumCode"]').val(c.data.premiumCode),v("1"),a=!0):alert("Failure: "+c.data)}),p(),a}function x(){var a=!1,c={action:"swp_ajax_passthrough",security:swpAdminOptionsData.registerNonce,activity:"unregister",email:b('input[name="emailAddress"]').val(),key:b('input[name="premiumCode"]').val()};return o(),b.post(ajaxurl,c,function(c){c.success?(b('input[name="premiumCode"]').val(""),b('input[name="emailAddress"]').val(""),v("0"),a=!0):alert("Failure: "+c.data)}),p(),a}function y(){b("#register-plugin").on("click",function(){return w(),!1}),b("#unregister-plugin").on("click",function(){return x(),!1})}function z(){b(".sw-buttons-sort.sw-active").sortable({connectWith:".sw-buttons-sort.sw-inactive",update:function(){m()}}),b(".sw-buttons-sort.sw-inactive").sortable({connectWith:".sw-buttons-sort.sw-active",update:function(){m()}})}function A(){b(".sw-system-status").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,b(".system-status-wrapper").slideToggle(),d(b(".system-status-container").get(0))})}function B(){b(".sw-premium-blocker").tooltip({items:".sw-premium-blocker",content:"<i></i>Unlock this feature by registering your license.",position:{my:"center top",at:"center top"},tooltipClass:"sw-admin-hover-notice",open:function(a,c){if(void 0===a.originalEvent)return!1;var d=b(c.tooltip).attr("id");b("div.ui-tooltip").not("#"+d).remove()},close:function(a,c){c.tooltip.hover(function(){b(this).stop(!0).fadeTo(400,1)},function(){b(this).fadeOut("400",function(){b(this).remove()})})}})}function C(){var a;b(".swp_upload_image_button").click(function(c){c.preventDefault();var d=b(this).attr("for");if(a)return void a.open();a=wp.media.frames.file_frame=wp.media({title:"Choose Image",button:{text:"Choose Image"},multiple:!1}),a.on("select",function(){var c=a.state().get("selection").first().toJSON();b('input[name="'+d+'"').val(c.url)}),a.open()})}b(document).ready(function(){n(),l(),i(),j(),k(),s(),f(),u(),t(),y(),z(),A(),B(),C()})}(this,jQuery);
|
js/admin.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
var socialWarfareAdmin=socialWarfareAdmin||{};!function(a,b,c){"use strict";function d(){var a=b("#socialWarfare textarea#nc_ogTitle").val(),c=60-a.length;a.length>0&&c>=0?b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):a.length>0&&c<0?b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_ogTitleWrapper .counterNumber").html(c)}function e(){var a=b("#socialWarfare textarea#nc_ogDescription").val(),c=160-a.length;a.length>0&&c>=0?b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):a.length>0&&c<0?b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_ogDescriptionWrapper .counterNumber").html(c)}function f(){var a,c=b("#socialWarfare textarea#nc_customTweet").val(),d=b("#socialWarfare .twitterIDWrapper label").html();c.indexOf("http")>-1||c.indexOf("https")>-1?(a=0,b(".tweetLinkSection").css({"text-decoration":"line-through"})):(a=23,b(".tweetLinkSection").css({"text-decoration":"none"}));var e;e=
|
1 |
+
var socialWarfareAdmin=socialWarfareAdmin||{};!function(a,b,c){"use strict";function d(){var a=b("#socialWarfare textarea#nc_ogTitle").val(),c=60-a.length;a.length>0&&c>=0?b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):a.length>0&&c<0?b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_ogTitleWrapper .counterNumber").html(c)}function e(){var a=b("#socialWarfare textarea#nc_ogDescription").val(),c=160-a.length;a.length>0&&c>=0?b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):a.length>0&&c<0?b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_ogDescriptionWrapper .counterNumber").html(c)}function f(){var a,c=b("#socialWarfare textarea#nc_customTweet").val(),d=b("#socialWarfare .twitterIDWrapper label").html();c.indexOf("http")>-1||c.indexOf("https")>-1?(a=0,b(".tweetLinkSection").css({"text-decoration":"line-through"})):(a=23,b(".tweetLinkSection").css({"text-decoration":"none"}));var e;e=void 0===d?140-socialWarfareAdmin.linkLength(c)-a:140-socialWarfareAdmin.linkLength(c)-d.length-a-6,c.length>0&&e>=0?b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):c.length>0&&e<0?b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_customTweetWrapper .counterNumber").html(e)}socialWarfareAdmin.linkLength=function(a){for(var b="",c=0;c<23;c++)b+="o";return a.replace(/(http:\/\/[\S]*)/g,b).length},b(document).ready(function(){if(b("#socialWarfare.postbox").length){b("#socialWarfare #nc_ogTitle").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">60</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),b("#socialWarfare #nc_ogDescription").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">150</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),b("#socialWarfare #nc_customTweet").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">118</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),d(),b("#socialWarfare textarea#nc_ogTitle").on("input",function(){d()}),e(),b("#socialWarfare textarea#nc_ogDescription").on("input",function(){e()}),f(),b("#socialWarfare textarea#nc_customTweet").on("input",function(){f()});setInterval(function(){var a,c,d=b(".nc_ogImageWrapper ul.swpmb-media-list"),e=b(".nc_pinterestImageWrapper ul.swpmb-media-list");d.length&&d.is(":empty")?(a=d.width(),c=a*(9/16),d.css({height:c+"px"})):(c=d.find("img").height(),d.css({height:c+"px"}));var f,g;e.length&&e.is(":empty")?(f=e.width(),g=1.5*f,e.css({height:g+"px"})):(g=e.find("img").height(),e.css({height:g+"px"}))},1e3)}if(b(".swp_popular_post_options .showCount select").on("change",function(){b(this).val();b(".swp_popular_post_options .countLabel").slideDown("slow")}),b(".swp_popular_post_options .thumbnails select").on("change",function(){b(this).val();b(".swp_popular_post_options .thumb_size").slideDown("slow")}),b(".swp_popular_post_options .style select").on("change",function(){b(this).val();b(".swp_popular_post_options .custom_bg, .swp_popular_post_options .custom_link").slideDown("slow")}),b(".postbox#socialWarfare").length){"false"==b("#socialWarfare .registrationWrapper input").attr("id")&&(b(".postbox#socialWarfare").css({position:"relative",opacity:"0.3"}).append('<div class="sw-premium-blocker"></div>'),b("#socialWarfare .sw-premium-blocker").tooltip({items:"#socialWarfare .sw-premium-blocker",content:"<i></i>Unlock these features by registering your license.",position:{my:"center top",at:"center top"},tooltipClass:"sw-admin-hover-notice",open:function(a,c){if(void 0===a.originalEvent)return!1;var d=b(c.tooltip).attr("id");b("div.ui-tooltip").not("#"+d).remove()},close:function(a,c){c.tooltip.hover(function(){b(this).stop(!0).fadeTo(400,1)},function(){b(this).fadeOut("400",function(){b(this).remove()})})}}))}})}(0,jQuery);
|
js/script.js
CHANGED
@@ -361,7 +361,9 @@ var socialWarfarePlugin = socialWarfarePlugin || {};
|
|
361 |
|
362 |
var pinMedia = false;
|
363 |
|
364 |
-
if (
|
|
|
|
|
365 |
pinMedia = $image.data( 'media' );
|
366 |
} else if ( $(this).attr('data-lazy-src') ) {
|
367 |
pinMedia = $(this).attr('data-lazy-src');
|
@@ -380,7 +382,9 @@ var socialWarfarePlugin = socialWarfarePlugin || {};
|
|
380 |
|
381 |
var pinDesc = '';
|
382 |
|
383 |
-
if (
|
|
|
|
|
384 |
pinDesc = $image.attr( 'title' );
|
385 |
} else if ( $image.attr( 'alt' ) ) {
|
386 |
pinDesc = $image.attr( 'alt' );
|
361 |
|
362 |
var pinMedia = false;
|
363 |
|
364 |
+
if ( 'undefined' !== typeof swpPinIt.image_source ) {
|
365 |
+
pinMedia = swpPinIt.image_source;
|
366 |
+
} else if ( $image.data( 'media' ) ) {
|
367 |
pinMedia = $image.data( 'media' );
|
368 |
} else if ( $(this).attr('data-lazy-src') ) {
|
369 |
pinMedia = $(this).attr('data-lazy-src');
|
382 |
|
383 |
var pinDesc = '';
|
384 |
|
385 |
+
if ( 'undefined' !== typeof swpPinIt.image_description){
|
386 |
+
pinDesc = swpPinIt.image_description;
|
387 |
+
} else if ( $image.attr( 'title' ) ) {
|
388 |
pinDesc = $image.attr( 'title' );
|
389 |
} else if ( $image.attr( 'alt' ) ) {
|
390 |
pinDesc = $image.attr( 'alt' );
|
js/script.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
var socialWarfarePlugin=socialWarfarePlugin||{};!function(a,b){var c,d=a.socialWarfarePlugin;d.throttle=c=function(a,c,e,f){function g(){function d(){i=+new Date,e.apply(j,l)}function g(){h=b}var j=this,k=+new Date-i,l=arguments;f&&!h&&d(),h&&clearTimeout(h),f===b&&k>a?d()
|
1 |
+
var socialWarfarePlugin=socialWarfarePlugin||{};!function(a,b){var c,d=a.socialWarfarePlugin;d.throttle=c=function(a,c,e,f){function g(){function d(){i=+new Date,e.apply(j,l)}function g(){h=b}var j=this,k=+new Date-i,l=arguments;f&&!h&&d(),h&&clearTimeout(h),f===b&&k>a?d():!0!==c&&(h=setTimeout(f?g:d,f===b?a-k:a))}var h,i=0;return"boolean"!=typeof c&&(f=e,e=c,c=b),d.guid&&(g.guid=e.guid=e.guid||d.guid++),g},d.debounce=function(a,d,e){return e===b?c(a,d,!1):c(a,e,!1!==d)}}(this),function(a,b,c){"use strict";function d(a){return parseInt(a,10)}function e(c){var d=b.Event(c);b(a).trigger(d)}function f(){b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover) .iconFiller").removeAttr("style"),b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover)").removeAttr("style")}function g(){b(".nc_wrapper").length&&b(".nc_wrapper").remove();var a=b(".nc_socialPanel").not('[data-float="float_ignore"]').first(),c=(b(".nc_socialPanel").index(a),a.attr("data-float")),d=a.attr("data-align");if(c){var e=b(".nc_socialPanel").attr("data-floatColor");b('<div class="nc_wrapper" style="background-color:'+e+'"></div>').appendTo("body");var f=a.attr("data-float");a.clone().appendTo(".nc_wrapper"),b(".nc_wrapper").hide().addClass("floatLeft"==f?"floatBottom":f);var g=a.outerWidth(!0),h=a.offset();b(".nc_socialPanel").last().addClass("nc_floater").css({width:g,left:"center"==d?0:h.left}),b(".nc_socialPanel .swp_count").css({transition:"padding .1s linear"}),b(".nc_socialPanel").eq(0).addClass("swp_one"),b(".nc_socialPanel").eq(2).addClass("swp_two"),b(".nc_socialPanel").eq(1).addClass("swp_three")}}function h(){var c=b(".nc_socialPanel"),d=c.not('[data-float="float_ignore"]').eq(0).attr("data-float"),f=b(a),g=f.height(),h=b(".nc_wrapper"),i=b(".nc_socialPanelSide").filter(":not(.mobile)"),j=(b(".nc_socialPanel").attr("data-position"),i.attr("data-screen-width")),k=c.eq(0).offset(),l=f.scrollTop();b(a).scrollTop();void 0===a.swpOffsets&&(a.swpOffsets={});var m=!1;if("floatLeft"==d){var n=b(".nc_socialPanelSide").attr("data-mobileFloat");b(".nc_socialPanel").not(".nc_socialPanelSide").length?(b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_floater").each(function(){var a=b(this).offset(),c=b(this).height();a.top+c>l&&a.top<l+g&&(m=!0)}),k.left<100||b(a).width()<j?(m=!0,"bottom"==n&&(d="floatBottom")):m||(m=!1)):b(a).width()>j?m=!1:(m=!0,"bottom"==n&&(d="floatBottom"));var o=i.attr("data-transition");"slide"==o?1==m?i.css({left:"-100px"},200):i.css({left:"5px"}):"fade"==o&&(1==m?i.fadeOut(200):i.fadeIn(200))}if("floatBottom"==d||"floatTop"==d)if(m=!1,b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_floater").each(function(){var a=b(this).offset(),c=b(this).height();a.top+c>l&&a.top<l+g&&(m=!0)}),m)h.hide(),"floatBottom"==d?b("body").animate({"padding-bottom":a.bodyPaddingBottom+"px"},0):"floatTop"==d&&b("body").animate({"padding-top":a.bodyPaddingTop+"px"},0);else{var p,q;h.show(),e("floating_bar_revealed"),"floatBottom"==d?(p=a.bodyPaddingBottom+50,b("body").animate({"padding-bottom":p+"px"},0)):"floatTop"==d&&(q=b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_wrapper .nc_socialPanel").first().offset(),q.top>l+g&&(p=a.bodyPaddingTop+50,b("body").animate({"padding-top":p+"px"},0)))}}function i(){0!==b(".nc_socialPanel").length&&(g(),l.activateHoverStates(),k(),b(a).scrollTop(),b(a).scroll(l.throttle(50,function(){h()})),b(a).trigger("scroll"),b(".nc_socialPanel").css({opacity:1}))}function j(){var c={wrap:'<div class="sw-pinit" />',pageURL:document.URL},d=b.extend(c,d);b(".swp-content-locator").parent().find("img").each(function(){var c=b(this);if(!(c.outerHeight()<swpPinIt.minHeight||c.outerWidth()<swpPinIt.minWidth)){var e=!1;if(c.data("media")?e=c.data("media"):b(this).attr("data-lazy-src")?e=b(this).attr("data-lazy-src"):c[0].src&&(e=c[0].src),!1!==e&&!c.hasClass("no_pin")){var f="";c.attr("title")?f=c.attr("title"):c.attr("alt")&&(f=c.attr("alt"));var g="http://pinterest.com/pin/create/bookmarklet/?media="+encodeURI(e)+"&url="+encodeURI(d.pageURL)+"&is_video=false&description="+encodeURIComponent(f),h=c.attr("class"),i=c.attr("style");c.removeClass().attr("style","").wrap(d.wrap),c.after('<a href="'+g+'" class="sw-pinit-button sw-pinit-'+swpPinIt.vLocation+" sw-pinit-"+swpPinIt.hLocation+'">Save</a>'),c.parent(".sw-pinit").addClass(h).attr("style",i),b(".sw-pinit .sw-pinit-button").on("click",function(){if(a.open(b(this).attr("href"),"Pinterest","width=632,height=253,status=0,toolbar=0,menubar=0,location=1,scrollbars=1"),"function"==typeof ga&&!0===swpClickTracking){console.log("pin_image Button Clicked"),ga("send","event","social_media","swp_pin_image_share")}return!1})}}})}function k(){b(".nc_tweet, a.swp_CTT").off("click"),b(".nc_tweet, a.swp_CTT").on("click",function(c){if(b(this).hasClass("noPop"))return!1;if(console.log(b(this)),b(this).attr("data-link")){c.preventDefault?c.preventDefault():c.returnValue=!1;var d=b(this).attr("data-link");console.log(d);var e,f;if(d=d.replace("’","'"),b(this).hasClass("pinterest")||b(this).hasClass("buffer_link")||b(this).hasClass("flipboard")?(e=550,f=775):(e=270,f=500),a.open(d,"_blank","height="+e+",width="+f),"function"==typeof ga&&!0===swpClickTracking){if(b(this).hasClass("nc_tweet"))var g=b(this).parents(".nc_tweetContainer").attr("data-network");else if(b(this).hasClass("swp_CTT"))var g="ctt";console.log(g+" Button Clicked"),ga("send","event","social_media","swp_"+g+"_share")}return!1}})}var l=a.socialWarfarePlugin,m={};socialWarfarePlugin.fetchShares=function(){b.when(b.get("https://graph.facebook.com/?id="+swp_post_url),b.get("https://graph.facebook.com/?id="+swp_post_url+"&fields=og_object{likes.summary(true),comments.summary(true)}"),swp_post_recovery_url?b.get("https://graph.facebook.com/?id="+swp_post_recovery_url):"",swp_post_recovery_url?b.get("https://graph.facebook.com/?id="+swp_post_recovery_url+"&fields=og_object{likes.summary(true),comments.summary(true)}"):"").then(function(a,c,e,f){if(void 0!==a[0].share&&void 0!==c[0].og_object){var g=d(a[0].share.share_count),h=d(c[0].og_object.likes.summary.total_count),i=d(c[0].og_object.comments.summary.total_count),j=g+h+i;if(swp_post_recovery_url){if(void 0!==e[0].share)var k=d(e[0].share.share_count);else var k=0;if(void 0!==f[0].og_object)var l=d(f[0].og_object.likes.summary.total_count),n=d(f[0].og_object.comments.summary.total_count);else var l=0,n=0;var o=k+l+n;j!==o&&(j+=o)}m={action:"swp_facebook_shares_update",post_id:swp_post_id,activity:j},b.post(swp_admin_ajax,m,function(a){console.log("Facebook Shares Response: "+a)})}})},l.activateHoverStates=function(){e("pre_activate_buttons"),b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover)").on("mouseenter",function(){f();var a=b(this).find(".swp_share").outerWidth(),c=b(this).find("i.sw").outerWidth(),d=b(this).width(),e=1+(a+35)/d;b(this).find(".iconFiller").width(a+c+25+"px"),b(this).css({flex:e+" 1 0%"})}),b(".nc_socialPanel:not(.nc_socialPanelSide)").on("mouseleave",function(){f()})},b(a).on("load",function(){"undefined"!=typeof swpPinIt&&swpPinIt.enabled&&j()}),b(document).ready(function(){k(),i(),a.bodyPaddingTop=d(b("body").css("padding-top").replace("px","")),a.bodyPaddingBottom=d(b("body").css("padding-bottom").replace("px",""));var c=!1;if(b(".nc_socialPanel").hover(function(){c=!0},function(){c=!1}),b(a).resize(l.debounce(250,function(){b(".nc_socialPanel").length&&!1!==c||(a.swpAdjust=1,i())})),b(document.body).on("post-load",function(){i()}),0!==b(".nc_socialPanelSide").length){var e=b(".nc_socialPanelSide").height(),f=b(a).height(),g=d(f/2-e/2);setTimeout(function(){b(".nc_socialPanelSide").animate({top:g},0)},105)}swp_isMobile.phone&&b(".swp_whatsapp").addClass("mobile"),1===b(".swp-content-locator").parent().children().length&&b(".swp-content-locator").parent().hide()})}(this,jQuery),function(a){var b=/(?=.*\bAndroid\b)(?=.*\bMobile\b)/i,c=/(?=.*\bAndroid\b)(?=.*\bSD4930UR\b)/i,d=/(?=.*\bAndroid\b)(?=.*\b(?:KFOT|KFTT|KFJWI|KFJWA|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|KFARWI|KFASWI|KFSAWI|KFSAWA)\b)/i,e=new RegExp("(?:Nexus 7|BNTV250|Kindle Fire|Silk|GT-P1000)","i"),f=function(a,b){return a.test(b)},g=function(a){var g=a||navigator.userAgent,h=g.split("[FBAN");if(void 0!==h[1]&&(g=h[0]),h=g.split("Twitter"),void 0!==h[1]&&(g=h[0]),this.apple={phone:f(/iPhone/i,g),ipod:f(/iPod/i,g),tablet:!f(/iPhone/i,g)&&f(/iPad/i,g),device:f(/iPhone/i,g)||f(/iPod/i,g)||f(/iPad/i,g)},this.amazon={phone:f(c,g),tablet:!f(c,g)&&f(d,g),device:f(c,g)||f(d,g)},this.android={phone:f(c,g)||f(b,g),tablet:!f(c,g)&&!f(b,g)&&(f(d,g)||f(/Android/i,g)),device:f(c,g)||f(d,g)||f(b,g)||f(/Android/i,g)},this.windows={phone:f(/Windows Phone/i,g),tablet:f(/(?=.*\bWindows\b)(?=.*\bARM\b)/i,g),device:f(/Windows Phone/i,g)||f(/(?=.*\bWindows\b)(?=.*\bARM\b)/i,g)},this.other={blackberry:f(/BlackBerry/i,g),blackberry10:f(/BB10/i,g),opera:f(/Opera Mini/i,g),firefox:f(/(?=.*\bFirefox\b)(?=.*\bMobile\b)/i,g),chrome:f(/(CriOS|Chrome)(?=.*\bMobile\b)/i,g),device:f(/BlackBerry/i,g)||f(/BB10/i,g)||f(/Opera Mini/i,g)||f(/(?=.*\bFirefox\b)(?=.*\bMobile\b)/i,g)||f(/(CriOS|Chrome)(?=.*\bMobile\b)/i,g)},this.seven_inch=f(e,g),this.any=this.apple.device||this.android.device||this.windows.device||this.other.device||this.seven_inch,this.phone=this.apple.phone||this.android.phone||this.windows.phone,this.tablet=this.apple.tablet||this.android.tablet||this.windows.tablet,"undefined"==typeof window)return this},h=function(){var a=new g;return a.Class=g,a};"undefined"!=typeof module&&module.exports&&"undefined"==typeof window?module.exports=g:"undefined"!=typeof module&&module.exports&&"undefined"!=typeof window?module.exports=h():"function"==typeof define&&define.amd?define("swp_isMobile",[],a.swp_isMobile=h()):a.swp_isMobile=h()}(this);
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: holas84, dustinwstout, webinator, warfareplugins, nutsandboltsmedia
|
3 |
Tags: addthis, addtoany, analytics, bitly, buffer, button, click to tweet, digg, email, emailbutton, facebook, facebookbutton, facebooklike, facebookshare, flipboard, floatingbuttons, floatingsharebuttons, followbuttons, frameblocker, framebuster, google+1, googleanalyticsintegration, googleplus, googleplusone, googleplusshare, hackernews, iframeblocker, iframebuster, likebutton, linkshortening, linkedin, mobilesharebar, mobilesharing, opengraph, pin, pinbutton, pinit, pinterest, pinterestsave, pinterestshare, plusone, pocket, reddit, richpins, share, sharebutton, sharebuttonsplugin, sharecountrecovery, sharecounts, sharefacebook, shareimage, sharenow, sharethis, sharebar, shareholic, sharify, sharingbuttons, social, socialbookmark, socialbuttons, socialicons, socialmedia, socialmediashare, socialmediasharing, socialmediawidget, socialplugin, socialshare, socialsharebuttons, socialsharing, socialize, stumbleupon, sumome, tumblr, tweet, tweetbutton, tweetcount, twitter, twitterbutton, twittercards, twittercounts, utm, utmtracking, whatsapp, yumbutton, yummly
|
4 |
Requires at least: 3.5.1
|
5 |
-
Tested up to: 4.
|
6 |
Stable tag: 2.3.0
|
7 |
License: GNU General Public License v2.0 or later
|
8 |
|
@@ -186,6 +186,19 @@ We have a growing archive of <a href="https://warfareplugins.com/support" rel="f
|
|
186 |
|
187 |
== Changelog ==
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
= 2.2.7 (15 JUN 2017) =
|
190 |
|
191 |
* Fixed a 500 internal server error.
|
2 |
Contributors: holas84, dustinwstout, webinator, warfareplugins, nutsandboltsmedia
|
3 |
Tags: addthis, addtoany, analytics, bitly, buffer, button, click to tweet, digg, email, emailbutton, facebook, facebookbutton, facebooklike, facebookshare, flipboard, floatingbuttons, floatingsharebuttons, followbuttons, frameblocker, framebuster, google+1, googleanalyticsintegration, googleplus, googleplusone, googleplusshare, hackernews, iframeblocker, iframebuster, likebutton, linkshortening, linkedin, mobilesharebar, mobilesharing, opengraph, pin, pinbutton, pinit, pinterest, pinterestsave, pinterestshare, plusone, pocket, reddit, richpins, share, sharebutton, sharebuttonsplugin, sharecountrecovery, sharecounts, sharefacebook, shareimage, sharenow, sharethis, sharebar, shareholic, sharify, sharingbuttons, social, socialbookmark, socialbuttons, socialicons, socialmedia, socialmediashare, socialmediasharing, socialmediawidget, socialplugin, socialshare, socialsharebuttons, socialsharing, socialize, stumbleupon, sumome, tumblr, tweet, tweetbutton, tweetcount, twitter, twitterbutton, twittercards, twittercounts, utm, utmtracking, whatsapp, yumbutton, yummly
|
4 |
Requires at least: 3.5.1
|
5 |
+
Tested up to: 4.8
|
6 |
Stable tag: 2.3.0
|
7 |
License: GNU General Public License v2.0 or later
|
8 |
|
186 |
|
187 |
== Changelog ==
|
188 |
|
189 |
+
= 2.2.8 (29 JUN 2017) =
|
190 |
+
|
191 |
+
* Added the option to use the custom Pinterest image for the image hover pin buttons rather than the image being hovered.
|
192 |
+
* Added the option to use the custom Pinterest description for the image hover pin buttons rather than the alt text of the image.
|
193 |
+
* Added the option to turn off UTM tracking for Pinterest since Pinterest seems to tally pin counts separately when UTM is used.
|
194 |
+
* Added an option to force new shares. Normally the plugin ignores new share counts if the count is lower than the count that we previously fetched from the API's. If you activate this feature, it will go with the new count even if it is lower than previously reported by the API's.
|
195 |
+
* Fixed an issue that was affecting share counts being fetched on some sites.
|
196 |
+
* Fixed an issue that was affecting the open graph image on some sites when posts were scheduled.
|
197 |
+
* Fixed an issue that was causing some sites not to generate Bitly links on new posts.
|
198 |
+
* Added some debugging tools to make it easier to diagnose any future issues with Bitly links.
|
199 |
+
* Added a conditional to catch an undefined index warning.
|
200 |
+
* Changed the link in the head html comment to be https.
|
201 |
+
|
202 |
= 2.2.7 (15 JUN 2017) =
|
203 |
|
204 |
* Fixed a 500 internal server error.
|
social-warfare.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Social Warfare
|
4 |
* Plugin URI: http://warfareplugins.com
|
5 |
* Description: A plugin to maximize social shares and drive more traffic using the fastest and most intelligent share buttons on the market, calls to action via in-post click-to-tweets, popular posts widgets based on share popularity, link-shortening, Google Analytics and much, much more!
|
6 |
-
* Version: 2.2.
|
7 |
* Author: Warfare Plugins
|
8 |
* Author URI: http://warfareplugins.com
|
9 |
* Text Domain: social-warfare
|
@@ -15,7 +15,7 @@ defined( 'WPINC' ) || die;
|
|
15 |
* Define plugin constants for use throughout the plugin (Version and Directories)
|
16 |
*
|
17 |
*/
|
18 |
-
define( 'SWP_VERSION' , '2.2.
|
19 |
define( 'SWP_PLUGIN_FILE', __FILE__ );
|
20 |
define( 'SWP_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
|
21 |
define( 'SWP_PLUGIN_DIR', dirname( __FILE__ ) );
|
3 |
* Plugin Name: Social Warfare
|
4 |
* Plugin URI: http://warfareplugins.com
|
5 |
* Description: A plugin to maximize social shares and drive more traffic using the fastest and most intelligent share buttons on the market, calls to action via in-post click-to-tweets, popular posts widgets based on share popularity, link-shortening, Google Analytics and much, much more!
|
6 |
+
* Version: 2.2.8
|
7 |
* Author: Warfare Plugins
|
8 |
* Author URI: http://warfareplugins.com
|
9 |
* Text Domain: social-warfare
|
15 |
* Define plugin constants for use throughout the plugin (Version and Directories)
|
16 |
*
|
17 |
*/
|
18 |
+
define( 'SWP_VERSION' , '2.2.8' );
|
19 |
define( 'SWP_PLUGIN_FILE', __FILE__ );
|
20 |
define( 'SWP_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
|
21 |
define( 'SWP_PLUGIN_DIR', dirname( __FILE__ ) );
|