casinad
عدد المساهمات : 311 معدل النشاط : 6516 السُمعة : 0
| موضوع: حلول جميع مشاكل صندوق الكتابة الجديد هنا الثلاثاء 18 يونيو 2013 - 22:04 | |
| السلام عليكماود مساعدة الأعضاء بنشر الحلول لمشاكل صندوق الكتابة الجديد. يمكن للمشرفين تثبيت الموضوع لتعم الفائدة.1- المشكلة الاولى: لا يمكنني اقتباس المشاركات. الرد يظهر بداخل حيز الاقتباس وليس خارجهالحل:قم باضافة هذا الكود javascript مع خيار جميع الصفحات: - الكود:
-
$(function () { if(!$.sceditor) return; $.sceditor.plugins.bbcode.bbcodes.quote.html = function (token, attrs, content) { if (typeof attrs.defaultattr !== "undefined") content = '<cite>' + attrs.defaultattr + '</cite>' + content; return '<br /><blockquote>' + content + '</blockquote><br />'; }; }); 2- المشكلة الثانية: قائمة الألوان الجديدة باهتة وأريد تغييرها بأخرى تحوي الألوان الأساسيةالحل: قم باضافة هذا الكود javascript مع خيار جميع الصفحات + css:javascript - الكود:
-
$(function () { $(function () { $.sceditor.command.get('color')._dropDown = function (editor, caller, callback) { var content = $("<div />"), cmd = $.sceditor.command.get('color'); if (!cmd._htmlCache) { var pre = '<strong style="background-color:#', suf = ';" unselectable="on"><span></span></strong>'; var htmlGen = [pre, 'ffffff,000000,eeece1,1f497d,4f81bd,c0504d,9bbb59,8064a2,4bacc6,f79646'.split(',').join(suf + pre), suf].join(''); var htmlList = [pre, 'f2f2f2,7f7f7f,ddd9c3,c6d9f0,dbe5f1,f2dcdb,ebf1dd,e5e0ec,dbeef3,fdeada,d8d8d8,595959,c4bd97,8db3e2,b8cce4,e5b9b7,d7e3bc,ccc1d9,b7dde8,fbd5b5,bfbfbf,3f3f3f,938953,548dd4,95b3d7,d99694,c3d69b,b2a2c7,92cddc,fac08f,a5a5a5,262626,494429,17365d,366092,953734,76923c,5f497a,31859b,e36c09,7f7f7f,0c0c0c,1d1b10,0f243e,244061,632423,4f6128,3f3151,205867,974806'.split(',').join(suf + pre), suf].join(''); var htmlStandard = [pre, 'c00000,ff0000,ffc000,ffff00,92d050,00b050,00b0f0,0070c0,002060,7030a0'.split(',').join(suf + pre), suf].join(''); var htmlGeneralPanel = ['<div class="editor_color_panel" style="z-index:12;" unselectable="on"><div class="color_general" unselectable="on">', htmlGen, '</div><div class="color_list" unselectable="on">', htmlList, '</div><div class="color_standard" unselectable="on">', htmlStandard, '</div></div>'].join(''); cmd._htmlCache = htmlGeneralPanel; } content.append(cmd._htmlCache) .find('strong') .click(function (e) { callback($(this).attr('style').substr(17, 7)); editor.closeDropDown(true); e.preventDefault(); }); editor.createDropDown(caller, "color-picker", content); }; }) }); css - الكود:
-
.editor_color_panel{ background-color:#fff; width:189px;height:135px; } .editor_color_panel .color_general{ height:16px; margin:11px 7px 9px 11px; } .editor_color_panel .color_list{ height:70px; margin:0 7px 0 11px; } .editor_color_panel .color_standard{ height:16px; margin:13px 7px 8px 11px; } .editor_color_panel strong{ font-size:0; display:block; width:14px; height:14px; margin-right:3px; float:left; cursor:pointer; } 3- المشكلة الثالثة: عند كتابة رد .. الخط يظهر بحجم صغير جداالحل: قم باضافة الكود javascript + css. يمكنكم التعديل على font-size .. font-weight .. font-familyjavascript - الكود:
-
$(function(){$(function() { $("#text_editor_textarea").sceditor('instance').css('body { font-size: 18px; font-weight: bold; font-family:arial }') })}); css - الكود:
-
div.sceditor-container textarea { font-family:arial!important; font-size:18px!important; font-weight: bold; } 4- قائمة الابتسامات الجديدة لا تروق لي لأنها صغيرة والشكل السابق أفضل واريد استعادتهcss - الكود:
-
img.smiley { width: auto !important; height: auto !important; } div.sceditor-emoticons { overflow: auto; max-height: 200px; max-width: 250px; } .sceditor-emoticons > div > img{ width:0px !important; height:0px !important;}
تحياتي | |
|
زائر زائر
| موضوع: رد: حلول جميع مشاكل صندوق الكتابة الجديد هنا الثلاثاء 18 يونيو 2013 - 22:09 | |
| انت متأكد من هذا والا بس محاوله وكثرة الاكواد تثقل المنتدى |
|
قطوه2
عدد المساهمات : 6 معدل النشاط : 4182 السُمعة : 0
| موضوع: رد: حلول جميع مشاكل صندوق الكتابة الجديد هنا الثلاثاء 18 يونيو 2013 - 22:51 | |
| | |
|
قطوه2
عدد المساهمات : 6 معدل النشاط : 4182 السُمعة : 0
| موضوع: رد: حلول جميع مشاكل صندوق الكتابة الجديد هنا الثلاثاء 18 يونيو 2013 - 23:13 | |
| | |
|
Yassine Bablil
عدد المساهمات : 7315 معدل النشاط : 12312 السُمعة : 167
| موضوع: رد: حلول جميع مشاكل صندوق الكتابة الجديد هنا الثلاثاء 18 يونيو 2013 - 23:33 | |
| - قطوه2 كتب:
- تم الحدف
مطرووود يا قليل الأدب | |
|
mohamedhssen
عدد المساهمات : 10 معدل النشاط : 4181 السُمعة : 0
| موضوع: رد: حلول جميع مشاكل صندوق الكتابة الجديد هنا الأربعاء 19 يونيو 2013 - 20:03 | |
| اشكرك اخى العزيز انا جربتهم كلهم وشغلين والله بشكرك ويا ريت لو تلاقى حل للون الصندوق | |
|
زيزو اليكس
عدد المساهمات : 11595 معدل النشاط : 17959 السُمعة : 427
| موضوع: رد: حلول جميع مشاكل صندوق الكتابة الجديد هنا الأربعاء 19 يونيو 2013 - 20:57 | |
| يمنع وضع اى كود اوشرح على العام يجب ان يعرض على اولا على الاداره عن طريق وضعه فى قسم الشكايات العامة وارجو من الاعضاء عدم استخدام هذه الاكواد الا بعد التأكد من صحتها عن طريق الفريق | |
|