summaryrefslogtreecommitdiff
blob: a0f428afdca67b575eaf6ef81fc80529e4b3610f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
/**
 * Sharedaddy Admin Styles
 */

#services-config {
	min-width: 700px;
	width: 100%;
	float: right;
}

#services-config h3 {
	font-weight: normal;
	font-size: 15px;
	margin: 0;
	padding: 8px 10px;
	overflow: hidden;
	white-space: nowrap;
	color: #464646;
}

#available-services, #enabled-services, #live-preview {
	padding: 0;
	width: 100%;
	padding-top: 20px;
	border-spacing: 0;
}

#enabled-services .ui-sortable {
	min-height: 50px;
}

#enabled-services {
	padding-bottom: 20px;
}

#available-services, #enabled-services {
	border-bottom: 2px solid #cccccc;
}

#live-preview {
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 60px;
}

#available-services h3, #enabled-services h3, #live-preview h3 {
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 1em;
}

body.settings_page_sharing .description {
	width: 180px;
	vertical-align: top;
}

body.settings_page_sharing .description p {
	font-size: 13px;
	font-style: italic;
}

body.settings_page_sharing .services {
	padding: 0px 20px;
	vertical-align: top;
}

body.settings_page_sharing .services ul li {
	float: right;
	cursor: move;
}

body.settings_page_sharing .services ul li.divider {
	border: none;
	padding: 0;
	background: none;
	cursor: default;
}

body.settings_page_sharing ul.services-hidden {
	margin-bottom: 0;
}

/* Generic style */
#available-services .service, #enabled-services .service {
	margin-left: 10px;
	padding: 5px 5px 5px 10px;
	border-radius: 3px;
	border: 1px solid #bbb;
	background: #f8f8f8;
	background-repeat: no-repeat;
	background-position: center center;
}

#available-services .service:hover, #enabled-services .service:hover {
	background: #fff;
	border: 1px solid #bbb;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Generic style icons */
li.service span:before {
	color: #555;
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	font: normal 18px/1 'social-logos';
	vertical-align: top;
	position: relative;
	top: 1px;
	margin-left: 3px;
	width: 16px;
	height: 16px;
	text-align: center;
}
li.service.share-print span:before {
	content: '\f469';
}
li.service.share-digg span:before {
	content: '\f221';
}
li.service.share-email span:before {
	content: '\f410';
}
li.service.share-linkedin span:before {
	content: '\f207';
}
li.service.share-twitter span:before {
	content: '\f202';
}
li.service.share-reddit span:before {
	content: '\f222';
}
li.service.share-tumblr span:before {
	content: '\f214';
}
li.service.share-pocket span:before {
	content: '\f224';
}
li.service.share-pinterest span:before {
	content: '\f209';
}
li.service.share-google-plus-1 span:before {
	content: '\f218';
}
li.service.share-facebook span:before {
	content: '\f203';
}
li.service.share-press-this span:before {	/* Fixme: remove this button in favor of reblog */
	content: '\f205';
}
li.service.share-telegram span:before {
	content: '\f606';
}
li.service.share-jetpack-whatsapp span:before {
	content: '\f608';
}
li.service.share-skype span:before {
	content: '\f220';
}

/**
 * Preview section
 */

body.settings_page_sharing ul.preview {
	float: right;
	margin: 0px;
}

body.settings_page_sharing ul.preview li.preview-item, body.settings_page_sharing ul.preview li.preview-item a {
	cursor: default;
	text-decoration: none;
}

div.sd-social-icon ul.preview li.preview-item a span,
div.sd-social-icon .inner li.preview-item a span {
	display: none;
}

div.sd-social-icon ul.preview li.preview-item.preview-custom a span {
	display: inline-block;

}

.services .preview li.share-custom a {
	text-decoration: none;
}

.services ul li.end-fix {
	clear:both;
	float:none;
	visibility:hidden;
	padding:0;
	margin:0;
	height:20px;
	width:0;
}

#enabled-services h2{
	font-size:20px;
	padding-top:0px;
	font-weight: normal !important;
	color: #999;
}

body.settings_page_sharing #live-preview h2 {
	font-size:20px;
	font-weight: normal !important;
	color: #e3e3e3;
}

body.settings_page_sharing .clearing {
	clear: both;
}

body.settings_page_sharing .options .options-left {
	float: right;
}

body.settings_page_sharing .input label {
	font-size: 11px;
	line-height: 16px;
}

body.settings_page_sharing .advanced-form {
	padding: 10px 10px 8px 14px;
	margin-right: -24px;
	display: none;
	border-top: 1px #e3e3e3 solid;
	margin-top:4px;
}

body.settings_page_sharing .utility {
	float: left;
	padding-top:10px;
	padding-left: 10px;
	font-size: 10px;
}

