added fixed font to blog_edit textaera
This commit is contained in:
BIN
ctp_blogr.sqlite
BIN
ctp_blogr.sqlite
Binary file not shown.
@@ -72,6 +72,9 @@ h5 {
|
|||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
.monospace-font {
|
||||||
|
font-family: Monaco, "Courier New", Courier, monospace;
|
||||||
|
}
|
||||||
.thumbnail p {
|
.thumbnail p {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
color: #555;
|
color: #555;
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="required-field" for="body">{{ form.body.label }}</label>
|
<label class="required-field" for="body">{{ form.body.label }}</label>
|
||||||
{{ form.body(class_='form-control', cols="35", rows="20") }}
|
{{ form.body(class_='form-control monospace-font', cols="35", rows="20") }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|||||||
4
setup.py
4
setup.py
@@ -18,13 +18,15 @@ requires = [
|
|||||||
'pyramid_retry',
|
'pyramid_retry',
|
||||||
'pyramid_layout',
|
'pyramid_layout',
|
||||||
'pyramid_tm',
|
'pyramid_tm',
|
||||||
'SQLAlchemy',
|
'SQLAlchemy==1.4.49',
|
||||||
'transaction',
|
'transaction',
|
||||||
'zope.sqlalchemy',
|
'zope.sqlalchemy',
|
||||||
'wtforms', # form library 2.2.1
|
'wtforms', # form library 2.2.1
|
||||||
'webhelpers2', # various web building related helpers 2.0
|
'webhelpers2', # various web building related helpers 2.0
|
||||||
'passlib',
|
'passlib',
|
||||||
|
'python-magic',
|
||||||
'markdown',
|
'markdown',
|
||||||
|
'urllib3==1.26',
|
||||||
'yfinance',
|
'yfinance',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user