diff --git a/less/jasny/bootstrap.less b/less/jasny/bootstrap.less index 444f83c8..7b42d843 100644 --- a/less/jasny/bootstrap.less +++ b/less/jasny/bootstrap.less @@ -18,7 +18,6 @@ // Base CSS @import "forms.less"; @import "forms-uneditable.less"; -@import "forms-editor.less"; @import "actions-areas.less"; @import "rowlink.less"; diff --git a/less/jasny/forms-editor.less b/less/jasny/forms-editor.less deleted file mode 100644 index eaf11c6d..00000000 --- a/less/jasny/forms-editor.less +++ /dev/null @@ -1,17 +0,0 @@ -// Forms-editor.less -// CSS for editor textarea -// ----------------------- - -.editor { - .box-sizing(border-box); - height: 100px; - width: 100%; - padding: 5px; -} -.uneditable-textarea.editor-html { - white-space: normal; - padding: 5px 3px 5px 5px; -} -textarea.editor-html { - visibility: hidden; // Assume it will be replaced -} diff --git a/less/jasny/forms.less b/less/jasny/forms.less index 956f9449..25dbe4d7 100644 --- a/less/jasny/forms.less +++ b/less/jasny/forms.less @@ -76,3 +76,21 @@ label input[type="radio"] { form .well > *:last-child { margin-bottom: 0; } + + +// CSS for editor textarea +// ----------------------- + +.editor { + .box-sizing(border-box); + height: 100px; + width: 100%; + padding: 5px; +} +.uneditable-textarea.editor-html { + white-space: normal; + padding: 5px 3px 5px 5px; +} +textarea.editor-html { + visibility: hidden; // Assume it will be replaced +}