Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Файл - abuse.js (Старый размер - 8010 | Новый - 0):
- 0. - Abuse = {
- 1. - changeReasonDD: [],
- 2. - switchSection: function (newSection, event) {
- 3. - if (checkEvent(event)) {
- 4. - return false;
- 5. - }
- 6. - hide('ab_pages');
- 7. - show('ab_progress');
- 8. - var params = clone(cur.options.base_params || {0: 'abuse'});
- 9. - if (newSection != 'all') {
- 10. - params = extend(params, {section: newSection});
- 11. - }
- 12. - return nav.go(params);
- 13. - },
- 14. - switchActivitySection: function (oid, reason, solved, section, event) {
- 15. - if (checkEvent(event)) {
- 16. - return true;
- 17. - }
- 18. - ajax.post('abuse.php', {act: 'a_get_activity', reason: reason, solved: solved, oid: oid, section: section}, {
- 19. - showProgress: setStyle.pbind('ab_owner_header_progress' + oid, {display: 'inline'}),
- 20. - hideProgress: hide.pbind('ab_owner_header_progress' + oid),
- 21. - onDone: function (html) {
- 22. - var suffix = '';
- 23. - if (section == 'recent_media' || section == 'recent_photos' || section == 'recent_videos' || section == 'photos' || section == 'videos') {
- 24. - suffix = '_media';
- 25. - }
- 26. - val('ab_abuserow_activity' + suffix + oid, html);
- 27. - }
- 28. - });
- 29. - return false;
- 30. - },
- 31. - checkActivity: function (oid, ev, el, event) {
- 32. - if (Abuse.checkActivityClick(el, event)) {
- 33. - return;
- 34. - }
- 35. - var isOn = false, checked = cur.checkedActivity[oid];
- 36. - if (checked == undefined) {
- 37. - checked = cur.checkedActivity[oid] = {};
- 38. - } else if (checked[ev]) {
- 39. - isOn = true;
- 40. - }
- 41. - toggleClass(ge('ab_abuserow_activity_' + ev), 'ab_abuserow_activity_on');
- 42. - if (isOn) {
- 43. - delete checked[ev];
- 44. - } else {
- 45. - checked[ev] = 1;
- 46. - }
- 47. - },
- 48. - checkActivityClick: function (el, event) {
- 49. - event = event || window.event;
- 50. - if (!el && !event) return false;
- 51. - var target = event.target || event.srcElement,
- 52. - i = 4,
- 53. - foundGood = false,
- 54. - checkeRE = /ab_abuserow_activity_info|ab_userow_activity_photo/;
- 55. - do {
- 56. - if (!target ||
- 57. - target == el ||
- 58. - target.onclick ||
- 59. - target.onmousedown ||
- 60. - target.tagName == 'A' ||
- 61. - target.tagName == 'IMG' ||
- 62. - target.tagName == 'TEXTAREA' ||
- 63. - (foundGood = checkeRE.test(target.className))
- 64. - ) {
- 65. - break;
- 66. - }
- 67. - } while (i-- && (target = target.parentNode));
- 68. - if (!foundGood) {
- 69. - return true;
- 70. - }
- 71. - var sel = trim((
- 72. - window.getSelection && window.getSelection() ||
- 73. - document.getSelection && document.getSelection() ||
- 74. - document.selection && document.selection.createRange().text || ''
- 75. - ).toString());
- 76. - if (sel) {
- 77. - return true;
- 78. - }
- 79. - return false;
- 80. - },
- 81. - checkLogMsg: function (msg_id) {
- 82. - var pos = indexOf(cur.selMsgs, msg_id), row = ge('mess' + msg_id);
- 83. - if (!row || cur.deletedRows[msg_id]) return;
- 84. - if (pos == -1) {
- 85. - if (cur.selMsgs.length >= 100) {
- 86. - return false;
- 87. - }
- 88. - cur.selMsgs.push(msg_id);
- 89. - addClass(row, 'im_sel_row');
- 90. - removeClass(ge('mess_check' + msg_id), 'im_log_check_on');
- 91. - setStyle('ma' + msg_id, {visibility: ''});
- 92. - } else {
- 93. - cur.selMsgs.splice(pos, 1);
- 94. - removeClass(row, 'im_sel_row');
- 95. - }
- 96. - val('im_n_marked', getLang('mail_im_X_sel_msgs', cur.selMsgs.length));
- 97. - toggle('im_tabs', !cur.selMsgs.length);
- 98. - toggle('im_log_controls', cur.selMsgs.length);
- 99. - },
- 100. -
- 101. - solve: function (oid, status, hash) {
- 102. - var evs = [];
- 103. - if (cur.checkedActivity) each(cur.checkedActivity[oid] || {}, function (ev) {evs.push(ev)});
- 104. -
- 105. - ajax.post('abuse.php', {act: 'a_solve', oid: oid, status: status, evs: evs.join(','), hash: hash, reason: ge('top_reason_'+oid).value}, {
- 106. - onDone: function (text) {
- 107. - val('ab_abuserow_solveform' + oid, text);
- 108. - }
- 109. - });
- 110. - val('ab_abuserow_solveform' + oid, '<div class="progress ab_admin_solve_progress"></div>');
- 111. - if (cur.options) {
- 112. - if (!cur.options.section) {
- 113. - cur.pgOffset--;
- 114. - cur.pgCount--;
- 115. - animate('ab_abuserow' + oid, {opacity: 0.5}, 200);
- 116. - } else {
- 117. - cur.pgOffset++;
- 118. - cur.pgCount++;
- 119. - }
- 120. - }
- 121. - return false;
- 122. - },
- 123. - solveCancel: function (oid, solved, hash) {
- 124. - ajax.post('abuse.php', {act: 'a_cancel_solve', oid: oid, solved: solved, hash: hash}, {
- 125. - onDone: function (text) {
- 126. - val('ab_abuserow_solveform' + oid, text);
- 127. - }
- 128. - });
- 129. - val('ab_abuserow_solveform' + oid, '<div class="progress ab_admin_solve_progress"></div>');
- 130. - if (cur.options) {
- 131. - if (!cur.options.section) {
- 132. - cur.pgOffset++;
- 133. - cur.pgCount++;
- 134. - animate('ab_abuserow' + oid, {opacity: 1}, 200);
- 135. - } else {
- 136. - cur.pgOffset--;
- 137. - cur.pgCount--;
- 138. - }
- 139. - }
- 140. - return false;
- 141. - },
- 142. - toKorneev: function (oid, hash) {
- 143. - ajax.post('abuse.php', {act: 'a_to_korneev', oid: oid, hash: hash}, {
- 144. - onDone: function (text) {
- 145. - val('ab_abuserow_solveform' + oid, text);
- 146. - }
- 147. - });
- 148. - val('ab_abuserow_solveform' + oid, '<div class="progress ab_admin_solve_progress"></div>');
- 149. - return false;
- 150. - },
- 151. - reasonsBox: function (oid, type, solved) {
- 152. - return showBox('abuse.php', {act: 'a_reasons_box', oid: oid, type: type || 0, solved: solved || 0}, {
- 153. - params: {bodyStyle: 'height: 300px; padding: 0;'}
- 154. - });
- 155. - },
- 156. - showFullPhoto: function (oid, src, targ) {
- 157. - if (cur.photoSrc != src) {
- 158. - hide(cur.photo);
- 159. - val(cur.photo, '<img class="ab_full_photo" src="' + (cur.photoSrc = src) + '"/>');
- 160. - }
- 161. - show(cur.photo);
- 162. - var pos = getXY(targ);
- 163. - setStyle(cur.photo, {top: pos[1], left: pos[0] - 210});
- 164. - },
- 165. - hideFullPhoto: function () {
- 166. - hide(cur.photo);
- 167. - },
- 168. - initCommon: function () {
- 169. - placeholderSetup('ab_search');
- 170. - addEvent(ge('ab_search'), 'keydown', function (e) {
- 171. - if (e.keyCode != KEY.RETURN) {
- 172. - return;
- 173. - }
- 174. - var v = val(this);
- 175. - if (!v) return;
- 176. - hide('ab_pages');
- 177. - show('ab_progress');
- 178. - nav.go({0: 'abuse', q: v});
- 179. - });
- 180. - bodyNode.insertBefore(cur.photo = ce('div', {id: 'ab_full_photo'}), ge('page_wrap'));
- 181. - cur.destroy.push(re.pbind(cur.photo));
- 182. -
- 183. - cur._back = {
- 184. - text: getLang('global_back'),
- 185. - show: [],
- 186. - hide: [Abuse.hideFullPhoto],
- 187. - loc: false
- 188. - };
- 189. - if (window.Pagination && cur.initScrollFn) {
- 190. - cur._back.show.push(Pagination.reinit.pbind(false));
- 191. - cur._back.hide.push(Pagination.deinit);
- 192. - }
- 193. - },
- 194. - init: function (opts) {
- 195. - extend(cur, {
- 196. - options: opts,
- 197. - checkedActivity: {},
- 198. - module: 'abuse',
- 199. -
- 200. - pgStart: opts.start,
- 201. - pgOffset: opts.offset,
- 202. - pgCount: opts.count,
- 203. - pgPerPage: opts.per_page,
- 204. - pgCont: ge('ab_rows'),
- 205. - pgMore: ge('ab_more_link'),
- 206. - pgPages: ge('ab_pages'),
- 207. - pgMorePrg: ge('ab_more_progress'),
- 208. - pgPreload: opts.preload,
- 209. - pgUrl: opts.url,
- 210. - pgParams: opts.params,
- 211. - pgHref: opts.href
- 212. - });
- 213. - Pagination.init();
- 214. - cur.destroy.push(Pagination.deinit);
- 215. - Abuse.initCommon();
- 216. - },
- 217. - initModerators: function(opts) {
- 218. - var tableOptions = {layout: {topControl: '', bottomControl: ''}, noControls: 1};
- 219. - cur.paginatedTable = new PaginatedTable(ge('paginated_table'), tableOptions, opts.table_content);
- 220. - Abuse.initCommon();
- 221. - },
- 222. - initSingle: function (opts) {
- 223. - extend(cur, {
- 224. - options: opts || {},
- 225. - checkedActivity: {},
- 226. - module: 'abuse'
- 227. - });
- 228. - Abuse.initCommon();
- 229. - },
- 230. - initChangeReasonDD: function (oid) {
- 231. - if (Abuse.changeReasonDD[oid]) {
- 232. - re(Abuse.changeReasonDD[oid].container);
- 233. - }
- 234. - Abuse.changeReasonDD[oid] = new DropdownMenu([[1,'�����������'],[2,'����'],[3,'������']], {
- 235. - target: ge('ab_changetype_' + oid + '_dd'),
- 236. - value: (ge('top_reason_' + oid)) ? ge('top_reason_' + oid).value : 0,
- 237. - fadeSpeed: 0,
- 238. - onSelect: function(event) {
- 239. - ge('top_reason_' + oid).value = event.target.index || 0;
- 240. - }
- 241. - });
- 242. - },
- 243. - changeReason: function(obj, oid, i) {
- 244. - ge('top_reason_' + oid).value = i;
- 245. - addClass(obj, 'on');
- 246. - for (j = 1; j <= 3; j++) {
- 247. - if (j != i) removeClass(ge('ab_reason_' + oid + '_' + j), 'on');
- 248. - }
- 249. - }
- 250. - }
- 251. -
- 253. - try{stManager.done('abuse.js');}catch(e){}
- ------
- Файл - abuse.css (Старый размер - 8181 | Новый - 0):
- 0. - #abuse_css {
- 1. - display: none;
- 2. - }
- 3. -
- 4. - #tab_custom {
- 5. - display: none;
- 6. - }
- 7. - #ab_bar {
- 8. - padding: 10px;
- 9. - background: #F7F7F7;
- 10. - border-bottom: 1px solid #DAE1E8;
- 11. - }
- 12. - #ab_search_wrap {
- 13. - clear: left;
- 14. - padding: 0;
- 15. - position: relative;
- 16. - }
- 17. - #ab_search {
- 18. - margin: 0;
- 19. - padding: 5px 4px 4px 20px;
- 20. - width: 155px;
- 21. - height: 14px;
- 22. - line-height: 1.27em;
- 23. - background: #FFF url(/images/magglass.png) no-repeat 5px 6px;
- 24. - }
- 25. - #ab_summary_wrap {
- 26. - padding-top: 12px;
- 27. - }
- 28. - #ab_summary {
- 29. - padding-top: 4px;
- 30. - }
- 31. - #ab_progress {
- 32. - height: 21px;
- 33. - background-position: 50% 50%;
- 34. - }
- 35. -
- 36. - .ab_tab, .ab_tab_selected, .ab_tab_over {
- 37. - cursor: pointer;
- 38. - padding: 3px 0px 2px 5px;
- 39. - float: right;
- 40. - }
- 41. - .ab_tab2 {
- 42. - padding: 3px 6px 4px;
- 43. - }
- 44. - .ab_tab_over .ab_tab2 {
- 45. - -moz-border-radius: 2px;
- 46. - -webkit-border-radius: 2px;
- 47. - border-radius: 2px;
- 48. - background-color: #E1E7ED;
- 49. - }
- 50. - .ab_tab_selected .ab_tab2 {
- 51. - -moz-border-radius: 2px;
- 52. - -webkit-border-radius: 2px;
- 53. - border-radius: 2px;
- 54. - background-color: #597DA3;
- 55. - }
- 56. - .ab_tab3 {
- 57. - font-weight: bold;
- 58. - color: #45688E;
- 59. - padding-left: 2px;
- 60. - padding-right: 5px;
- 61. - -o-text-overflow: ellipsis;
- 62. - text-overflow: ellipsis;
- 63. - }
- 64. - .ab_tab3_nav {
- 65. - padding-right: 2px;
- 66. - }
- 67. - .ab_tab_selected .ab_tab3 {
- 68. - color: #FFF;
- 69. - }
- 70. -
- 71. - .ab_tabx {
- 72. - margin-top: 2px;
- 73. - width: 11px;
- 74. - height: 11px;
- 75. - }
- 76. - .ab_tab .ab_tabx {
- 77. - background: url(/images/pics/im_tabx.gif?1) 0 0;
- 78. - opacity: 0.12;
- 79. - filter: alpha(opacity=12);
- 80. - }
- 81. -
- 82. - .ab_tab_over .ab_tabx_over {
- 83. - background: url(/images/pics/im_tabx.gif?1) 0 0;
- 84. - opacity: 0.6;
- 85. - filter: alpha(opacity=60);
- 86. - }
- 87. -
- 88. - .ab_tab_selected .ab_tabx {
- 89. - background: url(/images/pics/im_tabx.gif?1) 0 -13px;
- 90. - opacity: 0.2;
- 91. - filter: alpha(opacity=20);
- 92. - }
- 93. - .ab_tab_selected .ab_tabx_over {
- 94. - background: url(/images/pics/im_tabx.gif?1) 0 -13px;
- 95. - opacity: 1;
- 96. - filter: alpha(opacity=100);
- 97. - }
- 98. -
- 99. -
- 100. - #all_shown {
- 101. - margin-top: -1px;
- 102. - border-top: 1px solid #CAD1D9;
- 103. - color: #777;
- 104. - display: block;
- 105. - padding: 10px 0px;
- 106. - text-align: center;
- 107. - }
- 108. -
- 109. - #ab_empty {
- 110. - color: #777;
- 111. - font-size: 1.09em;
- 112. - line-height: 170%;
- 113. - padding: 50px;
- 114. - text-align: center;
- 115. - }
- 116. - #ab_more_link {
- 117. - margin-top: -1px;
- 118. - padding: 10px 0;
- 119. - margin: -1px 0 0;
- 120. - display: block;
- 121. -
- 122. - text-align: center;
- 123. - border-top: 1px solid #DAE1E8;
- 124. - }
- 125. - #ab_more_progress {
- 126. - margin: 0 auto;
- 127. - height: 13px;
- 128. - }
- 129. - #ab_more {
- 130. - height: 13px;
- 131. - }
- 132. - #ab_more_link:hover {
- 133. - text-decoration: none;
- 134. - background: #E9EDF1;
- 135. - }
- 136. -
- 137. -
- 138. - .ab_abuserow {
- 139. - padding: 20px 20px 15px 20px;
- 140. - border-bottom: 1px solid #D9E0E8;
- 141. - }
- 142. - td.ab_abuserow_photo {
- 143. - width: 120px;
- 144. - vertical-align: top;
- 145. - }
- 146. - td.ab_abuserow_info {
- 147. - vertical-align: top;
- 148. - line-height: 160%;
- 149. - }
- 150. - td.ab_abuserow_label {
- 151. - color: #777;
- 152. - width: 95px;
- 153. - }
- 154. - a.ab_abuserow_label_linked {
- 155. - color: #777;
- 156. - }
- 157. -
- 158. - td.ab_abuserow_labeled {
- 159. - vertical-align: top;
- 160. - padding-bottom: 4px;
- 161. - }
- 162. - div.ab_abuserow_labeled_text {
- 163. - width: 370px;
- 164. - }
- 165. - .ab_abuserow_label {
- 166. - vertical-align: top;
- 167. - }
- 168. - tr.ab_abuserow_abusers td.ab_abuserow_labeled,
- 169. - tr.ab_abuserow_blockings td.ab_abuserow_labeled {
- 170. - color: #777;
- 171. - }
- 172. - .ab_abuserow_acitivities .ab_abuserow_label {
- 173. - color: #FFF;
- 174. - }
- 175. - .ab_abuserow_acitivities .ab_abuserow_labeled {
- 176. - padding-top: 15px;
- 177. - }
- 178. - .ab_abuserow_reason {
- 179. - color: #000;
- 180. - margin: 5px 0 2px 0px;
- 181. - border-left: 2px solid #C3D1E0;
- 182. - padding-left: 5px;
- 183. - }
- 184. - .ab_abuserow_activity {
- 185. - cursor: default;
- 186. - position: relative;
- 187. - padding: 0 4px 4px;
- 188. - margin-bottom: 13px;
- 189. - }
- 190. - .ab_abuserow_activity:last-child {
- 191. - margin-bottom: 0;
- 192. - }
- 193. - .ab_abuserow_activity_empty {
- 194. - color: #777;
- 195. - padding: 15px;
- 196. - text-align: center;
- 197. - }
- 198. - .ab_userow_activity_photo {
- 199. - position: absolute;
- 200. - padding-top: 2px;
- 201. - }
- 202. - img.ab_userow_activity_photo {
- 203. - width: 30px;
- 204. - height: 30px;
- 205. - overflow: hidden;
- 206. - }
- 207. - div.ab_abuserow_activity_info {
- 208. - margin-left: 40px;
- 209. - }
- 210. - div.ab_abuserow_activity_label {
- 211. - color: #777;
- 212. - }
- 213. - div.ab_abuserow_activity_label a.mem_link {
- 214. - font-weight: bold;
- 215. - }
- 216. - div.ab_abuserow_activity_text {
- 217. - width: 300px;
- 218. - }
- 219. -
- 220. - /* Porn */
- 221. - .ab_abuserow_cursection {
- 222. - font-weight: bold;
- 223. - }
- 224. - .ab_abuserow_activityheader {
- 225. - padding: 15px 0 10px;
- 226. - }
- 227. - .ab_owner_header_progress {
- 228. - float: right;
- 229. - }
- 230. - .ab_abuserow_acitivity .ab_abuserow_label {
- 231. - color: #FFF;
- 232. - }
- 233. - .ab_abuserow_activity_check {
- 234. - cursor: pointer;
- 235. - width: 21px;
- 236. - height: 21px;
- 237. - background: url(/images/icons/plus_icon1.gif?2) 0 -42px no-repeat;
- 238. - margin-top: 8px;
- 239. - visibility: hidden;
- 240. - }
- 241. - .ab_abuserow_activity_over .ab_abuserow_activity_check {
- 242. - visibility: visible;
- 243. - }
- 244. - .ab_abuserow_activity_on .ab_abuserow_activity_check {
- 245. - background-position: 0 -63px;
- 246. - visibility: visible;
- 247. - }
- 248. - .ab_abuserow_activity_on {
- 249. - background: #EDF1F5;
- 250. - }
- 251. -
- 252. - .ab_video {
- 253. - padding-right: 5px;
- 254. - }
- 255. - .ab_video div.ab_duration {
- 256. - width: 77px;
- 257. - margin-top: 41px;
- 258. - position: absolute;
- 259. - font-size: 0.9em;
- 260. - z-index: 10;
- 261. - }
- 262. - .ab_video div.ab_duration span.bg {
- 263. - background: #000;
- 264. - color: #000;
- 265. - opacity: 0.6;
- 266. - filter: alpha(opacity=60);
- 267. - }
- 268. - .ab_video div.ab_duration span {
- 269. - color: #FFF;
- 270. - padding: 0px 2px 0px;
- 271. - }
- 272. - .ab_video img {
- 273. - width: 77px;
- 274. - }
- 275. - .ab_video:hover {
- 276. - text-decoration: none;
- 277. - }
- 278. - .ab_photo {
- 279. - display: block;
- 280. - width: 77px;
- 281. - padding-right: 5px;
- 282. - }
- 283. - .ab_photo img {
- 284. - width: 77px;
- 285. - }
- 286. -
- 287. - div.ab_private {
- 288. - width: 9px;
- 289. - height: 9px;
- 290. - padding: 3px;
- 291. - /*margin-top: 41px;*/
- 292. - position: absolute;
- 293. - z-index: 10;
- 294. - background: rgba(0, 0, 0, 0.5);
- 295. - }
- 296. - div.ab_private i {
- 297. - display: block;
- 298. - width: 9px;
- 299. - height: 9px;
- 300. - background: url(/images/icons/photo_icons.png?2) -1px -35px no-repeat;
- 301. - }
- 302. - tr.ab_abuserow_solveform .ab_abuserow_labeled {
- 303. - padding-top: 15px;
- 304. - }
- 305. - .ab_abuserow_solveform .ab_abuserow_label {
- 306. - color: #FFF;
- 307. - }
- 308. - .ab_unblock_btn {
- 309. - width: 105px;
- 310. - padding: 6px 4px 6px 4px;
- 311. - margin-left: 10px;
- 312. - text-align: center;
- 313. - display: block;
- 314. - line-height: 1.18em;
- 315. - }
- 316. - a.ab_unblock_btn:hover {
- 317. - text-decoration: none;
- 318. - background: #E1E7ED;
- 319. - }
- 320. - div.ab_admin_solve_progress {
- 321. - background-position: 50% 50%;
- 322. - display: block;
- 323. - width: 310px;
- 324. - height: 25px;
- 325. - }
- 326. - div.ab_abuserow_solveform_text {
- 327. - padding: 6px 4px 6px 4px;
- 328. - line-height: 1.18em;
- 329. - }
- 330. -
- 331. - div#ab_full_photo {
- 332. - position: absolute;
- 333. - z-index: 200;
- 334. - }
- 335. - img.ab_full_photo {
- 336. - width: 200px;
- 337. - }
- 338. - .ab_abuserow_activity_attachments .post_media .audio .title_wrap {
- 339. - width: 240px;
- 340. - }
- 341. - .ab_abuserow_activity_attachments .post_media .audio .title_wrap b {
- 342. - max-width: 170px;
- 343. - }
- 344. - .ab_abuserow_activity_text .ab_abuserow_activity_attachments .post_media {
- 345. - padding: 4px 0 0;
- 346. - }
- 347. -
- 348. - /* Reasons box */
- 349. - div.abuse_reasons_box_wrap {
- 350. - overflow-y: auto;
- 351. - overflow-x: none;
- 352. - height: 280px;
- 353. - padding: 10px 12px;
- 354. - position: relative;
- 355. - }
- 356. - div.ab_reason_row {
- 357. - min-height: 32px;
- 358. - *height: 32px;
- 359. - margin-bottom: 10px;
- 360. - }
- 361. - div.ab_reason_row:last-child {
- 362. - margin-bottom: 0;
- 363. - }
- 364. - div.ab_reason_row_photo {
- 365. - position: absolute;
- 366. - padding-top: 2px;
- 367. - line-height: 0;
- 368. - }
- 369. - img.ab_reason_row_photo {
- 370. - width: 30px;
- 371. - height: 30px;
- 372. - overflow: hidden;
- 373. - }
- 374. - div.ab_reason_row_info {
- 375. - margin-left: 40px;
- 376. - line-height: 160%;
- 377. - }
- 378. - div.ab_reason_row_label {
- 379. - color: #777;
- 380. - }
- 381. - div.ab_reason_row_label a.mem_link {
- 382. - font-weight: bold;
- 383. - }
- 384. -
- 385. - /* Moderators list */
- 386. - #ab_admin_moderators {
- 387. - padding: 20px;
- 388. - width: auto;
- 389. - }
- 390. - .ab_admin_moderators_row {
- 391. - cursor: pointer;
- 392. - }
- 393. - /*.ab_admin_moderators_row:hover {
- 394. - background: #edf1f5;
- 395. - }*/
- 396. - #ab_admin_moderators .ab_admin_moderators_row:hover td {
- 397. - background: #dae1e8;
- 398. - }
- 399. -
- 400. - .ab_stats_wrap {
- 401. - padding: 10px;
- 402. - }
- 403. - .ab_stats_summary {
- 404. - padding: 5px 15px;
- 405. - }
- 406. - .ab_stats_period {
- 407. - padding: 11px;
- 408. - font-weight: bold;
- 409. - }
- 410. - #ab_stats_prev {
- 411. - padding: 11px 0px 10px;
- 412. - cursor: pointer;
- 413. - opacity: 0.5;
- 414. - -webkit-transition: opacity 100ms linear;
- 415. - -moz-transition: opacity 100ms linear;
- 416. - -o-transition: opacity 100ms linear;
- 417. - transition: opacity 100ms linear;
- 418. - }
- 419. - #ab_stats_cal {
- 420. - position: absolute;
- 421. - margin-top: 35px;
- 422. - display: none;
- 423. - z-index: 5;
- 424. - }
- 425. - #ab_stats_cal .day {
- 426. - color: #999;
- 427. - }
- 428. - #ab_stats_cal .past_day,
- 429. - #ab_stats_cal .today,
- 430. - #ab_stats_cal .sel {
- 431. - color: #000;
- 432. - }
- 433. - #ab_stats_prev.over {
- 434. - opacity: 1;
- 435. - }
- 436. - .ab_stats_arrow {
- 437. - background: url(/images/toplink.gif?3) no-repeat 50% -22px;
- 438. - height: 14px;
- 439. - width: 20px;
- 440. - }
- 441. -
- 442. - .abuse_reasons_item {
- 443. - padding: 5px 0px;
- 444. - }
- 445. - .abuse_reasons_result {
- 446. - line-height: 150%;
- 447. - padding: 6px 0px;
- 448. - }
- 449. - .abuse_reasons_list {
- 450. - color: #000000;
- 451. - padding-top: 6px;
- 452. - padding-bottom: 2px;
- 453. - text-align: left;
- 454. - width: 190px;
- 455. - display: inline-block;
- 456. - *display: inline;
- 457. - zoom: 1;
- 458. - }
- 459. -
- 460. -
- ------
Advertisement
Add Comment
Please, Sign In to add comment