暫無描述

admin-sharing-rtl.css 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. /* Do not modify this file directly. It is concatenated from individual module CSS files. */
  2. /**
  3. * Sharedaddy Admin Styles
  4. */
  5. #services-config {
  6. min-width: 700px;
  7. width: 100%;
  8. float: right;
  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. #available-services, #enabled-services, #live-preview {
  20. padding: 0;
  21. width: 100%;
  22. padding-top: 20px;
  23. border-spacing: 0;
  24. }
  25. #enabled-services .ui-sortable {
  26. min-height: 50px;
  27. }
  28. #enabled-services {
  29. padding-bottom: 20px;
  30. }
  31. #available-services, #enabled-services {
  32. border-bottom: 2px solid #cccccc;
  33. }
  34. #live-preview {
  35. border-bottom: 1px solid #dcdcde;
  36. padding-bottom: 60px;
  37. }
  38. #available-services h3, #enabled-services h3, #live-preview h3 {
  39. padding: 0px;
  40. margin-top: 0px;
  41. margin-bottom: 1em;
  42. }
  43. body.settings_page_sharing .description {
  44. width: 180px;
  45. vertical-align: top;
  46. }
  47. body.settings_page_sharing .description p {
  48. font-size: 13px;
  49. font-style: italic;
  50. }
  51. body.settings_page_sharing .services {
  52. padding: 0px 20px;
  53. vertical-align: top;
  54. }
  55. body.settings_page_sharing .services ul li {
  56. float: right;
  57. cursor: move;
  58. }
  59. body.settings_page_sharing .services ul li.divider {
  60. border: none;
  61. padding: 0;
  62. background: none;
  63. cursor: default;
  64. }
  65. body.settings_page_sharing ul.services-hidden {
  66. margin-bottom: 0;
  67. }
  68. /* Generic style */
  69. #available-services .service, #enabled-services .service {
  70. margin-left: 10px;
  71. padding: 5px 5px 5px 10px;
  72. border-radius: 3px;
  73. border: 1px solid #bbb;
  74. background: #f8f8f8;
  75. background-repeat: no-repeat;
  76. background-position: center center;
  77. }
  78. #available-services .service:hover, #enabled-services .service:hover {
  79. background: #fff;
  80. border: 1px solid #bbb;
  81. box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  82. }
  83. #available-services .service.share-deprecated,
  84. #enabled-services .service.share-deprecated {
  85. opacity: 0.5;
  86. padding: 5px;
  87. text-decoration: line-through;
  88. }
  89. #available-services .service.share-deprecated {
  90. display: none;
  91. }
  92. /* Generic style icons */
  93. li.service span:before {
  94. color: #555;
  95. display: inline-block;
  96. -webkit-font-smoothing: antialiased;
  97. font: normal 18px/1 'social-logos';
  98. vertical-align: top;
  99. position: relative;
  100. top: 1px;
  101. margin-left: 3px;
  102. width: 16px;
  103. height: 16px;
  104. text-align: center;
  105. }
  106. li.service.share-print span:before {
  107. content: '\f469';
  108. }
  109. li.service.share-digg span:before {
  110. content: '\f221';
  111. }
  112. li.service.share-email span:before {
  113. content: '\f410';
  114. }
  115. li.service.share-linkedin span:before {
  116. content: '\f207';
  117. }
  118. li.service.share-twitter span:before {
  119. content: '\f202';
  120. }
  121. li.service.share-reddit span:before {
  122. content: '\f222';
  123. }
  124. li.service.share-tumblr span:before {
  125. content: '\f214';
  126. }
  127. li.service.share-pocket span:before {
  128. content: '\f224';
  129. }
  130. li.service.share-pinterest span:before {
  131. content: '\f209';
  132. }
  133. li.service.share-facebook span:before {
  134. content: '\f203';
  135. }
  136. li.service.share-press-this span:before { /* Fixme: remove this button in favor of reblog */
  137. content: '\f205';
  138. }
  139. li.service.share-telegram span:before {
  140. content: '\f606';
  141. }
  142. li.service.share-jetpack-whatsapp span:before {
  143. content: '\f608';
  144. }
  145. li.service.share-skype span:before {
  146. content: '\f220';
  147. }
  148. /**
  149. * Preview section
  150. */
  151. body.settings_page_sharing ul.preview {
  152. float: right;
  153. margin: 0px;
  154. }
  155. body.settings_page_sharing ul.preview li.preview-item, body.settings_page_sharing ul.preview li.preview-item a {
  156. cursor: default;
  157. text-decoration: none;
  158. }
  159. div.sd-social-icon ul.preview li.preview-item a span,
  160. div.sd-social-icon .inner li.preview-item a span {
  161. display: none;
  162. }
  163. div.sd-social-icon ul.preview li.preview-item.preview-custom a span {
  164. display: inline-block;
  165. }
  166. .services .preview li.share-custom a {
  167. text-decoration: none;
  168. }
  169. .services ul li.end-fix {
  170. clear:both;
  171. float:none;
  172. visibility:hidden;
  173. padding:0;
  174. margin:0;
  175. height:20px;
  176. width:0;
  177. }
  178. #enabled-services h2{
  179. font-size:20px;
  180. padding-top:0px;
  181. font-weight: normal !important;
  182. color: #999;
  183. }
  184. body.settings_page_sharing #live-preview h2 {
  185. font-size:20px;
  186. font-weight: normal !important;
  187. color: #e3e3e3;
  188. }
  189. body.settings_page_sharing .clearing {
  190. clear: both;
  191. }
  192. body.settings_page_sharing .options .options-left {
  193. float: right;
  194. }
  195. body.settings_page_sharing .input label {
  196. font-size: 11px;
  197. line-height: 16px;
  198. }
  199. body.settings_page_sharing .advanced-form {
  200. padding: 10px 10px 8px 14px;
  201. margin-right: -24px;
  202. display: none;
  203. border-top: 1px #e3e3e3 solid;
  204. margin-top:4px;
  205. }
  206. body.settings_page_sharing .utility {
  207. float: left;
  208. padding-top:10px;
  209. padding-left: 10px;
  210. font-size: 10px;
  211. }
  212. body.settings_page_sharing .advanced input[type=submit] {
  213. float: right;
  214. margin-top:10px;
  215. margin-left: 10px;
  216. }
  217. .services li.dropzone {
  218. border: 1px dashed #999;
  219. border-radius: 3px;
  220. background: #e3e3e3;
  221. margin-left: 10px;
  222. padding: 5px;
  223. height: 18px;
  224. }
  225. .advanced-form .form-table th {
  226. width: auto !important;
  227. }
  228. .advanced-form .button-secondary {
  229. margin-top: 0 !important;
  230. }
  231. #hidden-drop-target {
  232. background: #e1e1e1;
  233. border: 1px solid #cdcdcd;
  234. width: 29%;
  235. padding: 10px;
  236. vertical-align: top;
  237. }
  238. #hidden-drop-target p {
  239. font-size: 13px;
  240. font-style: italic;
  241. margin: 0 0 10px 0;
  242. }
  243. /* Official button previews */
  244. .preview li.preview-item {
  245. background-position: 0px 5px;
  246. cursor: default;
  247. }
  248. .preview .option-smart-on {
  249. margin: 3px 0 0 5px;
  250. }
  251. .preview-digg .option-smart-on {
  252. background: url(images/smart-digg.png) no-repeat top right;
  253. background-size: 76px 17px;
  254. width:76px;
  255. height:17px;
  256. margin-top: 2px;
  257. }
  258. .preview-reddit .option-smart-on {
  259. background: url(images/smart-reddit.png) no-repeat top right;
  260. background-size: 104px 21px;
  261. width:104px;
  262. height:21px;
  263. }
  264. .preview-facebook .option-smart-on {
  265. background: url(images/smart-like.png) no-repeat top right;
  266. background-size: 85px 20px;
  267. width:85px;
  268. height:20px;
  269. }
  270. .preview-twitter .option-smart-on {
  271. background: url(images/smart-twitter.png?1) no-repeat top right;
  272. background-size: 60px 20px;
  273. width:60px;
  274. height:20px;
  275. }
  276. .preview-linkedin .option-smart-on {
  277. background: url(images/linkedin-smart.png) no-repeat top center;
  278. background-size: 99px 18px;
  279. width:99px;
  280. height:20px;
  281. }
  282. .preview-tumblr .option-smart-on {
  283. background: url(images/smart-tumblr.png) no-repeat top right;
  284. background-size: 62px 20px;
  285. width: 62px;
  286. height: 20px;
  287. }
  288. .preview-pinterest .option-smart-on {
  289. background: url(images/smart-pinterest.png) no-repeat top right;
  290. background-size: 39px 20px;
  291. width: 39px;
  292. height: 20px;
  293. }
  294. .preview-pocket .option-smart-on {
  295. background: url(images/smart-pocket.png) no-repeat top right;
  296. background-size: 60px 20px;
  297. width: 60px;
  298. height: 20px;
  299. }
  300. .preview-skype .option-smart-on {
  301. background: url(images/smart-skype.png) no-repeat top right;
  302. background-size: 60px 20px;
  303. width: 60px;
  304. height: 20px;
  305. }
  306. .preview-item.share-deprecated {
  307. opacity: 0.5;
  308. }
  309. .preview-item.share-deprecated a span {
  310. text-decoration: line-through;
  311. }
  312. @media
  313. (-webkit-min-device-pixel-ratio: 1.25),
  314. (min-resolution: 120dpi) {
  315. .preview-digg .option-smart-on {
  316. background-image: url(images/smart-digg@2x.png);
  317. }
  318. .preview-reddit .option-smart-on {
  319. background-image: url(images/smart-reddit@2x.png);
  320. }
  321. .preview-facebook .option-smart-on {
  322. background-image: url(images/smart-like@2x.png);
  323. }
  324. .preview-twitter .option-smart-on {
  325. background-image: url(images/smart-twitter@2x.png?1);
  326. }
  327. .preview-linkedin .option-smart-on {
  328. background-image: url(images/linkedin-smart@2x.png);
  329. }
  330. .preview-tumblr .option-smart-on {
  331. background-image: url(images/smart-tumblr@2x.png);
  332. }
  333. .preview-pinterest .option-smart-on {
  334. background-image: url(images/smart-pinterest@2x.png);
  335. }
  336. .preview-pocket .option-smart-on {
  337. background-image: url(images/smart-pocket@2x.png);
  338. }
  339. .preview-skype .option-smart-on {
  340. background-image: url(images/smart-skype@2x.png);
  341. }
  342. }
  343. /**
  344. * Overflow sharing dialog
  345. */
  346. .services .sharing-hidden li {
  347. background-color: transparent;
  348. }
  349. .sharing-hidden li.share-end {
  350. clear: both;
  351. height: 0;
  352. padding: 0px !important;
  353. margin: 0px !important;
  354. width: 0;
  355. visibility: hidden;
  356. float: none;
  357. }
  358. .preview .sharing-label {
  359. font-weight: bold;
  360. border: 0;
  361. padding: 4px 0 0 6px;
  362. }
  363. #services-config a.remove {
  364. background: #dcdcde;
  365. color: #fff;
  366. padding: 0px 4px 2px;
  367. border-radius: 15px;
  368. -moz-border-radius: 15px;
  369. -webkit-border-radius: 15px;
  370. text-decoration: none;
  371. font-weight: bold;
  372. font-size: 10px;
  373. }
  374. #services-config a.remove:hover {
  375. background: #f00;
  376. }
  377. .sd-social-icon .inner a.sd-button span,
  378. .sd-social-icon .inner a.share-icon span {
  379. display: inline-block;
  380. overflow: hidden;
  381. width: 0;
  382. text-indent: 100%;
  383. }