inital commit

This commit is contained in:
2026-06-19 20:08:01 +06:00
commit 8a5abeeae4
13128 changed files with 3192007 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
<html>
<head>
<title></title>
</head>
<body>
&nbsp;
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
<html>
<head>
<title></title>
</head>
<body>
&nbsp;
</body>
</html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,3 @@
/* SCEditor v2.1.3 | (C) 2017, Sam Clarke | sceditor.com/license */
!function(i){"use strict";i.plugins.format=function(){var n,a,c={p:"Paragraph",h1:"Heading 1",h2:"Heading 2",h3:"Heading 3",h4:"Heading 4",h5:"Heading 5",h6:"Heading 6",address:"Address",pre:"Preformatted Text"};this.init=function(){var e=this.opts,t=e.paragraphformat;e.format&&"bbcode"===e.format||(t&&(t.tags&&(c=t.tags),t.excludeTags&&t.excludeTags.forEach(function(e){delete c[e]})),this.commands.format||(this.commands.format={exec:a,txtExec:a,tooltip:"Format Paragraph"}),e.toolbar===i.defaultOptions.toolbar&&(e.toolbar=e.toolbar.replace(",color,",",color,format,")))},n=function(e,t){e.sourceMode()?e.insert("<"+t+">","</"+t+">"):e.execCommand("formatblock","<"+t+">")},a=function(e){var o=this,r=document.createElement("div");i.utils.each(c,function(t,a){var e=document.createElement("a");e.className="sceditor-option",e.textContent=a.name||a,e.addEventListener("click",function(e){o.closeDropDown(!0),a.exec?a.exec(o):n(o,t),e.preventDefault()}),r.appendChild(e)}),o.createDropDown(e,"format",r)}}}(sceditor);

View File

@@ -0,0 +1,8 @@
<html>
<head>
<title></title>
</head>
<body>
&nbsp;
</body>
</html>

View File

@@ -0,0 +1,3 @@
/* SCEditor v2.1.3 | (C) 2017, Sam Clarke | sceditor.com/license */
!function(e){"use strict";sceditor.plugins.undo=function(){var r,o,e=this,u=0,a=50,n=[],c=[],s=!1,l=function(e){s=!0,o=e.value,r.sourceMode(e.sourceMode),r.val(e.value,!1),r.focus(),e.sourceMode?r.sourceEditorCaret(e.caret):r.getRangeHelper().restoreRange(),s=!1};e.init=function(){a=(r=this).undoLimit||a,r.addShortcut("ctrl+z",e.undo),r.addShortcut("ctrl+shift+z",e.redo),r.addShortcut("ctrl+y",e.redo)},e.undo=function(){var e=c.pop(),t=r.val(null,!1);return e&&!n.length&&t===e.value&&(e=c.pop()),e&&(n.length||n.push({caret:r.sourceEditorCaret(),sourceMode:r.sourceMode(),value:t}),n.push(e),l(e)),!1},e.redo=function(){var e=n.pop();return c.length||(c.push(e),e=n.pop()),e&&(c.push(e),l(e)),!1},e.signalReady=function(){var e=r.val(null,!1);o=e,c.push({caret:this.sourceEditorCaret(),sourceMode:this.sourceMode(),value:e})},e.signalValuechangedEvent=function(e){var t=e.detail.rawValue;0<a&&c.length>a&&c.shift(),!s&&o&&o!==t&&(n.length=0,(u+=function(e,t){var r,o,u,a,n=e.length,c=t.length,s=Math.max(n,c);for(r=0;r<s&&e.charAt(r)===t.charAt(r);r++);for(u=n<c?c-n:0,a=c<n?n-c:0,o=s-1;0<=o&&e.charAt(o-u)===t.charAt(o-a);o--);return o-r+1}(o,t))<20||u<50&&!/\s$/g.test(e.rawValue)||(c.push({caret:r.sourceEditorCaret(),sourceMode:r.sourceMode(),value:t}),u=0,o=t))}}}();

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
<html>
<head>
<title></title>
</head>
<body>
&nbsp;
</body>
</html>

