Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
farthinker committed Feb 25, 2015

Verified

This commit was signed with the committer’s verified signature.
mikz Michal Cichra
1 parent 4dedea2 commit 3d6cd1b
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions site/assets/styles/simditor.css
Original file line number Diff line number Diff line change
@@ -112,7 +112,7 @@
border: 1px solid #c9d8db;
}
.simditor textarea {
display: none;
display: none !important;
width: 100%;
box-sizing: border-box;
font-family: monaco;
@@ -126,7 +126,7 @@
resize: none;
}
.simditor.simditor-source-mode textarea {
display: block;
display: block !important;
}
.simditor.simditor-source-mode .simditor-body {
display: none;
4 changes: 2 additions & 2 deletions styles/editor.scss
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ $simditor-button-height: 40px;
border: 1px solid #c9d8db;

textarea {
display: none;
display: none !important;
width: 100%;
box-sizing: border-box;
font-family: monaco;
@@ -23,7 +23,7 @@ $simditor-button-height: 40px;

&.simditor-source-mode {
textarea {
display: block;
display: block !important;
}

.simditor-body {
5 changes: 2 additions & 3 deletions styles/simditor-rails.scss
Original file line number Diff line number Diff line change
@@ -2,13 +2,12 @@

@font-face {
font-family: 'Simditor';
src: url("<%= font_path('simditor.eot') %>");
src: url("<%= font_path('simditor.eot') %>?#iefix") format("embedded-opentype"), url("<%= font_path('simditor.woff') %>") format("woff");
src: font-url('simditor/fonts/simditor.eot');
src: font-url('simditor/fonts/simditor.eot?#iefix') format("embedded-opentype"), font-url('simditor/fonts/simditor.woff') format("woff");
font-weight: normal;
font-style: normal;
}

@import 'fonticon';
@import 'editor';


4 changes: 2 additions & 2 deletions styles/simditor.css
Original file line number Diff line number Diff line change
@@ -112,7 +112,7 @@
border: 1px solid #c9d8db;
}
.simditor textarea {
display: none;
display: none !important;
width: 100%;
box-sizing: border-box;
font-family: monaco;
@@ -126,7 +126,7 @@
resize: none;
}
.simditor.simditor-source-mode textarea {
display: block;
display: block !important;
}
.simditor.simditor-source-mode .simditor-body {
display: none;

0 comments on commit 3d6cd1b

Please sign in to comment.