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