View File

@@ -0,0 +1,143 @@
/*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */
html, body, p, code:before, table {
margin: 0;
padding: 0;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
font-size: 14px;
color: #111;
}
html {
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
height: 100%;
/* Needed for iOS scrolling bug fix */
overflow: auto;
-webkit-overflow-scrolling: touch;
}
body {
/* Needed for iOS scrolling bug fix */
position: relative;
overflow: auto;
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
min-height: 100%;
word-wrap: break-word;
}
table, td {
border: 1px dotted #000;
/* Show empty cells so they can be edited */
empty-cells: show;
}
code:before {
font-weight: bold;
content: 'Code:';
display: block;
border-bottom: 1px solid #ccc;
padding: 4px 0 3px 0;
margin-bottom: 10px;
}
code.phpcodeblock:before {
content: 'PHP Code:' !important;
}
code {
font-family: Monaco, Consolas, Courier, monospace;
font-size: 13px !important;
padding: 10px;
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
white-space: pre;
display: block;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
.ie6 code, .ie7 code {
margin-top: 0;
}
code:before, code {
display: block;
text-align: left;
}
blockquote {
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
padding: 10px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
blockquote cite {
font-weight: bold;
font-style: normal;
display: block;
font-size: 1em;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding-bottom: 3px;
}
/* prevent divs from being collapsed */
div {
min-height: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0;
}
ul, ol {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
img {
max-width: 100%;
}
font[size="1"] {
font-size: xx-small;
}
font[size="2"] {
font-size: x-small;
}
font[size="3"] {
font-size: small;
}
font[size="4"] {
font-size: medium;
}
font[size="5"] {
font-size: large;
}
font[size="6"] {
font-size: x-large;
}
font[size="7"] {
font-size: xx-large;
}

View File

@@ -0,0 +1,143 @@
/*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */
html, body, p, code:before, table {
margin: 0;
padding: 0;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
font-size: 14px;
color: #111;
}
html {
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
height: 100%;
/* Needed for iOS scrolling bug fix */
overflow: auto;
-webkit-overflow-scrolling: touch;
}
body {
/* Needed for iOS scrolling bug fix */
position: relative;
overflow: auto;
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
min-height: 100%;
word-wrap: break-word;
}
table, td {
border: 1px dotted #000;
/* Show empty cells so they can be edited */
empty-cells: show;
}
code:before {
font-weight: bold;
content: 'Code:';
display: block;
border-bottom: 1px solid #ccc;
padding: 4px 0 3px 0;
margin-bottom: 10px;
}
code.phpcodeblock:before {
content: 'PHP Code:' !important;
}
code {
font-family: Monaco, Consolas, Courier, monospace;
font-size: 13px !important;
padding: 10px;
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
white-space: pre;
display: block;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
.ie6 code, .ie7 code {
margin-top: 0;
}
code:before, code {
display: block;
text-align: left;
}
blockquote {
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
padding: 10px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
blockquote cite {
font-weight: bold;
font-style: normal;
display: block;
font-size: 1em;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding-bottom: 3px;
}
/* prevent divs from being collapsed */
div {
min-height: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0;
}
ul, ol {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
img {
max-width: 100%;
}
font[size="1"] {
font-size: xx-small;
}
font[size="2"] {
font-size: x-small;
}
font[size="3"] {
font-size: small;
}
font[size="4"] {
font-size: medium;
}
font[size="5"] {
font-size: large;
}
font[size="6"] {
font-size: x-large;
}
font[size="7"] {
font-size: xx-large;
}

View File

@@ -0,0 +1,143 @@
/*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */
html, body, p, code:before, table {
margin: 0;
padding: 0;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
font-size: 14px;
color: #333;
}
html {
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
height: 100%;
/* Needed for iOS scrolling bug fix */
overflow: auto;
-webkit-overflow-scrolling: touch;
}
body {
/* Needed for iOS scrolling bug fix */
position: relative;
overflow: auto;
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
min-height: 100%;
word-wrap: break-word;
}
table, td {
border: 1px dotted #000;
/* Show empty cells so they can be edited */
empty-cells: show;
}
code:before {
font-weight: bold;
content: 'Code:';
display: block;
border-bottom: 1px solid #ccc;
padding: 4px 0 3px 0;
margin-bottom: 10px;
}
code.phpcodeblock:before {
content: 'PHP Code:' !important;
}
code {
font-family: Monaco, Consolas, Courier, monospace;
font-size: 13px !important;
padding: 10px;
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
white-space: pre;
display: block;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
.ie6 code, .ie7 code {
margin-top: 0;
}
code:before, code {
display: block;
text-align: left;
}
blockquote {
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
padding: 10px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
blockquote cite {
font-weight: bold;
font-style: normal;
display: block;
font-size: 1em;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding-bottom: 3px;
}
/* prevent divs from being collapsed */
div {
min-height: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0;
}
ul, ol {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
img {
max-width: 100%;
}
font[size="1"] {
font-size: xx-small;
}
font[size="2"] {
font-size: x-small;
}
font[size="3"] {
font-size: small;
}
font[size="4"] {
font-size: medium;
}
font[size="5"] {
font-size: large;
}
font[size="6"] {
font-size: x-large;
}
font[size="7"] {
font-size: xx-large;
}

View File

@@ -0,0 +1,143 @@
/*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */
html, body, p, code:before, table {
margin: 0;
padding: 0;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
font-size: 14px;
color: #111;
}
html {
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
height: 100%;
/* Needed for iOS scrolling bug fix */
overflow: auto;
-webkit-overflow-scrolling: touch;
}
body {
/* Needed for iOS scrolling bug fix */
position: relative;
overflow: auto;
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
min-height: 100%;
word-wrap: break-word;
}
table, td {
border: 1px dotted #000;
/* Show empty cells so they can be edited */
empty-cells: show;
}
code:before {
font-weight: bold;
content: 'Code:';
display: block;
border-bottom: 1px solid #ccc;
padding: 4px 0 3px 0;
margin-bottom: 10px;
}
code.phpcodeblock:before {
content: 'PHP Code:' !important;
}
code {
font-family: Monaco, Consolas, Courier, monospace;
font-size: 13px !important;
padding: 10px;
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
white-space: pre;
display: block;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
.ie6 code, .ie7 code {
margin-top: 0;
}
code:before, code {
display: block;
text-align: left;
}
blockquote {
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
padding: 10px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
blockquote cite {
font-weight: bold;
font-style: normal;
display: block;
font-size: 1em;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding-bottom: 3px;
}
/* prevent divs from being collapsed */
div {
min-height: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0;
}
ul, ol {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
img {
max-width: 100%;
}
font[size="1"] {
font-size: xx-small;
}
font[size="2"] {
font-size: x-small;
}
font[size="3"] {
font-size: small;
}
font[size="4"] {
font-size: medium;
}
font[size="5"] {
font-size: large;
}
font[size="6"] {
font-size: x-large;
}
font[size="7"] {
font-size: xx-large;
}

View File

@@ -0,0 +1,143 @@
/*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */
html, body, p, code:before, table {
margin: 0;
padding: 0;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
font-size: 14px;
color: #111;
}
html {
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
height: 100%;
/* Needed for iOS scrolling bug fix */
overflow: auto;
-webkit-overflow-scrolling: touch;
}
body {
/* Needed for iOS scrolling bug fix */
position: relative;
overflow: auto;
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
min-height: 100%;
word-wrap: break-word;
}
table, td {
border: 1px dotted #000;
/* Show empty cells so they can be edited */
empty-cells: show;
}
code:before {
font-weight: bold;
content: 'Code:';
display: block;
border-bottom: 1px solid #ccc;
padding: 4px 0 3px 0;
margin-bottom: 10px;
}
code.phpcodeblock:before {
content: 'PHP Code:' !important;
}
code {
font-family: Monaco, Consolas, Courier, monospace;
font-size: 13px !important;
padding: 10px;
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
white-space: pre;
display: block;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
.ie6 code, .ie7 code {
margin-top: 0;
}
code:before, code {
display: block;
text-align: left;
}
blockquote {
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
padding: 10px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
blockquote cite {
font-weight: bold;
font-style: normal;
display: block;
font-size: 1em;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding-bottom: 3px;
}
/* prevent divs from being collapsed */
div {
min-height: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0;
}
ul, ol {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
img {
max-width: 100%;
}
font[size="1"] {
font-size: xx-small;
}
font[size="2"] {
font-size: x-small;
}
font[size="3"] {
font-size: small;
}
font[size="4"] {
font-size: medium;
}
font[size="5"] {
font-size: large;
}
font[size="6"] {
font-size: x-large;
}
font[size="7"] {
font-size: xx-large;
}

View File

@@ -0,0 +1,143 @@
/*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */
html, body, p, code:before, table {
margin: 0;
padding: 0;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
font-size: 14px;
color: #111;
}
html {
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
height: 100%;
/* Needed for iOS scrolling bug fix */
overflow: auto;
-webkit-overflow-scrolling: touch;
}
body {
/* Needed for iOS scrolling bug fix */
position: relative;
overflow: auto;
/* Needed so the cursor will be placed at the end of the content
when the there isn't enought content to fill the full viewport */
min-height: 100%;
word-wrap: break-word;
}
table, td {
border: 1px dotted #000;
/* Show empty cells so they can be edited */
empty-cells: show;
}
code:before {
font-weight: bold;
content: 'Code:';
display: block;
border-bottom: 1px solid #ccc;
padding: 4px 0 3px 0;
margin-bottom: 10px;
}
code.phpcodeblock:before {
content: 'PHP Code:' !important;
}
code {
font-family: Monaco, Consolas, Courier, monospace;
font-size: 13px !important;
padding: 10px;
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
white-space: pre;
display: block;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
.ie6 code, .ie7 code {
margin-top: 0;
}
code:before, code {
display: block;
text-align: left;
}
blockquote {
position: relative;
background: white;
margin: .25em .05em 0 0;
border: 1px solid #ccc;
padding: 10px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
blockquote cite {
font-weight: bold;
font-style: normal;
display: block;
font-size: 1em;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding-bottom: 3px;
}
/* prevent divs from being collapsed */
div {
min-height: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0;
}
ul, ol {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
img {
max-width: 100%;
}
font[size="1"] {
font-size: xx-small;
}
font[size="2"] {
font-size: x-small;
}
font[size="3"] {
font-size: small;
}
font[size="4"] {
font-size: medium;
}
font[size="5"] {
font-size: large;
}
font[size="6"] {
font-size: x-large;
}
font[size="7"] {
font-size: xx-large;
}

View File

@@ -0,0 +1 @@
/*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */body,code:before,html,p,table{margin:0;padding:0;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:14px;color:#111;line-height:1.25;overflow:visible}html{height:100%}.ios{overflow:auto;-webkit-overflow-scrolling:touch}.ios body{position:relative;overflow:auto}body{min-height:100%;word-wrap:break-word}body.placeholder::before{content:attr(placeholder);color:#555;font-style:italic}ol,ul{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0}table,td{border:1px dotted #000;empty-cells:show}table td{min-width:5px}code{display:block;background:#f1f1f1;white-space:pre;padding:1em;text-align:left;margin:.25em 0;direction:ltr}blockquote{background:#fff7d9;margin:.25em 0;border-left:.3em solid #f4e59f;padding:.5em .5em .5em .75em}blockquote cite{font-weight:700;display:block;font-size:1em;margin:0 -.5em .25em -.75em;padding:0 .5em .15em .75em;border-bottom:1px solid #f4e59f}h1,h2,h3,h4,h5,h6{padding:0;margin:0}div,p{min-height:1.25em}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,8 @@
<html>
<head>
<title></title>
</head>
<body>
&nbsp;
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,624 @@
/*! SCEditor | (C) 2011-2016, Sam Clarke | sceditor.com/license */
.sceditor-button div,
div.sceditor-grip {
background-image: url(famfamfam.png);
background-repeat: no-repeat;
width: 16px;
height: 16px
}
.sceditor-button-youtube div {
background-position: 0 0
}
.sceditor-button-link div {
background-position: 0 -16px
}
.sceditor-button-unlink div {
background-position: 0 -32px
}
.sceditor-button-underline div {
background-position: 0 -48px
}
.sceditor-button-time div {
background-position: 0 -64px
}
.sceditor-button-table div {
background-position: 0 -80px
}
.sceditor-button-superscript div {
background-position: 0 -96px
}
.sceditor-button-subscript div {
background-position: 0 -112px
}
.sceditor-button-strike div {
background-position: 0 -128px
}
.sceditor-button-source div {
background-position: 0 -144px
}
.sceditor-button-size div {
background-position: 0 -160px
}
.sceditor-button-rtl div {
background-position: 0 -176px
}
.sceditor-button-right div {
background-position: 0 -192px
}
.sceditor-button-removeformat div {
background-position: 0 -208px
}
.sceditor-button-quote div {
background-position: 0 -224px
}
.sceditor-button-print div {
background-position: 0 -240px
}
.sceditor-button-pastetext div {
background-position: 0 -256px
}
.sceditor-button-paste div {
background-position: 0 -272px
}
.sceditor-button-outdent div {
background-position: 0 -288px
}
.sceditor-button-orderedlist div {
background-position: 0 -304px
}
.sceditor-button-maximize div {
background-position: 0 -320px
}
.sceditor-button-ltr div {
background-position: 0 -336px
}
.sceditor-button-left div {
background-position: 0 -352px
}
.sceditor-button-justify div {
background-position: 0 -368px
}
.sceditor-button-italic div {
background-position: 0 -384px
}
.sceditor-button-indent div {
background-position: 0 -400px
}
.sceditor-button-image div {
background-position: 0 -416px
}
.sceditor-button-horizontalrule div {
background-position: 0 -432px
}
.sceditor-button-format div {
background-position: 0 -448px
}
.sceditor-button-font div {
background-position: 0 -464px
}
.sceditor-button-emoticon div {
background-position: 0 -480px
}
.sceditor-button-email div {
background-position: 0 -496px
}
.sceditor-button-date div {
background-position: 0 -512px
}
.sceditor-button-cut div {
background-position: 0 -528px
}
.sceditor-button-copy div {
background-position: 0 -544px
}
.sceditor-button-color div {
background-position: 0 -560px
}
.sceditor-button-code div {
background-position: 0 -576px
}
.sceditor-button-center div {
background-position: 0 -592px
}
.sceditor-button-bulletlist div {
background-position: 0 -608px
}
.sceditor-button-bold div {
background-position: 0 -624px
}
div.sceditor-grip {
background-position: 0 -640px
}
.rtl div.sceditor-grip {
background-position: 0 -650px;
right: auto;
left: 0
}
.sceditor-container {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
position: relative;
background: padding-box #fff;
border: 1px solid #d9d9d9;
font-size: 13px;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
color: #333;
line-height: 1;
font-weight: 700;
height: 250px;
border-radius: 4px
}
.sceditor-container *,
.sceditor-container :after,
.sceditor-container :before {
-webkit-box-sizing: content-box;
box-sizing: content-box
}
.sceditor-container,
.sceditor-container div,
div.sceditor-dropdown,
div.sceditor-dropdown div {
padding: 0;
margin: 0;
z-index: 3
}
.sceditor-container iframe,
.sceditor-container textarea {
display: block;
-ms-flex: 1 1 0%;
-webkit-box-flex: 1;
flex: 1 1 0%;
line-height: 1.25;
border: 0;
outline: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
color: #111;
padding: 0;
margin: 5px;
resize: none;
background: #fff;
height: auto !important;
width: auto !important;
width: calc(100% - 10px) !important;
min-height: 1px
}
.sceditor-container textarea {
margin: 7px 5px
}
div.sceditor-dnd-cover {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(255, 255, 255, .2);
border: 5px dashed #aaa;
z-index: 200;
font-size: 2em;
text-align: center;
color: #aaa
}
div.sceditor-dnd-cover p {
position: relative;
top: 45%;
pointer-events: none
}
div.sceditor-resize-cover {
position: absolute;
top: 0;
left: 0;
background: #000;
width: 100%;
height: 100%;
z-index: 10;
opacity: .3
}
div.sceditor-grip {
overflow: hidden;
width: 10px;
height: 10px;
cursor: pointer;
position: absolute;
bottom: 0;
right: 0;
z-index: 3;
line-height: 0
}
div.sceditor-grip.has-icon {
background-image: none
}
.sceditor-maximize {
position: fixed;
top: 0;
left: 0;
height: 100% !important;
width: 100% !important;
border-radius: 0;
background-clip: padding-box;
z-index: 2000
}
body.sceditor-maximize,
html.sceditor-maximize {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
overflow: hidden
}
.sceditor-maximize div.sceditor-grip {
display: none
}
.sceditor-maximize div.sceditor-toolbar {
border-radius: 0;
background-clip: padding-box
}
div.sceditor-dropdown {
position: absolute;
border: 1px solid #ccc;
background: padding-box #fff;
z-index: 4000;
padding: 10px;
font-weight: 400;
font-size: 15px;
border-radius: 2px;
-webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .2);
box-shadow: 1px 2px 4px rgba(0, 0, 0, .2)
}
div.sceditor-dropdown *,
div.sceditor-dropdown :after,
div.sceditor-dropdown :before {
-webkit-box-sizing: border-box;
box-sizing: border-box
}
div.sceditor-dropdown a,
div.sceditor-dropdown a:link {
color: #333
}
div.sceditor-dropdown form {
margin: 0
}
div.sceditor-dropdown label {
display: block;
font-weight: 700;
color: #3c3c3c;
padding: 4px 0
}
div.sceditor-dropdown input,
div.sceditor-dropdown textarea {
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
outline: 0;
padding: 4px;
border: 1px solid #ccc;
border-top-color: #888;
margin: 0 0 .75em;
border-radius: 1px;
background-clip: padding-box
}
div.sceditor-dropdown textarea {
padding: 6px
}
div.sceditor-dropdown input:focus,
div.sceditor-dropdown textarea:focus {
border-color: #666 #aaa #aaa;
-webkit-box-shadow: inset 0 1px 5px rgba(0, 0, 0, .1);
box-shadow: inset 0 1px 5px rgba(0, 0, 0, .1)
}
div.sceditor-dropdown .button {
font-weight: 700;
color: #444;
padding: 6px 12px;
background: padding-box #ececec;
border: 1px solid #ccc;
border-radius: 2px;
cursor: pointer;
margin: .3em 0 0
}
div.sceditor-dropdown .button:hover {
background: #f3f3f3;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
box-shadow: 0 1px 1px rgba(0, 0, 0, .15)
}
div.sceditor-font-picker,
div.sceditor-fontsize-picker,
div.sceditor-format {
padding: 6px 0
}
div.sceditor-color-picker {
padding: 4px
}
div.sceditor-emoticons,
div.sceditor-more-emoticons {
padding: 0
}
.sceditor-pastetext textarea {
border: 1px solid #bbb;
width: 20em
}
.sceditor-emoticons img,
.sceditor-more-emoticons img {
padding: 0;
cursor: pointer;
margin: 2px
}
.sceditor-more {
border-top: 1px solid #bbb;
display: block;
text-align: center;
cursor: pointer;
font-weight: 700;
padding: 6px 0
}
.sceditor-dropdown a:hover {
background: #eee
}
.sceditor-font-option,
.sceditor-fontsize-option,
.sceditor-format a {
display: block;
padding: 7px 10px;
cursor: pointer;
text-decoration: none;
color: #222
}
.sceditor-fontsize-option {
padding: 7px 13px
}
.sceditor-color-column {
float: left
}
.sceditor-color-option {
display: block;
border: 2px solid #fff;
height: 18px;
width: 18px;
overflow: hidden
}
.sceditor-color-option:hover {
border: 1px solid #aaa
}
div.sceditor-toolbar {
overflow: hidden;
padding: 2px 2px 1px;
background: #f7f7f7;
border-bottom: 1px solid #c0c0c0;
line-height: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
div.sceditor-group {
display: inline-block;
background: #eee;
margin: 1px 5px 1px 0;
padding: 1px;
border-bottom: 1px solid #ccc;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
.sceditor-button {
float: left;
cursor: pointer;
padding: 3px 5px;
width: 16px;
height: 20px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #eee;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
.ie6 .sceditor-button, .ie7 .sceditor-button {
float: none!important;
display: inline;
zoom: 1;
}
.ie6 .sceditor-button {
padding: 0;
}
.ie6 .sceditor-button div {
margin: 5px;
}
.ie7 .sceditor-button div {
margin: 5px 0;
}
.sceditor-button:hover, .sceditor-button:active, .sceditor-button.active {
background: #fff;
/*-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.3), inset -1px 0 rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
-moz-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.3), inset -1px 0 rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.3), inset -1px 0 rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2)*/border: 1px solid #ddd;
}
.sceditor-button:active {
background: #fff;
-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.3), inset -1px 0 rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 0 8px rgba(0, 0, 0, 0.3);
-moz-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.3), inset -1px 0 rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 0 8px rgba(0, 0, 0, 0.3);
box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.3), inset -1px 0 rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 0 8px rgba(0, 0, 0, 0.3);
}
.sceditor-button.disabled:hover {
background: inherit;
cursor: default;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.sceditor-button, .sceditor-button div {
display: block;
}
.sceditor-button div {
display: inline-block;
margin: 2px 0;
padding: 0;
overflow: hidden;
line-height: 0;
font-size: 0;
color: transparent;
}
.sceditor-button.disabled div {
opacity: .3;
}
.sceditor-button svg {
display: inline-block;
height: 16px;
width: 16px;
margin: 2px 0;
fill: #111;
text-decoration: none;
pointer-events: none;
line-height: 1
}
.sceditor-button.disabled svg {
fill: #888
}
.sceditor-button.has-icon div {
display: none
}
.sceditor-button.text,
.sceditor-button.text div,
.sceditor-button.text-icon,
.sceditor-button.text-icon div,
.text .sceditor-button,
.text .sceditor-button div,
.text-icon .sceditor-button,
.text-icon .sceditor-button div {
display: inline-block;
width: auto;
line-height: 16px;
font-size: 1em;
color: inherit;
text-indent: 0
}
.sceditor-button.has-icon div,
.sceditor-button.text div,
.text .sceditor-button div,
.text-icon .sceditor-button.has-icon div {
padding: 0 2px;
background: 0 0
}
.sceditor-button.text svg,
.text .sceditor-button svg {
display: none
}
.sceditor-button.text-icon div,
.text-icon .sceditor-button div {
padding: 0 2px 0 20px
}
.rtl div.sceditor-toolbar {
text-align: right
}
.rtl .sceditor-button {
float: right
}
.sceditor-button-video div {
background-image: url(video.png)
}
.sceditor-button-php div {
background-image: url(php.png)
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 467 B

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B