body.settings_page_sharing .advanced input[type=submit] {
	float: right;
	margin-top:10px;
	margin-left: 10px;
}

.services li.dropzone {
	border: 1px dashed #999;
	border-radius: 3px;
	background: #e3e3e3;
	margin-left: 10px;
	padding: 5px;
	height: 18px;
}

.advanced-form .form-table th {
	width: auto !important;
}

.advanced-form .button-secondary {
	margin-top: 0 !important;
}

#hidden-drop-target {
	background: #e1e1e1;
	border: 1px solid #cdcdcd;
	width: 29%;
	padding: 10px;
	vertical-align: top;
}

#hidden-drop-target p {
	font-size: 13px;
	font-style: italic;
	margin: 0 0 10px 0;
}


/* Official button previews */
.preview li.preview-item {
	background-position: 0px 5px;
	cursor: default;
}

.preview .option-smart-on {
	margin: 3px 0 0 5px;
}

.preview-digg .option-smart-on {
	background: url(images/smart-digg.png) no-repeat top right;
	background-size: 76px 17px;
	width:76px;
	height:17px;
	margin-top: 2px;
}

.preview-reddit .option-smart-on {
	background: url(images/smart-reddit.png) no-repeat top right;
	background-size: 104px 21px;
	width:104px;
	height:21px;
}

.preview-facebook .option-smart-on {
	background: url(images/smart-like.png) no-repeat top right;
	background-size: 85px 20px;
	width:85px;
	height:20px;
}

.preview-twitter .option-smart-on {
	background: url(images/smart-twitter.png?1) no-repeat top right;
	background-size: 60px 20px;
	width:60px;
	height:20px;
}

.preview-linkedin .option-smart-on {
	background: url(images/linkedin-smart.png) no-repeat top center;
	background-size: 99px 18px;
	width:99px;
	height:20px;
}

.preview-google-plus-1 .option-smart-on {
	background: url(images/smart-googleplus1.png) no-repeat top right;
	background-size: 96px 20px;
	width: 96px;
	height: 20px;
}

.preview-tumblr .option-smart-on {
	background: url(images/smart-tumblr.png) no-repeat top right;
	background-size: 62px 20px;
	width: 62px;
	height: 20px;
}

.preview-pinterest .option-smart-on {
	background: url(images/smart-pinterest.png) no-repeat top right;
	background-size: 39px 20px;
	width: 39px;
	height: 20px;
}

.preview-pocket .option-smart-on {
	background: url(images/smart-pocket.png) no-repeat top right;
	background-size: 60px 20px;
	width: 60px;
	height: 20px;
}

.preview-skype .option-smart-on {
	background: url(images/smart-skype.png) no-repeat top right;
	background-size: 60px 20px;
	width: 60px;
	height: 20px;
}
@media
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
	.preview-digg .option-smart-on {
		background-image: url(images/smart-digg@2x.png);
	}

	.preview-reddit .option-smart-on {
		background-image: url(images/smart-reddit@2x.png);
	}

	.preview-facebook .option-smart-on {
		background-image: url(images/smart-like@2x.png);
	}

	.preview-twitter .option-smart-on {
		background-image: url(images/smart-twitter@2x.png?1);
	}

	.preview-linkedin .option-smart-on {
		background-image: url(images/linkedin-smart@2x.png);
	}

	.preview-google-plus-1 .option-smart-on {
		background-image: url(images/smart-googleplus1@2x.png);
	}

	.preview-tumblr .option-smart-on {
		background-image: url(images/smart-tumblr@2x.png);
	}

	.preview-pinterest .option-smart-on {
		background-image: url(images/smart-pinterest@2x.png);
	}

	.preview-pocket .option-smart-on {
		background-image: url(images/smart-pocket@2x.png);
	}

	.preview-skype .option-smart-on {
		background-image: url(images/smart-skype@2x.png);
	}
}

/**
 * Overflow sharing dialog
 */

.services .sharing-hidden li {
	background-color: transparent;
}

.sharing-hidden li.share-end {
	clear: both;
	height: 0;
	padding: 0px !important;
	margin: 0px !important;
	width: 0;
	visibility: hidden;
	float: none;
}

.preview .sharing-label {
	font-weight: bold;
	border: 0;
	padding: 4px 0 0 6px;
}

#services-config a.remove {
	background: #ddd;
	color: #fff;
	padding: 0px 4px 2px;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	text-decoration: none;
	font-weight: bold;
	font-size: 10px;
}

#services-config a.remove:hover {
	background: #f00;
}

.sd-social-icon .inner a.sd-button span,
.sd-social-icon .inner a.share-icon span {
	display: inline-block;
	overflow: hidden;
	width: 0;
	text-indent: 100%;
}