images
2 years ago
services
2 years ago
admin-sharing-rtl.css
2 years ago
admin-sharing-rtl.min.css
2 years ago
admin-sharing.css
2 years ago
admin-sharing.js
2 years ago
admin-sharing.min.css
2 years ago
amp-sharing.css
2 years ago
recaptcha.php
4 years ago
sharedaddy.php
2 years ago
sharing-service.php
2 years ago
sharing-sources.php
2 years ago
sharing.css
2 years ago
sharing.js
3 years ago
sharing.php
2 years ago
admin-sharing-rtl.css
480 lines
| 1 | /** |
| 2 | * Sharedaddy Admin Styles |
| 3 | */ |
| 4 | #services-config { |
| 5 | min-width: 700px; |
| 6 | width: 100%; |
| 7 | float: right; |
| 8 | } |
| 9 | |
| 10 | #services-config h3 { |
| 11 | font-weight: normal; |
| 12 | font-size: 15px; |
| 13 | margin: 0; |
| 14 | padding: 8px 10px; |
| 15 | overflow: hidden; |
| 16 | white-space: nowrap; |
| 17 | color: #464646; |
| 18 | } |
| 19 | |
| 20 | #available-services, #enabled-services, #live-preview { |
| 21 | padding: 0; |
| 22 | width: 100%; |
| 23 | padding-top: 20px; |
| 24 | border-spacing: 0; |
| 25 | } |
| 26 | |
| 27 | #enabled-services .ui-sortable { |
| 28 | min-height: 50px; |
| 29 | } |
| 30 | |
| 31 | #enabled-services { |
| 32 | padding-bottom: 20px; |
| 33 | } |
| 34 | |
| 35 | #available-services, #enabled-services { |
| 36 | border-bottom: 2px solid #cccccc; |
| 37 | } |
| 38 | |
| 39 | #live-preview { |
| 40 | border-bottom: 1px solid #dcdcde; |
| 41 | padding-bottom: 60px; |
| 42 | } |
| 43 | |
| 44 | #available-services h3, #enabled-services h3, #live-preview h3 { |
| 45 | padding: 0px; |
| 46 | margin-top: 0px; |
| 47 | margin-bottom: 1em; |
| 48 | } |
| 49 | |
| 50 | body.settings_page_sharing .description { |
| 51 | width: 180px; |
| 52 | vertical-align: top; |
| 53 | } |
| 54 | |
| 55 | body.settings_page_sharing .description p { |
| 56 | font-size: 13px; |
| 57 | font-style: italic; |
| 58 | } |
| 59 | |
| 60 | body.settings_page_sharing .services { |
| 61 | padding: 0px 20px; |
| 62 | vertical-align: top; |
| 63 | } |
| 64 | |
| 65 | body.settings_page_sharing .services ul li { |
| 66 | cursor: move; |
| 67 | } |
| 68 | |
| 69 | body.settings_page_sharing .services ul li.divider { |
| 70 | border: none; |
| 71 | padding: 0; |
| 72 | background: none; |
| 73 | cursor: default; |
| 74 | } |
| 75 | |
| 76 | body.settings_page_sharing ul.services-hidden { |
| 77 | margin-bottom: 0; |
| 78 | } |
| 79 | |
| 80 | /* Generic style */ |
| 81 | #available-services .service, #enabled-services .service { |
| 82 | color: #2C3338 !important; |
| 83 | display: inline-block; |
| 84 | font-family: "Open Sans", sans-serif; |
| 85 | font-size: 13px; |
| 86 | font-weight: 500; |
| 87 | line-height: 23px; |
| 88 | margin: 0 0 8px 8px; |
| 89 | padding: 3px 9px 4px 11px; |
| 90 | border-radius: 4px; |
| 91 | background: #fff; |
| 92 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.12); |
| 93 | } |
| 94 | |
| 95 | #available-services .service .options-left, #enabled-services .service .options-left { |
| 96 | align-items: center; |
| 97 | display: flex; |
| 98 | } |
| 99 | |
| 100 | #available-services .service:hover, #enabled-services .service:hover { |
| 101 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.22); |
| 102 | } |
| 103 | |
| 104 | #available-services .service.share-deprecated, |
| 105 | #enabled-services .service.share-deprecated { |
| 106 | opacity: 0.5; |
| 107 | padding: 5px; |
| 108 | text-decoration: line-through; |
| 109 | } |
| 110 | |
| 111 | #available-services .service.share-deprecated { |
| 112 | display: none; |
| 113 | } |
| 114 | |
| 115 | /* Generic style icons */ |
| 116 | li.service span:before { |
| 117 | -webkit-font-smoothing: antialiased; |
| 118 | font: normal 18px/1 "social-logos"; |
| 119 | position: relative; |
| 120 | top: -1px; |
| 121 | margin-left: 6px; |
| 122 | width: 16px; |
| 123 | height: 16px; |
| 124 | } |
| 125 | |
| 126 | li.service.share-print span:before { |
| 127 | content: "\f469"; |
| 128 | } |
| 129 | |
| 130 | li.service.share-digg span:before { |
| 131 | content: "\f221"; |
| 132 | } |
| 133 | |
| 134 | li.service.share-email span:before { |
| 135 | content: "\f410"; |
| 136 | } |
| 137 | |
| 138 | li.service.share-linkedin span:before { |
| 139 | content: "\f207"; |
| 140 | } |
| 141 | |
| 142 | li.service.share-twitter span:before { |
| 143 | content: "\f202"; |
| 144 | } |
| 145 | |
| 146 | li.service.share-reddit span:before { |
| 147 | content: "\f222"; |
| 148 | } |
| 149 | |
| 150 | li.service.share-tumblr span:before { |
| 151 | content: "\f214"; |
| 152 | } |
| 153 | |
| 154 | li.service.share-pocket span:before { |
| 155 | content: "\f224"; |
| 156 | } |
| 157 | |
| 158 | li.service.share-pinterest span:before { |
| 159 | content: "\f209"; |
| 160 | } |
| 161 | |
| 162 | li.service.share-facebook span:before { |
| 163 | content: "\f203"; |
| 164 | } |
| 165 | |
| 166 | li.service.share-press-this span:before { /* Fixme: remove this button in favor of reblog */ |
| 167 | content: "\f205"; |
| 168 | } |
| 169 | |
| 170 | li.service.share-telegram span:before { |
| 171 | content: "\f606"; |
| 172 | } |
| 173 | |
| 174 | li.service.share-threads span:before { |
| 175 | content: "\f10d"; |
| 176 | } |
| 177 | |
| 178 | li.service.share-jetpack-whatsapp span:before { |
| 179 | content: "\f608"; |
| 180 | } |
| 181 | |
| 182 | li.service.share-mastodon span:before { |
| 183 | content: "\f10a"; |
| 184 | } |
| 185 | |
| 186 | li.service.share-nextdoor span:before { |
| 187 | content: "\f10c"; |
| 188 | } |
| 189 | |
| 190 | li.service.share-x span:before { |
| 191 | content: "\f10e"; |
| 192 | } |
| 193 | |
| 194 | li.service.share-bluesky span:before { |
| 195 | content: "\f10f"; |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Preview section |
| 200 | */ |
| 201 | body.settings_page_sharing ul.preview { |
| 202 | display: flex; |
| 203 | flex-wrap: wrap; |
| 204 | float: right; |
| 205 | } |
| 206 | |
| 207 | body.settings_page_sharing ul.preview li.preview-item, body.settings_page_sharing ul.preview li.preview-item a { |
| 208 | cursor: default; |
| 209 | text-decoration: none; |
| 210 | } |
| 211 | |
| 212 | div.sd-social-icon ul.preview li.preview-item a span, |
| 213 | div.sd-social-icon .inner li.preview-item a span { |
| 214 | display: none; |
| 215 | } |
| 216 | |
| 217 | div.sd-social-icon ul.preview li.preview-item.preview-custom a span { |
| 218 | display: inline-block; |
| 219 | } |
| 220 | |
| 221 | .services .preview li.share-custom a { |
| 222 | text-decoration: none; |
| 223 | } |
| 224 | |
| 225 | .services ul li.end-fix { |
| 226 | clear: both; |
| 227 | float: none; |
| 228 | visibility: hidden; |
| 229 | padding: 0; |
| 230 | margin: 0; |
| 231 | height: 20px; |
| 232 | width: 0; |
| 233 | } |
| 234 | |
| 235 | #enabled-services h2 { |
| 236 | font-size: 20px; |
| 237 | padding-top: 0px; |
| 238 | font-weight: normal !important; |
| 239 | color: #999; |
| 240 | } |
| 241 | |
| 242 | body.settings_page_sharing #live-preview h2 { |
| 243 | font-size: 20px; |
| 244 | font-weight: normal !important; |
| 245 | color: #e3e3e3; |
| 246 | } |
| 247 | |
| 248 | body.settings_page_sharing .clearing { |
| 249 | clear: both; |
| 250 | } |
| 251 | |
| 252 | body.settings_page_sharing .options .options-left { |
| 253 | float: right; |
| 254 | } |
| 255 | |
| 256 | body.settings_page_sharing .input label { |
| 257 | font-size: 11px; |
| 258 | line-height: 16px; |
| 259 | } |
| 260 | |
| 261 | body.settings_page_sharing .advanced-form { |
| 262 | padding: 10px 10px 8px 14px; |
| 263 | margin-right: -24px; |
| 264 | display: none; |
| 265 | border-top: 1px #e3e3e3 solid; |
| 266 | margin-top: 4px; |
| 267 | } |
| 268 | |
| 269 | body.settings_page_sharing .utility { |
| 270 | float: left; |
| 271 | padding-top: 10px; |
| 272 | padding-left: 10px; |
| 273 | font-size: 10px; |
| 274 | } |
| 275 | |
| 276 | body.settings_page_sharing .advanced input[type=submit] { |
| 277 | float: right; |
| 278 | margin-top: 10px; |
| 279 | margin-left: 10px; |
| 280 | } |
| 281 | |
| 282 | .services li.dropzone { |
| 283 | border: 1px dashed #999; |
| 284 | border-radius: 3px; |
| 285 | background: #e3e3e3; |
| 286 | margin-left: 10px; |
| 287 | padding: 5px; |
| 288 | height: 18px; |
| 289 | } |
| 290 | |
| 291 | .advanced-form .form-table th { |
| 292 | width: auto !important; |
| 293 | } |
| 294 | |
| 295 | .advanced-form .button-secondary { |
| 296 | margin-top: 0 !important; |
| 297 | } |
| 298 | |
| 299 | #hidden-drop-target { |
| 300 | background: #e1e1e1; |
| 301 | border: 1px solid #cdcdcd; |
| 302 | width: 29%; |
| 303 | padding: 10px; |
| 304 | vertical-align: top; |
| 305 | } |
| 306 | |
| 307 | #hidden-drop-target p { |
| 308 | font-size: 13px; |
| 309 | font-style: italic; |
| 310 | margin: 0 0 10px 0; |
| 311 | } |
| 312 | |
| 313 | /* Official button previews */ |
| 314 | .preview li.preview-item { |
| 315 | background-position: 0px 5px; |
| 316 | cursor: default; |
| 317 | } |
| 318 | |
| 319 | .preview .option-smart-on { |
| 320 | margin: 3px 0 0 5px; |
| 321 | } |
| 322 | |
| 323 | .preview-digg .option-smart-on { |
| 324 | background: url(../../modules/sharedaddy/images/smart-digg.png) no-repeat top right; |
| 325 | background-size: 76px 17px; |
| 326 | width: 76px; |
| 327 | height: 17px; |
| 328 | margin-top: 2px; |
| 329 | } |
| 330 | |
| 331 | .preview-facebook .option-smart-on { |
| 332 | background: url(../../modules/sharedaddy/images/smart-like.png) no-repeat top right; |
| 333 | background-size: 85px 20px; |
| 334 | width: 85px; |
| 335 | height: 20px; |
| 336 | margin-right: -4px; |
| 337 | } |
| 338 | |
| 339 | .preview-twitter .option-smart-on, |
| 340 | .preview-x .option-smart-on { |
| 341 | background: url(../../modules/sharedaddy/images/smart-x.png) no-repeat top right; |
| 342 | background-size: 60px 20px; |
| 343 | width: 60px; |
| 344 | height: 20px; |
| 345 | } |
| 346 | |
| 347 | .preview-linkedin .option-smart-on { |
| 348 | background: url(../../modules/sharedaddy/images/linkedin-smart.png) no-repeat top center; |
| 349 | background-size: 99px 18px; |
| 350 | width: 99px; |
| 351 | height: 20px; |
| 352 | } |
| 353 | |
| 354 | .preview-tumblr .option-smart-on { |
| 355 | background: url(../../modules/sharedaddy/images/smart-tumblr.png) no-repeat top right; |
| 356 | background-size: 62px 20px; |
| 357 | width: 62px; |
| 358 | height: 20px; |
| 359 | } |
| 360 | |
| 361 | .preview-pinterest .option-smart-on { |
| 362 | background: url(../../modules/sharedaddy/images/smart-pinterest.png) no-repeat top right; |
| 363 | background-size: 39px 20px; |
| 364 | width: 39px; |
| 365 | height: 20px; |
| 366 | } |
| 367 | |
| 368 | .preview-pocket .option-smart-on { |
| 369 | background: url(../../modules/sharedaddy/images/smart-pocket.png) no-repeat top right; |
| 370 | background-size: 60px 20px; |
| 371 | width: 60px; |
| 372 | height: 20px; |
| 373 | } |
| 374 | |
| 375 | .preview-item.share-deprecated { |
| 376 | opacity: 0.5; |
| 377 | } |
| 378 | |
| 379 | .preview-item.share-deprecated a span { |
| 380 | text-decoration: line-through; |
| 381 | } |
| 382 | |
| 383 | @media (min-resolution: 120dpi) { |
| 384 | .preview-digg .option-smart-on { |
| 385 | background-image: url(../../modules/sharedaddy/images/smart-digg@2x.png); |
| 386 | } |
| 387 | .preview-facebook .option-smart-on { |
| 388 | background-image: url(../../modules/sharedaddy/images/smart-like@2x.png); |
| 389 | } |
| 390 | .preview-twitter .option-smart-on, |
| 391 | .preview-x .option-smart-on { |
| 392 | background-image: url(../../modules/sharedaddy/images/smart-x@2x.png); |
| 393 | } |
| 394 | .preview-linkedin .option-smart-on { |
| 395 | background-image: url(../../modules/sharedaddy/images/linkedin-smart@2x.png); |
| 396 | } |
| 397 | .preview-tumblr .option-smart-on { |
| 398 | background-image: url(../../modules/sharedaddy/images/smart-tumblr@2x.png); |
| 399 | } |
| 400 | .preview-pinterest .option-smart-on { |
| 401 | background-image: url(../../modules/sharedaddy/images/smart-pinterest@2x.png); |
| 402 | } |
| 403 | .preview-pocket .option-smart-on { |
| 404 | background-image: url(../../modules/sharedaddy/images/smart-pocket@2x.png); |
| 405 | } |
| 406 | } |
| 407 | /** |
| 408 | * Overflow sharing dialog |
| 409 | */ |
| 410 | .services .sharing-hidden li { |
| 411 | background-color: transparent; |
| 412 | } |
| 413 | |
| 414 | .sharing-hidden li.share-end { |
| 415 | clear: both; |
| 416 | height: 0; |
| 417 | padding: 0px !important; |
| 418 | margin: 0px !important; |
| 419 | width: 0; |
| 420 | visibility: hidden; |
| 421 | float: none; |
| 422 | } |
| 423 | |
| 424 | .preview .sharing-label { |
| 425 | font-weight: bold; |
| 426 | border: 0; |
| 427 | padding: 4px 0 0 6px; |
| 428 | } |
| 429 | |
| 430 | #services-config a.remove { |
| 431 | background: #dcdcde; |
| 432 | color: #fff; |
| 433 | padding: 0px 4px 2px; |
| 434 | border-radius: 15px; |
| 435 | -moz-border-radius: 15px; |
| 436 | -webkit-border-radius: 15px; |
| 437 | text-decoration: none; |
| 438 | font-weight: bold; |
| 439 | font-size: 10px; |
| 440 | } |
| 441 | |
| 442 | #services-config a.remove:hover { |
| 443 | background: #f00; |
| 444 | } |
| 445 | |
| 446 | .sd-social-icon .inner a.sd-button span, |
| 447 | .sd-social-icon .inner a.share-icon span { |
| 448 | display: inline-block; |
| 449 | overflow: hidden; |
| 450 | width: 0; |
| 451 | text-indent: 100%; |
| 452 | } |
| 453 | |
| 454 | .sharing-block-message__items-wrapper { |
| 455 | display: flex; |
| 456 | flex-wrap: wrap; |
| 457 | column-gap: 6rem; |
| 458 | } |
| 459 | |
| 460 | .sharing-block-message__buttons-wrapper .button { |
| 461 | margin-left: 1rem; |
| 462 | } |
| 463 | |
| 464 | .sharing-block-message__buttons-wrapper .button-primary:visited { |
| 465 | color: #fff; |
| 466 | } |
| 467 | |
| 468 | .admin-sharing-settings__block-theme-description { |
| 469 | margin-top: 1rem; |
| 470 | font-style: italic; |
| 471 | } |
| 472 | |
| 473 | a.dops-card__link { |
| 474 | cursor: pointer; |
| 475 | } |
| 476 | |
| 477 | .settings-sharing__block-theme-description { |
| 478 | font-style: italic; |
| 479 | } |
| 480 |