| 1 |
/** |
| 2 |
* Sharedaddy Base Styles |
| 3 |
* |
| 4 |
* Contains styles for modules, containers, buttons |
| 5 |
*/ |
| 6 |
|
| 7 |
|
| 8 |
/* Master container */ |
| 9 |
#jp-post-flair { |
| 10 |
padding-top: .5em; |
| 11 |
} |
| 12 |
|
| 13 |
|
| 14 |
/* Overall Sharedaddy block title */ |
| 15 |
div.sharedaddy, |
| 16 |
#content div.sharedaddy, |
| 17 |
#main div.sharedaddy { |
| 18 |
clear: both; |
| 19 |
} |
| 20 |
|
| 21 |
div.sharedaddy h3.sd-title { |
| 22 |
margin: 0 0 1em 0; |
| 23 |
display: inline-block; |
| 24 |
line-height: 1.2; |
| 25 |
font-size: 9pt; |
| 26 |
font-weight: bold; |
| 27 |
} |
| 28 |
|
| 29 |
div.sharedaddy h3.sd-title:before { |
| 30 |
content: ""; |
| 31 |
display: block; |
| 32 |
width: 100%; |
| 33 |
min-width: 30px; |
| 34 |
border-top: 1px solid #ddd; |
| 35 |
margin-bottom: 1em; |
| 36 |
} |
| 37 |
|
| 38 |
body.highlander-light h3.sd-title:before { |
| 39 |
border-top: 1px solid rgba(0,0,0,.2); |
| 40 |
} |
| 41 |
|
| 42 |
body.highlander-dark h3.sd-title:before { |
| 43 |
border-top: 1px solid rgba(255,255,255,.4); |
| 44 |
} |
| 45 |
|
| 46 |
|
| 47 |
/* Sharing services list */ |
| 48 |
.sd-content ul { |
| 49 |
padding: 0 !important; |
| 50 |
margin: 0 0 .7em 0 !important; |
| 51 |
list-style: none !important; |
| 52 |
} |
| 53 |
|
| 54 |
.sd-content ul li { |
| 55 |
display: inline-block; |
| 56 |
} |
| 57 |
|
| 58 |
.sd-content ul li.share-deprecated { |
| 59 |
opacity: 0.5; |
| 60 |
} |
| 61 |
|
| 62 |
.sd-content ul li.share-deprecated a span { |
| 63 |
text-decoration: line-through; |
| 64 |
} |
| 65 |
|
| 66 |
.sd-block.sd-gplus { |
| 67 |
margin: 0 0 .5em 0; |
| 68 |
} |
| 69 |
|
| 70 |
.sd-gplus .sd-content { |
| 71 |
font-size: 12px; |
| 72 |
} |
| 73 |
|
| 74 |
|
| 75 |
/* Buttons */ |
| 76 |
.sd-social-icon .sd-content ul li a.sd-button, |
| 77 |
.sd-social-text .sd-content ul li a.sd-button, |
| 78 |
.sd-content ul li a.sd-button, |
| 79 |
.sd-content ul li .option a.share-ustom, /* Ugh. */ |
| 80 |
.sd-content ul li.preview-item div.option.option-smart-off a, |
| 81 |
.sd-content ul li.advanced a.share-more, |
| 82 |
.sd-social-icon-text .sd-content ul li a.sd-button, |
| 83 |
.sd-social-official .sd-content>ul>li>a.sd-button, |
| 84 |
#sharing_email .sharing_send, |
| 85 |
.sd-social-official .sd-content>ul>li .digg_button >a { /* official Digg button no longer works, needs cleaning */ |
| 86 |
text-decoration: none !important; |
| 87 |
display: inline-block; |
| 88 |
font-size: 12px; |
| 89 |
font-family: "Open Sans", sans-serif; |
| 90 |
font-weight: normal; |
| 91 |
border-radius: 3px; |
| 92 |
color: #777 !important; |
| 93 |
background: #f8f8f8; |
| 94 |
border: 1px solid #cccccc; |
| 95 |
box-shadow: 0 1px 0 rgba(0,0,0,.08); |
| 96 |
text-shadow: none; |
| 97 |
line-height: 23px; |
| 98 |
padding: 1px 8px 0px 5px; |
| 99 |
} |
| 100 |
|
| 101 |
.sd-social-text .sd-content ul li a.sd-button span, |
| 102 |
.sd-content ul li a.sd-button>span, |
| 103 |
.sd-content ul li .option a.share-ustom span, /* Ugh. */ |
| 104 |
.sd-content ul li.preview-item div.option.option-smart-off a span, |
| 105 |
.sd-content ul li.advanced a.share-more span, |
| 106 |
.sd-social-icon-text .sd-content ul li a.sd-button>span, |
| 107 |
.sd-social-official .sd-content>ul>li>a.sd-button span, |
| 108 |
.sd-social-official .sd-content>ul>li .digg_button >a span { /* official Digg button no longer works, needs cleaning */ |
| 109 |
line-height: 23px; |
| 110 |
} |
| 111 |
|
| 112 |
|
| 113 |
|
| 114 |
/* Our gray buttons should be smaller when seen with the official ones */ |
| 115 |
.sd-social-official .sd-content>ul>li>a.sd-button, |
| 116 |
.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button, |
| 117 |
.sd-social-official .sd-content>ul>li .digg_button>a, |
| 118 |
.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a { |
| 119 |
line-height: 17px; |
| 120 |
box-shadow: none; /* No shadow on gray buttons between the official ones */ |
| 121 |
vertical-align: top; |
| 122 |
} |
| 123 |
|
| 124 |
.sd-social-official .sd-content ul li a.sd-button>span { |
| 125 |
line-height: 17px; |
| 126 |
} |
| 127 |
.sd-social-official .sd-content>ul>li>a.sd-button:before, |
| 128 |
.sd-social-official .sd-content>ul>li .digg_button>a:before, |
| 129 |
.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before, |
| 130 |
.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before { |
| 131 |
margin-bottom: -1px; |
| 132 |
} |
| 133 |
|
| 134 |
.sd-social-icon .sd-content ul li a.sd-button:hover, |
| 135 |
.sd-social-icon .sd-content ul li a.sd-button:active, |
| 136 |
.sd-social-text .sd-content ul li a.sd-button:hover, |
| 137 |
.sd-social-text .sd-content ul li a.sd-button:active, |
| 138 |
.sd-social-icon-text .sd-content ul li a.sd-button:hover, |
| 139 |
.sd-social-icon-text .sd-content ul li a.sd-button:active, |
| 140 |
.sd-social-official .sd-content>ul>li>a.sd-button:hover, |
| 141 |
.sd-social-official .sd-content>ul>li>a.sd-button:active, |
| 142 |
.sd-social-official .sd-content>ul>li .digg_button>a:hover, |
| 143 |
.sd-social-official .sd-content>ul>li .digg_button>a:active { |
| 144 |
color: #555; |
| 145 |
background: #fafafa; |
| 146 |
border: 1px solid #999999; |
| 147 |
} |
| 148 |
|
| 149 |
.sd-social-icon .sd-content ul li a.sd-button:active, |
| 150 |
.sd-social-text .sd-content ul li a.sd-button:active, |
| 151 |
.sd-social-icon-text .sd-content ul li a.sd-button:active, |
| 152 |
.sd-social-official .sd-content>ul>li>a.sd-button:active, |
| 153 |
.sd-social-official .sd-content>ul>li .digg_button>a:active { |
| 154 |
box-shadow: inset 0 1px 0 rgba(0,0,0,.16); |
| 155 |
} |
| 156 |
|
| 157 |
/* All icons */ |
| 158 |
.sd-content ul li a.sd-button:before { |
| 159 |
display: inline-block; |
| 160 |
-webkit-font-smoothing: antialiased; |
| 161 |
-moz-osx-font-smoothing: grayscale; |
| 162 |
font: normal 18px/1 'social-logos'; |
| 163 |
vertical-align: top; |
| 164 |
text-align: center; |
| 165 |
} |
| 166 |
/* text + icon styles should have relative and top position */ |
| 167 |
.sd-social-icon-text ul li a.sd-button:before { |
| 168 |
position: relative; |
| 169 |
top: 2px; |
| 170 |
} |
| 171 |
|
| 172 |
/* Make it look great in Chrome and Safari */ |
| 173 |
@media screen and (-webkit-min-device-pixel-ratio:0) { |
| 174 |
.sd-content ul li a.sd-button:before { |
| 175 |
position: relative; |
| 176 |
top: 2px; |
| 177 |
} |
| 178 |
} |
| 179 |
|
| 180 |
.sd-social-official ul li a.sd-button:before { |
| 181 |
position: relative; |
| 182 |
top: -2px; |
| 183 |
} |
| 184 |
/* Make it look great in Chrome and Safari */ |
| 185 |
@media screen and (-webkit-min-device-pixel-ratio:0) { |
| 186 |
.sd-social-official ul li a.sd-button:before { |
| 187 |
top: 0px; |
| 188 |
} |
| 189 |
} |
| 190 |
|
| 191 |
.sd-content ul li { |
| 192 |
margin: 0 5px 5px 0; |
| 193 |
padding: 0; |
| 194 |
} |
| 195 |
/* Add more pading on touch devices */ |
| 196 |
.jp-sharing-input-touch .sd-content ul li { padding-left: 10px; } |
| 197 |
|
| 198 |
/* Text + icon & Official */ |
| 199 |
.sd-social-icon-text .sd-content ul li a span, |
| 200 |
.sd-social-official .sd-content ul li a.sd-button span, |
| 201 |
.sd-content ul li.preview-item a.sd-button span { |
| 202 |
margin-left: 3px; |
| 203 |
} |
| 204 |
.sd-content ul li.preview-item.no-icon a.sd-button span { |
| 205 |
margin-left: 0; |
| 206 |
} |
| 207 |
|
| 208 |
/* Text only */ |
| 209 |
.sd-social-text .sd-content ul li a:before, |
| 210 |
.sd-content ul li.no-icon a:before { |
| 211 |
display: none; |
| 212 |
} |
| 213 |
body .sd-social-text .sd-content ul li.share-custom a span, |
| 214 |
body .sd-content ul li.share-custom.no-icon a span { |
| 215 |
background-image: none; |
| 216 |
background-position: -500px -500px !important; /* hack to work around !important inline style */ |
| 217 |
background-repeat: no-repeat !important; |
| 218 |
padding-left: 0; |
| 219 |
height: 0; |
| 220 |
line-height: inherit; |
| 221 |
} |
| 222 |
|
| 223 |
.sd-social-icon .sd-content ul li a.share-more { |
| 224 |
position: relative; |
| 225 |
top: -4px; |
| 226 |
} |
| 227 |
@media screen and (-webkit-min-device-pixel-ratio:0) { |
| 228 |
.sd-social-icon .sd-content ul li a.share-more { |
| 229 |
top: 2px; |
| 230 |
} |
| 231 |
} |
| 232 |
/* Firefox specific hack to make the share more button look better on Firefox. */ |
| 233 |
@-moz-document url-prefix() { |
| 234 |
.sd-social-icon .sd-content ul li a.share-more { |
| 235 |
top: 2px; |
| 236 |
} |
| 237 |
} |
| 238 |
|
| 239 |
.sd-social-icon .sd-content ul li a.share-more span { |
| 240 |
margin-left: 3px; |
| 241 |
} |
| 242 |
|
| 243 |
|
| 244 |
/* Individual icons */ |
| 245 |
.sd-social-icon .sd-content ul li.share-print a:before, |
| 246 |
.sd-social-text .sd-content ul li.share-print a:before, |
| 247 |
.sd-content ul li.share-print div.option.option-smart-off a:before, |
| 248 |
.sd-social-icon-text .sd-content li.share-print a:before, |
| 249 |
.sd-social-official .sd-content li.share-print a:before { |
| 250 |
content: '\f469'; |
| 251 |
} |
| 252 |
|
| 253 |
.sd-social-icon .sd-content ul li.share-email a:before, |
| 254 |
.sd-social-text .sd-content ul li.share-email a:before, |
| 255 |
.sd-content ul li.share-email div.option.option-smart-off a:before, |
| 256 |
.sd-social-icon-text .sd-content li.share-email a:before, |
| 257 |
.sd-social-official .sd-content li.share-email a:before { |
| 258 |
content: '\f410'; |
| 259 |
} |
| 260 |
.sd-social-icon .sd-content ul li.share-linkedin a:before, |
| 261 |
.sd-social-text .sd-content ul li.share-linkedin a:before, |
| 262 |
.sd-content ul li.share-linkedin div.option.option-smart-off a:before, |
| 263 |
.sd-social-icon-text .sd-content li.share-linkedin a:before { |
| 264 |
content: '\f207'; |
| 265 |
} |
| 266 |
.sd-social-icon .sd-content ul li.share-twitter a:before, |
| 267 |
.sd-social-text .sd-content ul li.share-twitter a:before, |
| 268 |
.sd-content ul li.share-twitter div.option.option-smart-off a:before, |
| 269 |
.sd-social-icon-text .sd-content li.share-twitter a:before { |
| 270 |
content: '\f202'; |
| 271 |
} |
| 272 |
.sd-social-icon .sd-content ul li.share-reddit a:before, |
| 273 |
.sd-social-text .sd-content ul li.share-reddit a:before, |
| 274 |
.sd-content ul li.share-reddit div.option.option-smart-off a:before, |
| 275 |
.sd-social-icon-text .sd-content li.share-reddit a:before { |
| 276 |
content: '\f222'; |
| 277 |
} |
| 278 |
.sd-social-icon .sd-content ul li.share-tumblr a:before, |
| 279 |
.sd-social-text .sd-content ul li.share-tumblr a:before, |
| 280 |
.sd-content ul li.share-tumblr div.option.option-smart-off a:before, |
| 281 |
.sd-social-icon-text .sd-content li.share-tumblr a:before { |
| 282 |
content: '\f607'; |
| 283 |
} |
| 284 |
|
| 285 |
.sd-social-icon .sd-content ul li.share-pocket a:before, |
| 286 |
.sd-social-text .sd-content ul li.share-pocket a:before, |
| 287 |
.sd-content ul li.share-pocket div.option.option-smart-off a:before, |
| 288 |
.sd-social-icon-text .sd-content li.share-pocket a:before { |
| 289 |
content: '\f224'; |
| 290 |
} |
| 291 |
.sd-social-icon .sd-content ul li.share-pinterest a:before, |
| 292 |
.sd-social-text .sd-content ul li.share-pinterest a:before, |
| 293 |
.sd-content ul li.share-pinterest div.option.option-smart-off a:before, |
| 294 |
.sd-social-icon-text .sd-content li.share-pinterest a:before { |
| 295 |
content: '\f210'; |
| 296 |
} |
| 297 |
.sd-social-icon .sd-content ul li.share-facebook a:before, |
| 298 |
.sd-social-text .sd-content ul li.share-facebook a:before, |
| 299 |
.sd-content ul li.share-facebook div.option.option-smart-off a:before, |
| 300 |
.sd-social-icon-text .sd-content li.share-facebook a:before { |
| 301 |
content: '\f203'; |
| 302 |
} |
| 303 |
.sd-social-icon .sd-content ul li.share-press-this a:before, |
| 304 |
.sd-social-text .sd-content ul li.share-press-this a:before, |
| 305 |
.sd-content ul li.share-press-this div.option.option-smart-off a:before, |
| 306 |
.sd-social-icon-text .sd-content li.share-press-this a:before, |
| 307 |
.sd-social-official .sd-content li.share-press-this a:before { |
| 308 |
content: '\f205'; |
| 309 |
} |
| 310 |
.sd-social-official .sd-content li.share-press-this a:before { |
| 311 |
color: #2ba1cb; |
| 312 |
} |
| 313 |
.sd-social-icon .sd-content ul li.share-telegram a:before, |
| 314 |
.sd-social-text .sd-content ul li.share-telegram a:before, |
| 315 |
.sd-content ul li.share-telegram div.option.option-smart-off a:before, |
| 316 |
.sd-social-icon-text .sd-content li.share-telegram a:before, |
| 317 |
.sd-social-official .sd-content li.share-telegram a:before { |
| 318 |
content: '\f606'; |
| 319 |
} |
| 320 |
.sd-social-official .sd-content li.share-telegram a:before { |
| 321 |
color: #0088cc; |
| 322 |
} |
| 323 |
.sd-social-icon .sd-content ul li.share-skype a:before, |
| 324 |
.sd-social-text .sd-content ul li.share-skype a:before, |
| 325 |
.sd-content ul li.share-skype div.option.option-smart-off a:before, |
| 326 |
.sd-social-icon-text .sd-content li.share-skype a:before { |
| 327 |
content: '\f220'; |
| 328 |
} |
| 329 |
.sd-social-icon .sd-content ul a.share-more:before, |
| 330 |
.sd-social-text .sd-content ul a.share-more:before, |
| 331 |
.sd-content ul li.advanced a.share-more:before, |
| 332 |
.sd-social-icon-text .sd-content a.share-more:before, |
| 333 |
.sd-social-official .sd-content a.share-more:before { |
| 334 |
content: '\f415'; |
| 335 |
} |
| 336 |
.sd-social-official .sd-content a.share-more:before { |
| 337 |
color: #2ba1cb; |
| 338 |
} |
| 339 |
|
| 340 |
.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a:before, |
| 341 |
.sd-social-text .sd-content ul li.share-jetpack-whatsapp a:before, |
| 342 |
.sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a:before, |
| 343 |
.sd-social-icon-text .sd-content li.share-jetpack-whatsapp a:before, |
| 344 |
.sd-social-official .sd-content li.share-jetpack-whatsapp a:before { |
| 345 |
content: '\f608'; |
| 346 |
} |
| 347 |
.sd-social-official .sd-content li.share-jetpack-whatsapp a:before { |
| 348 |
color: #43d854; |
| 349 |
} |
| 350 |
.sd-social-icon .sd-content ul li[class*='share-'].share-jetpack-whatsapp a.sd-button { |
| 351 |
background: #43d854; |
| 352 |
color: #fff !important; |
| 353 |
} |
| 354 |
|
| 355 |
|
| 356 |
.sd-social-icon .sd-content ul li.share-deprecated a:before, |
| 357 |
.sd-social-icon-text .sd-content li.share-deprecated a:before, |
| 358 |
.sd-social-official .sd-content li.share-deprecated a:before, |
| 359 |
.sd-content ul li.share-deprecated div.option.option-smart-off a:before { |
| 360 |
width: 1em; |
| 361 |
height: 1em; |
| 362 |
content: "\1F6AB"; |
| 363 |
} |
| 364 |
|
| 365 |
/* Share count */ |
| 366 |
.sd-social .sd-button .share-count { |
| 367 |
background: #2ea2cc; |
| 368 |
color: #fff; |
| 369 |
-moz-border-radius: 10px; |
| 370 |
border-radius: 10px; |
| 371 |
display: inline-block; |
| 372 |
text-align: center; |
| 373 |
font-size: 10px; |
| 374 |
padding: 1px 3px; |
| 375 |
line-height: 1; |
| 376 |
} |
| 377 |
|
| 378 |
|
| 379 |
/* Official buttons */ |
| 380 |
.sd-social-official .sd-content ul, .sd-social-official .sd-content ul li { |
| 381 |
line-height: 25px !important; |
| 382 |
} |
| 383 |
|
| 384 |
.sd-social-official .sd-content>ul>li>a.sd-button span { |
| 385 |
line-height: 1; |
| 386 |
} |
| 387 |
|
| 388 |
.sd-social-official .sd-content ul:after { |
| 389 |
content: "."; |
| 390 |
display: block; |
| 391 |
height: 0; |
| 392 |
clear: both; |
| 393 |
visibility: hidden; |
| 394 |
} |
| 395 |
|
| 396 |
.sd-social-official .sd-content li.share-press-this a { |
| 397 |
margin: 0 0 5px 0; |
| 398 |
} |
| 399 |
|
| 400 |
.sd-social-official .sd-content ul>li { |
| 401 |
display: block; |
| 402 |
float: left; |
| 403 |
margin: 0 10px 5px 0 !important; |
| 404 |
height: 25px; |
| 405 |
} |
| 406 |
|
| 407 |
.sd-social-official .fb-share-button > span { |
| 408 |
vertical-align: top !important; |
| 409 |
} |
| 410 |
|
| 411 |
.sd-social-official .sd-content .pocket_button iframe { |
| 412 |
width: 98px; |
| 413 |
} |
| 414 |
|
| 415 |
|
| 416 |
/* Individual official buttons */ |
| 417 |
.reddit_button iframe { |
| 418 |
margin-top: 1px; |
| 419 |
} |
| 420 |
|
| 421 |
.pocket_button iframe, .pinterest_button, .twitter_button, .linkedin_button>span { |
| 422 |
margin: 0 !important; |
| 423 |
} |
| 424 |
|
| 425 |
.sd-social-official .sd-content .share-skype { |
| 426 |
width: 55px; |
| 427 |
} |
| 428 |
|
| 429 |
body .sd-social-official li.share-print , |
| 430 |
body .sd-social-official li.share-email a, |
| 431 |
body .sd-social-official li.share-custom a, |
| 432 |
body .sd-social-official li a.share-more, |
| 433 |
body .sd-social-official li.share-digg a, |
| 434 |
body .sd-social-official li.share-press-this a |
| 435 |
{ |
| 436 |
position: relative; |
| 437 |
top: 0; |
| 438 |
} |
| 439 |
|
| 440 |
|
| 441 |
/* Custom icons */ |
| 442 |
body .sd-social-icon .sd-content li.share-custom>a { |
| 443 |
padding: 2px 3px 0 3px; |
| 444 |
position: relative; |
| 445 |
top: 4px; |
| 446 |
} |
| 447 |
|
| 448 |
body .sd-social-icon .sd-content li.share-custom a span, |
| 449 |
body .sd-social-icon-text .sd-content li.share-custom a span, |
| 450 |
body .sd-social-text .sd-content li.share-custom a span, |
| 451 |
body .sd-social-official .sd-content li.share-custom a span, |
| 452 |
body .sd-content ul li.share-custom a.share-icon span |
| 453 |
{ |
| 454 |
background-size: 16px 16px; |
| 455 |
background-repeat: no-repeat; |
| 456 |
margin-left: 0; |
| 457 |
padding: 0 0 0 19px; |
| 458 |
display: inline-block; |
| 459 |
height: 21px; |
| 460 |
line-height: 16px; |
| 461 |
} |
| 462 |
|
| 463 |
body .sd-social-icon .sd-content li.share-custom a span { |
| 464 |
width: 0; |
| 465 |
} |
| 466 |
|
| 467 |
body .sd-social-icon .sd-content li.share-custom a span { |
| 468 |
padding-left: 16px !important; |
| 469 |
} |
| 470 |
|
| 471 |
|
| 472 |
/* Overflow Sharing dialog */ |
| 473 |
.sharing-hidden .inner { |
| 474 |
position: absolute; |
| 475 |
z-index: 2; |
| 476 |
border: 1px solid #ccc; |
| 477 |
padding: 10px; |
| 478 |
background: #fff; |
| 479 |
box-shadow: 0px 5px 20px rgba(0,0,0,.2); |
| 480 |
-webkit-border-radius: 2px; |
| 481 |
-moz-border-radius: 2px; |
| 482 |
border-radius: 2px; |
| 483 |
margin-top: 5px; |
| 484 |
max-width: 400px; |
| 485 |
} |
| 486 |
|
| 487 |
.sharing-hidden .inner ul{ |
| 488 |
margin: 0 !important; |
| 489 |
} |
| 490 |
|
| 491 |
.sd-social-official .sd-content .sharing-hidden ul>li.share-end { |
| 492 |
clear: both; |
| 493 |
margin: 0 !important; |
| 494 |
height: 0 !important; |
| 495 |
} |
| 496 |
|
| 497 |
.sharing-hidden .inner:before, .sharing-hidden .inner:after { |
| 498 |
position: absolute; |
| 499 |
z-index: 1; |
| 500 |
top: -8px; |
| 501 |
left: 20px; |
| 502 |
width: 0; |
| 503 |
height: 0; |
| 504 |
border-left: 6px solid transparent; |
| 505 |
border-right: 6px solid transparent; |
| 506 |
border-bottom: 8px solid #ccc; |
| 507 |
content: ""; |
| 508 |
display: block; |
| 509 |
} |
| 510 |
|
| 511 |
.sharing-hidden .inner:after { |
| 512 |
z-index: 2; |
| 513 |
top: -7px; |
| 514 |
border-left: 6px solid transparent; |
| 515 |
border-right: 6px solid transparent; |
| 516 |
border-bottom: 8px solid #fff; |
| 517 |
} |
| 518 |
|
| 519 |
.sharing-hidden ul { |
| 520 |
margin: 0; |
| 521 |
} |
| 522 |
|
| 523 |
|
| 524 |
/** |
| 525 |
* Special colorful look for "Icon Only" option |
| 526 |
*/ |
| 527 |
|
| 528 |
.sd-social-icon .sd-content ul li[class*='share-'] a, |
| 529 |
.sd-social-icon .sd-content ul li[class*='share-'] a:hover, |
| 530 |
.sd-social-icon .sd-content ul li[class*='share-'] div.option a { |
| 531 |
border-radius: 50%; |
| 532 |
-webkit-border-radius: 50%; |
| 533 |
border: 0; |
| 534 |
box-shadow: none; |
| 535 |
padding: 7px; |
| 536 |
position: relative; |
| 537 |
top: -2px; |
| 538 |
line-height: 1; |
| 539 |
width: auto; |
| 540 |
height: auto; |
| 541 |
margin-bottom: 0; |
| 542 |
} |
| 543 |
|
| 544 |
.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button>span, |
| 545 |
.sd-social-icon .sd-content ul li[class*='share-'] div.option a span { |
| 546 |
line-height: 1; |
| 547 |
} |
| 548 |
|
| 549 |
.sd-social-icon .sd-content ul li[class*='share-'] a:hover, |
| 550 |
.sd-social-icon .sd-content ul li[class*='share-'] div.option a:hover { |
| 551 |
border: none; |
| 552 |
opacity: .6; |
| 553 |
} |
| 554 |
|
| 555 |
|
| 556 |
|
| 557 |
.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button:before { |
| 558 |
top: 1px; |
| 559 |
top: 0px\9; /* IE8 and below */ |
| 560 |
} |
| 561 |
|
| 562 |
.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button.share-custom { |
| 563 |
padding: 8px 8px 6px 8px; |
| 564 |
top: 5px; |
| 565 |
} |
| 566 |
|
| 567 |
.sd-social-icon .sd-content ul li a.sd-button.share-more { |
| 568 |
margin-left: 10px; |
| 569 |
} |
| 570 |
|
| 571 |
.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more { |
| 572 |
margin-left: 0; |
| 573 |
} |
| 574 |
|
| 575 |
|
| 576 |
.sd-social-icon .sd-button span.share-count { |
| 577 |
position: absolute; |
| 578 |
bottom: 0; |
| 579 |
right: 0; |
| 580 |
border-radius: 0; |
| 581 |
background: #555; |
| 582 |
font-size: 9px; |
| 583 |
} |
| 584 |
|
| 585 |
/* Special look colors */ |
| 586 |
.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button { |
| 587 |
background: #e9e9e9; |
| 588 |
margin-top: 2px; |
| 589 |
text-indent: 0; |
| 590 |
} |
| 591 |
|
| 592 |
.sd-social-icon .sd-content ul li[class*='share-'].share-tumblr a.sd-button { |
| 593 |
background: #2c4762; |
| 594 |
color: #fff !important; |
| 595 |
} |
| 596 |
|
| 597 |
.sd-social-icon .sd-content ul li[class*='share-'].share-facebook a.sd-button { |
| 598 |
background: #3b5998; |
| 599 |
color: #fff !important; |
| 600 |
} |
| 601 |
|
| 602 |
.sd-social-icon .sd-content ul li[class*='share-'].share-twitter a.sd-button { |
| 603 |
background: #00acee; |
| 604 |
color: #fff !important; |
| 605 |
} |
| 606 |
|
| 607 |
.sd-social-icon .sd-content ul li[class*='share-'].share-pinterest a.sd-button { |
| 608 |
background: #ca1f27; |
| 609 |
color: #fff !important; |
| 610 |
} |
| 611 |
|
| 612 |
.sd-social-icon .sd-content ul li[class*='share-'].share-digg a.sd-button { |
| 613 |
color: #555555 !important; |
| 614 |
} |
| 615 |
|
| 616 |
.sd-social-icon .sd-content ul li[class*='share-'].share-press-this a.sd-button { |
| 617 |
background: #1e8cbe; |
| 618 |
color: #fff !important; |
| 619 |
} |
| 620 |
|
| 621 |
.sd-social-icon .sd-content ul li[class*='share-'].share-telegram a.sd-button { |
| 622 |
background: #0088cc; |
| 623 |
color: #fff !important; |
| 624 |
} |
| 625 |
|
| 626 |
.sd-social-icon .sd-content ul li[class*='share-'].share-linkedin a.sd-button { |
| 627 |
background: #0077b5; |
| 628 |
color: #fff !important; |
| 629 |
} |
| 630 |
|
| 631 |
.sd-social-icon .sd-content ul li[class*='share-'].share-pocket a.sd-button { |
| 632 |
background: #ee4056; |
| 633 |
color: #fff !important; |
| 634 |
} |
| 635 |
|
| 636 |
.sd-social-icon .sd-content ul li[class*='share-'].share-reddit a.sd-button { |
| 637 |
background: #cee3f8; |
| 638 |
color: #555555 !important; |
| 639 |
} |
| 640 |
|
| 641 |
.sd-social-icon .sd-content ul li[class*='share-'].share-skype a.sd-button { |
| 642 |
background: #00AFF0; |
| 643 |
color: #fff !important; |
| 644 |
} |
| 645 |
|
| 646 |
/** |
| 647 |
* Screen Reader Text for "Icon Only" option |
| 648 |
*/ |
| 649 |
|
| 650 |
.sharing-screen-reader-text { |
| 651 |
clip: rect(1px, 1px, 1px, 1px); |
| 652 |
position: absolute !important; |
| 653 |
height: 1px; |
| 654 |
width: 1px; |
| 655 |
overflow: hidden; |
| 656 |
} |
| 657 |
|
| 658 |
.sharing-screen-reader-text:hover, |
| 659 |
.sharing-screen-reader-text:active, |
| 660 |
.sharing-screen-reader-text:focus { |
| 661 |
background-color: #f1f1f1; |
| 662 |
border-radius: 3px; |
| 663 |
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); |
| 664 |
clip: auto !important; |
| 665 |
color: #21759b; |
| 666 |
display: block; |
| 667 |
font-size: 14px; |
| 668 |
font-weight: bold; |
| 669 |
height: auto; |
| 670 |
left: 5px; |
| 671 |
line-height: normal; |
| 672 |
padding: 15px 23px 14px; |
| 673 |
text-decoration: none; |
| 674 |
top: 5px; |
| 675 |
width: auto; |
| 676 |
z-index: 100000; /* Above WP toolbar */ |
| 677 |
} |
| 678 |
|
| 679 |
|
| 680 |
/** |
| 681 |
* Sharing Email Dialog |
| 682 |
*/ |
| 683 |
|
| 684 |
#sharing_email { |
| 685 |
width: 342px; |
| 686 |
position: absolute; |
| 687 |
z-index: 1001; |
| 688 |
border: 1px solid #ccc; |
| 689 |
padding: 15px; |
| 690 |
background: #fff; |
| 691 |
box-shadow: 0px 5px 20px rgba(0,0,0,.2); |
| 692 |
text-align: left; |
| 693 |
} |
| 694 |
|
| 695 |
div.sharedaddy.sharedaddy-dark #sharing_email { |
| 696 |
border-color: #fff; |
| 697 |
} |
| 698 |
|
| 699 |
#sharing_email .errors { |
| 700 |
color: #fff; |
| 701 |
background-color: #771a09; |
| 702 |
font-size: 12px; |
| 703 |
padding: 5px 8px; |
| 704 |
line-height: 1; |
| 705 |
margin: 10px 0 0 0; |
| 706 |
} |
| 707 |
|
| 708 |
#sharing_email label { |
| 709 |
font-size: 12px; |
| 710 |
color: #333; |
| 711 |
font-weight: bold; |
| 712 |
display: block; |
| 713 |
padding: 0 0 4px 0; |
| 714 |
text-align: left; |
| 715 |
text-shadow: none; |
| 716 |
} |
| 717 |
|
| 718 |
#sharing_email form { |
| 719 |
margin: 0; |
| 720 |
} |
| 721 |
|
| 722 |
#sharing_email input[type="text"], #sharing_email input[type="email"] { |
| 723 |
width: 100%; |
| 724 |
box-sizing: border-box; |
| 725 |
-moz-box-sizing:border-box; |
| 726 |
-webkit-box-sizing:border-box; |
| 727 |
border: 1px solid #ccc; |
| 728 |
margin-bottom: 1em; |
| 729 |
background: #fff; |
| 730 |
font-size: 12px; |
| 731 |
color: #333; |
| 732 |
max-width: none; |
| 733 |
padding: 1px 3px; |
| 734 |
} |
| 735 |
#jetpack-source_f_name { |
| 736 |
display: none!important; |
| 737 |
position: absolute !important; |
| 738 |
left: -9000px; |
| 739 |
} |
| 740 |
|
| 741 |
#sharing_email .sharing_cancel { |
| 742 |
padding: 0 0 0 1em; |
| 743 |
font-size: 12px; |
| 744 |
text-shadow: none; |
| 745 |
} |
| 746 |
|
| 747 |
#sharing_email .recaptcha { |
| 748 |
width: 312px; |
| 749 |
height: 123px; |
| 750 |
margin: 0 0 1em 0; |
| 751 |
} |
| 752 |
|
| 753 |
|