summaryrefslogtreecommitdiffstats
path: root/askbot/skins
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-09-03 11:43:18 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-09-03 11:43:18 -0600
commit4ef064ab11938f6913d3ebeaab43734f18b30442 (patch)
tree7bd857351e6583cfe21f6748c85ad4922eb51c67 /askbot/skins
parentf983ddea47f2200c2d4f15ec19cfe920932db71d (diff)
downloadaskbot-4ef064ab11938f6913d3ebeaab43734f18b30442.tar.gz
askbot-4ef064ab11938f6913d3ebeaab43734f18b30442.tar.bz2
askbot-4ef064ab11938f6913d3ebeaab43734f18b30442.zip
fixes tinymce upload file/image issue
Diffstat (limited to 'askbot/skins')
-rw-r--r--askbot/skins/default/templates/embed/ask_by_widget.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/askbot/skins/default/templates/embed/ask_by_widget.html b/askbot/skins/default/templates/embed/ask_by_widget.html
index d563fbc6..96be40ac 100644
--- a/askbot/skins/default/templates/embed/ask_by_widget.html
+++ b/askbot/skins/default/templates/embed/ask_by_widget.html
@@ -3,6 +3,8 @@
{% block forestyle %}
{% if editor_type == 'markdown' %}
<link rel="stylesheet" type="text/css" href="{{"/js/wmd/wmd.css"|media}}" />
+ {%else %}
+ <link href="{{'/bootstrap/css/bootstrap.css'|media}}" rel="stylesheet" type="text/css" />
{%endif%}
{% if settings.USE_LOCAL_FONTS %}
{% include "meta/fonts.html" %}
@@ -39,8 +41,10 @@
border: #CCE6EC 3px solid;
max-width: 600px;
}
+
#id_title:focus {
outline: none;
+ box-shadow:none;
}
.title{
@@ -59,7 +63,11 @@
-moz-border-radius: 3px;
border-radius: 3px;
background: #fff;
+ {% if editor_type == 'markdown' %}
width:97.4%;
+ {%else%}
+ width:90.8%;
+ {%endif%}
margin-top: -4.9px;
}
@@ -220,4 +228,4 @@
{% include "meta/tinymce.html" %}
{% endif %}
{% endblock %}
- \ No newline at end of file
+