Tweak styles for Send Message page
This commit is contained in:
parent
b90f5c8a3a
commit
70e5915e51
|
@ -1,10 +1,9 @@
|
||||||
## -*- coding: utf-8 -*-
|
## -*- coding: utf-8 -*-
|
||||||
<%inherit file="/master/create.mako" />
|
<%inherit file="/master/create.mako" />
|
||||||
|
|
||||||
<%def name="head_tags()">
|
<%def name="extra_javascript()">
|
||||||
${parent.head_tags()}
|
${parent.extra_javascript()}
|
||||||
${h.javascript_link(request.static_url('tailbone:static/js/lib/tag-it.min.js'))}
|
${h.javascript_link(request.static_url('tailbone:static/js/lib/tag-it.min.js'))}
|
||||||
${h.stylesheet_link(request.static_url('tailbone:static/css/jquery.tagit.css'))}
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
var recipient_mappings = new Map([
|
var recipient_mappings = new Map([
|
||||||
|
@ -79,11 +78,19 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
</%def>
|
||||||
|
|
||||||
|
<%def name="extra_styles()">
|
||||||
|
${parent.extra_styles()}
|
||||||
|
${h.stylesheet_link(request.static_url('tailbone:static/css/jquery.tagit.css'))}
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
|
|
||||||
.field-wrapper.subject .field input[type="text"],
|
.recipients input {
|
||||||
.field-wrapper.body .field textarea {
|
min-width: 525px;
|
||||||
width: 99%;
|
}
|
||||||
|
|
||||||
|
.subject input {
|
||||||
|
min-width: 540px;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue